Type Alias BuildMultichainInstructionsParameters

BuildMultichainInstructionsParameters: OneOf<
    | { calls: Call[] }
    | {
        parameters: ArgumentTypes<
            typeof GLOBAL_COMPOSABLE_CALLS[SupportedCall],
        >;
        type: SupportedCall;
    },
>