ExecuteMsg: {
    receive: Cw20ReceiveMsg;
} | {
    execute_swap_operations: {
        minimum_receive?: Uint128 | null;
        operations: SwapOperation[];
        to?: Addr | null;
    };
} | {
    execute_swap_operation: {
        operation: SwapOperation;
        to?: Addr | null;
    };
} | {
    assert_minimum_receive: {
        asset_info: AssetInfo;
        minimum_receive: Uint128;
        prev_balance: Uint128;
        receiver: Addr;
    };
}

©2020 - 2023 Oraichain Foundation