Doc autogenerated from onflow/sdk/src/build/build-arguments.ts
args
A utility builder to be used with other builders to pass in arguments with a value and supported type
Import
_10import { args } from "@onflow/sdk"
Parameters
ax
- Type:
CadenceArgument
- Description: An array of arguments
_10type CadenceArgument<T extends TypeDescriptor<any, any>> = {_10 value: TypeDescriptorInput<T>_10 xform: T_10}
Returns
InteractionBuilderFn
_10export type InteractionBuilderFn = (_10 ix: Interaction_10) => Interaction | Promise<Interaction>