Variable TransferInputConst
TransferInput: ZodObject<
{
amount: ZodType<Amount, ZodTypeDef, Amount>;
assetId: ZodString;
destination: ZodString;
gasless: ZodDefault<ZodBoolean>;
},
"strip",
ZodTypeAny,
{ amount: Amount; assetId: string; destination: string; gasless: boolean },
{ amount: Amount; assetId: string; destination: string; gasless?: boolean },
> = ...
Input schema for transfer action.