in src/coreApi/converters/toCoreFunctionMetadata.ts [93:104]
function toCoreRetryStrategy(
data: rpc.RpcRetryOptions.RetryStrategy | null | undefined
): coreTypes.RpcRetryStrategy | null | undefined {
switch (data) {
case rpc.RpcRetryOptions.RetryStrategy.exponential_backoff:
return 'exponentialBackoff';
case rpc.RpcRetryOptions.RetryStrategy.fixed_delay:
return 'fixedDelay';
default:
return handleDefaultEnumCase(data, 'RpcRetryStrategy');
}
}