From cb2a2a484d08cc76d20b1fd3c3768dfa5d362229 Mon Sep 17 00:00:00 2001 From: pr0n00gler Date: Mon, 4 Dec 2023 13:15:09 +0200 Subject: [PATCH 1/2] add v2 to go.mod --- app/app.go | 80 ++--- app/encoding.go | 2 +- app/genesis.go | 2 +- app/proposals_allowlisting.go | 16 +- app/proposals_allowlisting_test.go | 2 +- app/simulation_test.go | 2 +- app/upgrades/types.go | 10 +- app/upgrades/v0.3.0/constants.go | 2 +- app/upgrades/v0.3.0/upgrades.go | 8 +- app/upgrades/v0.4.4/constants.go | 2 +- app/upgrades/v0.4.4/upgrades.go | 6 +- app/upgrades/v2.0.0/constants.go | 4 +- app/upgrades/v2.0.0/upgrades.go | 20 +- app/upgrades/v2.0.0/upgrades_test.go | 18 +- cmd/neutrond/consumer.go | 2 +- cmd/neutrond/main.go | 2 +- cmd/neutrond/root.go | 4 +- go.mod | 2 +- proto/neutron/contractmanager/failure.proto | 2 +- proto/neutron/contractmanager/genesis.proto | 2 +- proto/neutron/contractmanager/params.proto | 2 +- proto/neutron/contractmanager/query.proto | 2 +- proto/neutron/contractmanager/tx.proto | 2 +- .../neutron/contractmanager/v1/failure.proto | 2 +- proto/neutron/cron/genesis.proto | 2 +- proto/neutron/cron/params.proto | 2 +- proto/neutron/cron/query.proto | 2 +- proto/neutron/cron/schedule.proto | 2 +- proto/neutron/cron/tx.proto | 2 +- proto/neutron/dex/deposit_record.proto | 2 +- proto/neutron/dex/genesis.proto | 2 +- .../neutron/dex/limit_order_expiration.proto | 2 +- proto/neutron/dex/limit_order_tranche.proto | 4 +- .../dex/limit_order_tranche_user.proto | 2 +- proto/neutron/dex/pair_id.proto | 2 +- proto/neutron/dex/params.proto | 4 +- proto/neutron/dex/pool.proto | 2 +- proto/neutron/dex/pool_metadata.proto | 2 +- proto/neutron/dex/pool_reserves.proto | 6 +- proto/neutron/dex/query.proto | 4 +- proto/neutron/dex/tick_liquidity.proto | 2 +- proto/neutron/dex/trade_pair_id.proto | 2 +- proto/neutron/dex/tx.proto | 4 +- proto/neutron/feeburner/genesis.proto | 2 +- proto/neutron/feeburner/params.proto | 2 +- proto/neutron/feeburner/query.proto | 2 +- .../total_burned_neutrons_amount.proto | 2 +- proto/neutron/feeburner/tx.proto | 2 +- proto/neutron/feerefunder/fee.proto | 2 +- proto/neutron/feerefunder/genesis.proto | 2 +- proto/neutron/feerefunder/params.proto | 2 +- proto/neutron/feerefunder/query.proto | 2 +- proto/neutron/feerefunder/tx.proto | 2 +- proto/neutron/interchainqueries/genesis.proto | 2 +- proto/neutron/interchainqueries/params.proto | 2 +- proto/neutron/interchainqueries/query.proto | 2 +- proto/neutron/interchainqueries/tx.proto | 2 +- proto/neutron/interchaintxs/v1/genesis.proto | 2 +- proto/neutron/interchaintxs/v1/params.proto | 2 +- proto/neutron/interchaintxs/v1/query.proto | 2 +- proto/neutron/interchaintxs/v1/tx.proto | 2 +- proto/neutron/transfer/v1/query.proto | 2 +- proto/neutron/transfer/v1/tx.proto | 2 +- .../v1beta1/authorityMetadata.proto | 2 +- .../tokenfactory/v1beta1/genesis.proto | 2 +- .../osmosis/tokenfactory/v1beta1/params.proto | 2 +- .../osmosis/tokenfactory/v1beta1/query.proto | 2 +- proto/osmosis/tokenfactory/v1beta1/tx.proto | 2 +- scripts/protocgen.sh | 2 +- tests/e2e/interchain_security_test.go | 4 +- tests/ibc/gmp_swap_forward_test.go | 6 +- tests/ibc/ibc_setup_test.go | 4 +- tests/ibc/swap_forward_test.go | 4 +- tests/ibc/swap_test.go | 4 +- testutil/apptesting/test_suite.go | 6 +- testutil/chain.go | 2 +- testutil/consumer/test_helpers.go | 2 +- .../contractmanager/keeper/contractmanager.go | 4 +- testutil/contractmanager/network/network.go | 6 +- testutil/cron/keeper/cron.go | 4 +- testutil/cron/network/network.go | 6 +- testutil/dex/keeper/dex.go | 4 +- testutil/feeburner/keeper/feeburner.go | 4 +- testutil/feerefunder/keeper/fee.go | 4 +- testutil/integration_test_setup.go | 4 +- .../keeper/interchainqueries.go | 4 +- testutil/interchainqueries/network/network.go | 6 +- .../interchaintxs/keeper/interchaintxs.go | 4 +- .../interchaintxs/keeper/sudo_middleware.go | 4 +- testutil/interchaintxs/network/network.go | 6 +- .../contractmanager/types/expected_keepers.go | 2 +- .../mocks/interchainqueries/keeper/verify.go | 2 +- .../mocks/interchainqueries/types/verify.go | 2 +- .../interchaintxs/types/expected_keepers.go | 2 +- .../mocks/transfer/types/expected_keepers.go | 2 +- testutil/test_helpers.go | 10 +- testutil/transfer/keeper/keeper.go | 4 +- utils/bank.go | 2 +- utils/dcli/parsers.go | 2 +- utils/dcli/parsers_test.go | 2 +- wasmbinding/bindings/msg.go | 8 +- wasmbinding/bindings/query.go | 6 +- wasmbinding/custom_querier.go | 2 +- wasmbinding/message_plugin.go | 24 +- wasmbinding/queries.go | 8 +- wasmbinding/query_plugin.go | 12 +- wasmbinding/stargate_allowlist.go | 10 +- wasmbinding/test/custom_message_test.go | 26 +- wasmbinding/test/custom_query_test.go | 16 +- wasmbinding/wasm.go | 16 +- x/contractmanager/client/cli/query.go | 2 +- x/contractmanager/client/cli/query_failure.go | 2 +- .../client/cli/query_failure_test.go | 10 +- x/contractmanager/client/cli/query_params.go | 2 +- x/contractmanager/genesis.go | 4 +- x/contractmanager/genesis_test.go | 10 +- x/contractmanager/ibc_middleware.go | 4 +- x/contractmanager/ibc_middleware_test.go | 8 +- x/contractmanager/keeper/failure.go | 4 +- x/contractmanager/keeper/failure_test.go | 12 +- x/contractmanager/keeper/grpc_query.go | 2 +- .../keeper/grpc_query_failure.go | 2 +- .../keeper/grpc_query_failure_test.go | 8 +- x/contractmanager/keeper/grpc_query_params.go | 2 +- .../keeper/grpc_query_params_test.go | 4 +- x/contractmanager/keeper/keeper.go | 2 +- x/contractmanager/keeper/migrations.go | 2 +- x/contractmanager/keeper/msg_server.go | 2 +- x/contractmanager/keeper/params.go | 2 +- x/contractmanager/keeper/params_test.go | 4 +- x/contractmanager/keeper/sudo.go | 2 +- x/contractmanager/keeper/sudo_test.go | 10 +- x/contractmanager/migrations/v2/store.go | 2 +- x/contractmanager/migrations/v2/store_test.go | 8 +- x/contractmanager/module.go | 6 +- x/contractmanager/types/failure.pb.go | 12 +- x/contractmanager/types/genesis.pb.go | 12 +- x/contractmanager/types/genesis_test.go | 2 +- x/contractmanager/types/params.pb.go | 12 +- x/contractmanager/types/query.pb.go | 61 ++-- x/contractmanager/types/tx.pb.go | 12 +- x/contractmanager/types/v1/failure.pb.go | 12 +- x/cron/client/cli/query.go | 2 +- x/cron/client/cli/query_params.go | 2 +- x/cron/client/cli/query_schedule.go | 2 +- x/cron/client/cli/query_schedule_test.go | 8 +- x/cron/client/cli/tx.go | 2 +- x/cron/genesis.go | 4 +- x/cron/genesis_test.go | 8 +- x/cron/keeper/grpc_query.go | 2 +- x/cron/keeper/grpc_query_params.go | 2 +- x/cron/keeper/grpc_query_params_test.go | 4 +- x/cron/keeper/grpc_query_schedule.go | 2 +- x/cron/keeper/grpc_query_schedule_test.go | 8 +- x/cron/keeper/keeper.go | 2 +- x/cron/keeper/keeper_test.go | 8 +- x/cron/keeper/msg_server.go | 2 +- x/cron/keeper/params.go | 2 +- x/cron/keeper/params_test.go | 8 +- x/cron/module.go | 6 +- x/cron/module_simulation.go | 4 +- x/cron/types/genesis.pb.go | 12 +- x/cron/types/genesis_test.go | 4 +- x/cron/types/params.pb.go | 12 +- x/cron/types/query.pb.go | 64 ++-- x/cron/types/schedule.pb.go | 42 +-- x/cron/types/tx.pb.go | 12 +- x/dex/client/cli/query.go | 2 +- .../cli/query_inactive_limit_order_tranche.go | 2 +- x/dex/client/cli/query_limit_order_tranche.go | 2 +- .../cli/query_limit_order_tranche_user.go | 2 +- x/dex/client/cli/query_params.go | 2 +- x/dex/client/cli/query_pool.go | 2 +- x/dex/client/cli/query_pool_metadata.go | 2 +- x/dex/client/cli/query_pool_reserves.go | 2 +- x/dex/client/cli/query_test.go | 6 +- x/dex/client/cli/query_tick_liquidity.go | 2 +- x/dex/client/cli/query_user_deposits.go | 2 +- x/dex/client/cli/query_user_limit_orders.go | 2 +- x/dex/client/cli/tx.go | 2 +- x/dex/client/cli/tx_cancel_limit_order.go | 2 +- x/dex/client/cli/tx_deposit.go | 2 +- x/dex/client/cli/tx_multi_hop_swap.go | 4 +- x/dex/client/cli/tx_place_limit_order.go | 2 +- x/dex/client/cli/tx_test.go | 8 +- x/dex/client/cli/tx_withdrawl.go | 2 +- .../cli/tx_withdrawl_filled_limit_order.go | 2 +- x/dex/genesis.go | 4 +- x/dex/genesis_test.go | 8 +- x/dex/keeper/core.go | 8 +- x/dex/keeper/core_helper.go | 4 +- x/dex/keeper/core_helper_test.go | 6 +- x/dex/keeper/deposit_record.go | 4 +- x/dex/keeper/deposit_record_test.go | 2 +- x/dex/keeper/grpc_query.go | 2 +- .../grpc_query_estimate_multi_hop_swap.go | 2 +- ...grpc_query_estimate_multi_hop_swap_test.go | 4 +- .../grpc_query_estimate_place_limit_order.go | 2 +- ...grpc_query_inactive_limit_order_tranche.go | 2 +- ...query_inactive_limit_order_tranche_test.go | 6 +- .../keeper/grpc_query_limit_order_tranche.go | 2 +- .../grpc_query_limit_order_tranche_test.go | 6 +- .../grpc_query_limit_order_tranche_user.go | 2 +- ...rpc_query_limit_order_tranche_user_test.go | 8 +- x/dex/keeper/grpc_query_params.go | 2 +- x/dex/keeper/grpc_query_params_test.go | 4 +- x/dex/keeper/grpc_query_pool.go | 2 +- x/dex/keeper/grpc_query_pool_metadata.go | 2 +- x/dex/keeper/grpc_query_pool_metadata_test.go | 6 +- x/dex/keeper/grpc_query_pool_reserves.go | 2 +- x/dex/keeper/grpc_query_pool_reserves_test.go | 6 +- x/dex/keeper/grpc_query_pool_test.go | 6 +- x/dex/keeper/grpc_query_tick_liquidity.go | 2 +- .../keeper/grpc_query_tick_liquidity_test.go | 4 +- x/dex/keeper/grpc_query_user_deposits.go | 6 +- x/dex/keeper/grpc_query_user_deposits_test.go | 8 +- x/dex/keeper/inactive_limit_order_tranche.go | 2 +- .../inactive_limit_order_tranche_test.go | 8 +- .../integration_cancellimitorder_test.go | 2 +- .../integration_deposit_doublesided_test.go | 2 +- .../keeper/integration_deposit_multi_test.go | 2 +- .../integration_deposit_singlesided_test.go | 2 +- x/dex/keeper/integration_multihopswap_test.go | 4 +- .../integration_placelimitorder_test.go | 2 +- .../keeper/integration_withdraw_multi_test.go | 2 +- x/dex/keeper/integration_withdraw_test.go | 2 +- .../keeper/integration_withdrawfilled_test.go | 2 +- .../keeper/internal/testutils/test_helpers.go | 2 +- x/dex/keeper/keeper.go | 2 +- x/dex/keeper/limit_order_expiration.go | 2 +- x/dex/keeper/limit_order_expiration_test.go | 4 +- x/dex/keeper/limit_order_tranche.go | 4 +- x/dex/keeper/limit_order_tranche_test.go | 8 +- x/dex/keeper/limit_order_tranche_user.go | 2 +- x/dex/keeper/limit_order_tranche_user_test.go | 8 +- x/dex/keeper/liquidity.go | 4 +- x/dex/keeper/liquidity_iterator.go | 2 +- x/dex/keeper/liquidity_test.go | 2 +- x/dex/keeper/msg_server.go | 2 +- x/dex/keeper/msg_server_test.go | 10 +- x/dex/keeper/multihop_swap.go | 4 +- x/dex/keeper/params.go | 2 +- x/dex/keeper/params_test.go | 4 +- x/dex/keeper/pool.go | 4 +- x/dex/keeper/pool_metadata.go | 2 +- x/dex/keeper/pool_metadata_test.go | 8 +- x/dex/keeper/pool_reserves.go | 2 +- x/dex/keeper/pool_reserves_test.go | 8 +- x/dex/keeper/pool_test.go | 6 +- x/dex/keeper/tick_iterator.go | 2 +- x/dex/keeper/tick_liquidity.go | 2 +- x/dex/keeper/tick_liquidity_test.go | 6 +- x/dex/module.go | 6 +- x/dex/module_simulation.go | 6 +- x/dex/simulation/cancel_limit_order.go | 4 +- x/dex/simulation/deposit.go | 4 +- x/dex/simulation/multi_hop_swap.go | 4 +- x/dex/simulation/place_limit_order.go | 4 +- x/dex/simulation/withdrawl.go | 4 +- .../withdrawl_filled_limit_order.go | 4 +- x/dex/types/deposit_record.pb.go | 47 +-- x/dex/types/genesis.pb.go | 54 ++-- x/dex/types/genesis_test.go | 2 +- x/dex/types/keys.go | 2 +- x/dex/types/limit_order_expiration.pb.go | 12 +- x/dex/types/limit_order_tranche.go | 4 +- x/dex/types/limit_order_tranche.pb.go | 80 ++--- x/dex/types/limit_order_tranche_key.go | 2 +- x/dex/types/limit_order_tranche_user.pb.go | 62 ++-- x/dex/types/liquidity.go | 2 +- .../types/message_cancel_limit_order_test.go | 4 +- x/dex/types/message_deposit_test.go | 4 +- x/dex/types/message_multi_hop_swap.go | 2 +- x/dex/types/message_multi_hop_swap_test.go | 6 +- x/dex/types/message_place_limit_order_test.go | 4 +- ...ssage_withdrawl_filled_limit_order_test.go | 4 +- x/dex/types/message_withdrawl_test.go | 4 +- x/dex/types/pair_id.pb.go | 11 +- x/dex/types/params.go | 2 +- x/dex/types/params.pb.go | 33 +- x/dex/types/pool.go | 4 +- x/dex/types/pool.pb.go | 12 +- x/dex/types/pool_denom_test.go | 2 +- x/dex/types/pool_liquidity.go | 2 +- x/dex/types/pool_metadata.pb.go | 12 +- x/dex/types/pool_reserves.pb.go | 69 ++--- x/dex/types/pool_reserves_key.go | 4 +- x/dex/types/pool_test.go | 2 +- x/dex/types/price.go | 4 +- x/dex/types/query.pb.go | 284 +++++++++--------- x/dex/types/tick_liquidity.go | 2 +- x/dex/types/tick_liquidity.pb.go | 12 +- x/dex/types/tick_liquidity_key.go | 2 +- x/dex/types/tick_liquidity_test.go | 2 +- x/dex/types/trade_pair_id.go | 2 +- x/dex/types/trade_pair_id.pb.go | 12 +- x/dex/types/tx.pb.go | 203 ++++++------- x/dex/utils/math.go | 2 +- x/feeburner/client/cli/query.go | 2 +- x/feeburner/client/cli/query_params.go | 2 +- .../cli/query_total_burned_neutrons_amount.go | 2 +- x/feeburner/genesis.go | 4 +- x/feeburner/genesis_test.go | 10 +- x/feeburner/keeper/grpc_query.go | 2 +- x/feeburner/keeper/grpc_query_params.go | 2 +- x/feeburner/keeper/grpc_query_params_test.go | 6 +- x/feeburner/keeper/grpc_query_test.go | 4 +- x/feeburner/keeper/keeper.go | 2 +- x/feeburner/keeper/keeper_test.go | 8 +- x/feeburner/keeper/msg_server.go | 2 +- x/feeburner/keeper/params.go | 2 +- x/feeburner/keeper/params_test.go | 6 +- x/feeburner/module.go | 6 +- x/feeburner/module_simulation.go | 6 +- x/feeburner/types/genesis.pb.go | 10 +- x/feeburner/types/genesis_test.go | 10 +- x/feeburner/types/params.go | 2 +- x/feeburner/types/params.pb.go | 12 +- x/feeburner/types/query.pb.go | 54 ++-- .../types/total_burned_neutrons_amount.pb.go | 12 +- x/feeburner/types/tx.pb.go | 12 +- x/feerefunder/client/cli/query.go | 2 +- x/feerefunder/client/cli/query_params.go | 2 +- x/feerefunder/client/cli/query_test.go | 8 +- x/feerefunder/genesis.go | 4 +- x/feerefunder/genesis_test.go | 10 +- x/feerefunder/keeper/export_test.go | 2 +- x/feerefunder/keeper/grpc_query.go | 2 +- x/feerefunder/keeper/grpc_query_params.go | 2 +- .../keeper/grpc_query_params_test.go | 4 +- x/feerefunder/keeper/keeper.go | 2 +- x/feerefunder/keeper/keeper_test.go | 8 +- x/feerefunder/keeper/msg_server.go | 2 +- x/feerefunder/keeper/params.go | 2 +- x/feerefunder/keeper/params_test.go | 4 +- x/feerefunder/module.go | 6 +- x/feerefunder/types/fee.pb.go | 50 +-- x/feerefunder/types/genesis.pb.go | 42 +-- x/feerefunder/types/genesis_test.go | 6 +- x/feerefunder/types/params.go | 2 +- x/feerefunder/types/params.pb.go | 10 +- x/feerefunder/types/query.pb.go | 58 ++-- x/feerefunder/types/tx.pb.go | 12 +- x/ibc-hooks/client/cli/query.go | 4 +- x/ibc-hooks/ibc_middleware_test.go | 8 +- x/ibc-hooks/ics4_middleware.go | 2 +- x/ibc-hooks/sdkmodule.go | 4 +- x/ibc-hooks/testutils/testing_hooks.go | 2 +- x/ibc-hooks/utils/utils.go | 2 +- x/ibc-hooks/wasm_hook.go | 4 +- x/ibcswap/ibc_middleware.go | 4 +- x/ibcswap/keeper/keeper.go | 4 +- x/ibcswap/module.go | 4 +- x/ibcswap/types/swap.go | 2 +- x/ibcswap/types/swap_test.go | 8 +- x/interchainqueries/client/cli/query.go | 2 +- .../client/cli/query_params.go | 2 +- x/interchainqueries/client/cli/tx.go | 2 +- x/interchainqueries/genesis.go | 4 +- x/interchainqueries/genesis_test.go | 8 +- x/interchainqueries/keeper/grpc_query.go | 2 +- .../keeper/grpc_query_params.go | 2 +- .../keeper/grpc_query_params_test.go | 4 +- x/interchainqueries/keeper/grpc_query_test.go | 4 +- x/interchainqueries/keeper/keeper.go | 2 +- x/interchainqueries/keeper/keeper_test.go | 8 +- x/interchainqueries/keeper/msg_server.go | 2 +- x/interchainqueries/keeper/params.go | 2 +- x/interchainqueries/keeper/params_test.go | 4 +- .../keeper/process_block_results.go | 2 +- .../keeper/process_block_results_test.go | 10 +- x/interchainqueries/module.go | 6 +- x/interchainqueries/module_simulation.go | 6 +- x/interchainqueries/types/genesis.pb.go | 82 ++--- x/interchainqueries/types/genesis_test.go | 2 +- x/interchainqueries/types/params.go | 2 +- x/interchainqueries/types/params.pb.go | 44 +-- x/interchainqueries/types/query.pb.go | 97 +++--- x/interchainqueries/types/tx.pb.go | 147 ++++----- x/interchainqueries/types/tx_test.go | 2 +- x/interchaintxs/client/cli/query.go | 2 +- .../client/cli/query_interchainaccounts.go | 2 +- x/interchaintxs/client/cli/query_params.go | 2 +- x/interchaintxs/client/cli/tx.go | 2 +- x/interchaintxs/genesis.go | 4 +- x/interchaintxs/genesis_test.go | 8 +- x/interchaintxs/ibc_module.go | 2 +- x/interchaintxs/keeper/grpc_query.go | 2 +- .../keeper/grpc_query_interchainaccount.go | 2 +- .../grpc_query_interchainaccount_test.go | 8 +- x/interchaintxs/keeper/grpc_query_params.go | 2 +- .../keeper/grpc_query_params_test.go | 4 +- x/interchaintxs/keeper/ibc_handlers.go | 8 +- x/interchaintxs/keeper/ibc_handlers_test.go | 12 +- x/interchaintxs/keeper/keeper.go | 2 +- x/interchaintxs/keeper/msg_server.go | 4 +- x/interchaintxs/keeper/msg_server_test.go | 14 +- x/interchaintxs/keeper/params.go | 2 +- x/interchaintxs/keeper/params_test.go | 4 +- x/interchaintxs/module.go | 6 +- x/interchaintxs/module_simulation.go | 4 +- x/interchaintxs/types/expected_keepers.go | 2 +- x/interchaintxs/types/genesis.pb.go | 10 +- x/interchaintxs/types/genesis_test.go | 2 +- x/interchaintxs/types/params.go | 2 +- x/interchaintxs/types/params.pb.go | 39 +-- x/interchaintxs/types/query.pb.go | 56 ++-- x/interchaintxs/types/tx.pb.go | 106 +++---- x/interchaintxs/types/tx_test.go | 6 +- x/interchaintxs/types/types_test.go | 4 +- x/tokenfactory/client/cli/query.go | 2 +- x/tokenfactory/client/cli/tx.go | 2 +- x/tokenfactory/keeper/admins.go | 2 +- x/tokenfactory/keeper/admins_test.go | 2 +- x/tokenfactory/keeper/bankactions.go | 2 +- x/tokenfactory/keeper/before_send.go | 2 +- x/tokenfactory/keeper/createdenom.go | 2 +- x/tokenfactory/keeper/createdenom_test.go | 2 +- x/tokenfactory/keeper/genesis.go | 2 +- x/tokenfactory/keeper/genesis_test.go | 2 +- x/tokenfactory/keeper/grpc_query.go | 2 +- x/tokenfactory/keeper/keeper.go | 2 +- x/tokenfactory/keeper/keeper_test.go | 8 +- x/tokenfactory/keeper/msg_server.go | 2 +- x/tokenfactory/keeper/params.go | 2 +- x/tokenfactory/module.go | 6 +- x/tokenfactory/types/authorityMetadata.pb.go | 11 +- x/tokenfactory/types/denoms_test.go | 4 +- x/tokenfactory/types/genesis.pb.go | 10 +- x/tokenfactory/types/genesis_test.go | 4 +- x/tokenfactory/types/params.pb.go | 47 +-- x/tokenfactory/types/query.pb.go | 87 +++--- x/tokenfactory/types/tx.pb.go | 126 ++++---- x/transfer/ibc_handlers.go | 6 +- x/transfer/ibc_handlers_test.go | 14 +- x/transfer/keeper/keeper.go | 4 +- x/transfer/keeper/keeper_test.go | 8 +- x/transfer/module.go | 4 +- x/transfer/types/expected_keepers.go | 2 +- x/transfer/types/query.pb.go | 49 +-- x/transfer/types/tx.go | 2 +- x/transfer/types/tx.pb.go | 74 ++--- x/transfer/types/tx_test.go | 4 +- 443 files changed, 2037 insertions(+), 2024 deletions(-) diff --git a/app/app.go b/app/app.go index 9a890cd0f..738ed3681 100644 --- a/app/app.go +++ b/app/app.go @@ -18,13 +18,13 @@ import ( genutiltypes "github.com/cosmos/cosmos-sdk/x/genutil/types" tendermint "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - "github.com/neutron-org/neutron/docs" + "github.com/neutron-org/neutron/v2/docs" - "github.com/neutron-org/neutron/app/upgrades" - v030 "github.com/neutron-org/neutron/app/upgrades/v0.3.0" - v044 "github.com/neutron-org/neutron/app/upgrades/v0.4.4" - v200 "github.com/neutron-org/neutron/app/upgrades/v2.0.0" - "github.com/neutron-org/neutron/x/cron" + "github.com/neutron-org/neutron/v2/app/upgrades" + v030 "github.com/neutron-org/neutron/v2/app/upgrades/v0.3.0" + v044 "github.com/neutron-org/neutron/v2/app/upgrades/v0.4.4" + v200 "github.com/neutron-org/neutron/v2/app/upgrades/v2.0.0" + "github.com/neutron-org/neutron/v2/x/cron" "github.com/CosmWasm/wasmd/x/wasm" wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" @@ -102,12 +102,12 @@ import ( govv1beta1 "github.com/cosmos/cosmos-sdk/x/gov/types/v1beta1" - cronkeeper "github.com/neutron-org/neutron/x/cron/keeper" - crontypes "github.com/neutron-org/neutron/x/cron/types" + cronkeeper "github.com/neutron-org/neutron/v2/x/cron/keeper" + crontypes "github.com/neutron-org/neutron/v2/x/cron/types" - "github.com/neutron-org/neutron/x/tokenfactory" - tokenfactorykeeper "github.com/neutron-org/neutron/x/tokenfactory/keeper" - tokenfactorytypes "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/x/tokenfactory" + tokenfactorykeeper "github.com/neutron-org/neutron/v2/x/tokenfactory/keeper" + tokenfactorytypes "github.com/neutron-org/neutron/v2/x/tokenfactory/types" "github.com/cosmos/admin-module/x/adminmodule" adminmodulecli "github.com/cosmos/admin-module/x/adminmodule/client/cli" @@ -116,28 +116,28 @@ import ( govclient "github.com/cosmos/cosmos-sdk/x/gov/client" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - appparams "github.com/neutron-org/neutron/app/params" - "github.com/neutron-org/neutron/wasmbinding" - "github.com/neutron-org/neutron/x/contractmanager" - contractmanagermodulekeeper "github.com/neutron-org/neutron/x/contractmanager/keeper" - contractmanagermoduletypes "github.com/neutron-org/neutron/x/contractmanager/types" - "github.com/neutron-org/neutron/x/feeburner" - feeburnerkeeper "github.com/neutron-org/neutron/x/feeburner/keeper" - feeburnertypes "github.com/neutron-org/neutron/x/feeburner/types" - "github.com/neutron-org/neutron/x/feerefunder" - feekeeper "github.com/neutron-org/neutron/x/feerefunder/keeper" - ibchooks "github.com/neutron-org/neutron/x/ibc-hooks" - ibchookstypes "github.com/neutron-org/neutron/x/ibc-hooks/types" - "github.com/neutron-org/neutron/x/interchainqueries" - interchainqueriesmodulekeeper "github.com/neutron-org/neutron/x/interchainqueries/keeper" - interchainqueriesmoduletypes "github.com/neutron-org/neutron/x/interchainqueries/types" - "github.com/neutron-org/neutron/x/interchaintxs" - interchaintxskeeper "github.com/neutron-org/neutron/x/interchaintxs/keeper" - interchaintxstypes "github.com/neutron-org/neutron/x/interchaintxs/types" - transferSudo "github.com/neutron-org/neutron/x/transfer" - wrapkeeper "github.com/neutron-org/neutron/x/transfer/keeper" - - feetypes "github.com/neutron-org/neutron/x/feerefunder/types" + appparams "github.com/neutron-org/neutron/v2/app/params" + "github.com/neutron-org/neutron/v2/wasmbinding" + "github.com/neutron-org/neutron/v2/x/contractmanager" + contractmanagermodulekeeper "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" + contractmanagermoduletypes "github.com/neutron-org/neutron/v2/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/feeburner" + feeburnerkeeper "github.com/neutron-org/neutron/v2/x/feeburner/keeper" + feeburnertypes "github.com/neutron-org/neutron/v2/x/feeburner/types" + "github.com/neutron-org/neutron/v2/x/feerefunder" + feekeeper "github.com/neutron-org/neutron/v2/x/feerefunder/keeper" + ibchooks "github.com/neutron-org/neutron/v2/x/ibc-hooks" + ibchookstypes "github.com/neutron-org/neutron/v2/x/ibc-hooks/types" + "github.com/neutron-org/neutron/v2/x/interchainqueries" + interchainqueriesmodulekeeper "github.com/neutron-org/neutron/v2/x/interchainqueries/keeper" + interchainqueriesmoduletypes "github.com/neutron-org/neutron/v2/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs" + interchaintxskeeper "github.com/neutron-org/neutron/v2/x/interchaintxs/keeper" + interchaintxstypes "github.com/neutron-org/neutron/v2/x/interchaintxs/types" + transferSudo "github.com/neutron-org/neutron/v2/x/transfer" + wrapkeeper "github.com/neutron-org/neutron/v2/x/transfer/keeper" + + feetypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" ccvconsumer "github.com/cosmos/interchain-security/v3/x/ccv/consumer" ccvconsumerkeeper "github.com/cosmos/interchain-security/v3/x/ccv/consumer/keeper" @@ -149,15 +149,15 @@ import ( pfmkeeper "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward/keeper" pfmtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward/types" - "github.com/neutron-org/neutron/x/dex" - dexkeeper "github.com/neutron-org/neutron/x/dex/keeper" - dextypes "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex" + dexkeeper "github.com/neutron-org/neutron/v2/x/dex/keeper" + dextypes "github.com/neutron-org/neutron/v2/x/dex/types" - "github.com/neutron-org/neutron/x/ibcswap" - ibcswapkeeper "github.com/neutron-org/neutron/x/ibcswap/keeper" - ibcswaptypes "github.com/neutron-org/neutron/x/ibcswap/types" + "github.com/neutron-org/neutron/v2/x/ibcswap" + ibcswapkeeper "github.com/neutron-org/neutron/v2/x/ibcswap/keeper" + ibcswaptypes "github.com/neutron-org/neutron/v2/x/ibcswap/types" - gmpmiddleware "github.com/neutron-org/neutron/x/gmp" + gmpmiddleware "github.com/neutron-org/neutron/v2/x/gmp" ) const ( diff --git a/app/encoding.go b/app/encoding.go index 054a532aa..9745127a7 100644 --- a/app/encoding.go +++ b/app/encoding.go @@ -3,7 +3,7 @@ package app import ( "github.com/cosmos/cosmos-sdk/std" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app/params" ) // MakeEncodingConfig creates an EncodingConfig for testing diff --git a/app/genesis.go b/app/genesis.go index 8b25acd7d..0a557ea57 100644 --- a/app/genesis.go +++ b/app/genesis.go @@ -9,7 +9,7 @@ import ( ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" ibcchanneltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app/params" ) // GenesisState is the genesis state of the blockchain represented here as a map of raw json diff --git a/app/proposals_allowlisting.go b/app/proposals_allowlisting.go index 6bc45f305..7f35b0502 100644 --- a/app/proposals_allowlisting.go +++ b/app/proposals_allowlisting.go @@ -17,14 +17,14 @@ import ( ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" ccvconsumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" - contractmanagertypes "github.com/neutron-org/neutron/x/contractmanager/types" - crontypes "github.com/neutron-org/neutron/x/cron/types" - dextypes "github.com/neutron-org/neutron/x/dex/types" - feeburnertypes "github.com/neutron-org/neutron/x/feeburner/types" - feerefundertypes "github.com/neutron-org/neutron/x/feerefunder/types" - interchainqueriestypes "github.com/neutron-org/neutron/x/interchainqueries/types" - interchaintxstypes "github.com/neutron-org/neutron/x/interchaintxs/types" - tokenfactorytypes "github.com/neutron-org/neutron/x/tokenfactory/types" + contractmanagertypes "github.com/neutron-org/neutron/v2/x/contractmanager/types" + crontypes "github.com/neutron-org/neutron/v2/x/cron/types" + dextypes "github.com/neutron-org/neutron/v2/x/dex/types" + feeburnertypes "github.com/neutron-org/neutron/v2/x/feeburner/types" + feerefundertypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" + interchainqueriestypes "github.com/neutron-org/neutron/v2/x/interchainqueries/types" + interchaintxstypes "github.com/neutron-org/neutron/v2/x/interchaintxs/types" + tokenfactorytypes "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) func IsConsumerProposalAllowlisted(content govtypes.Content) bool { diff --git a/app/proposals_allowlisting_test.go b/app/proposals_allowlisting_test.go index 09810f35a..f4e2925dd 100644 --- a/app/proposals_allowlisting_test.go +++ b/app/proposals_allowlisting_test.go @@ -10,7 +10,7 @@ import ( ibctesting "github.com/cosmos/interchain-security/v3/legacy_ibc_testing/testing" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/app" + "github.com/neutron-org/neutron/v2/app" ) func TestConsumerWhitelistingKeys(t *testing.T) { diff --git a/app/simulation_test.go b/app/simulation_test.go index 1645ec375..ce38df05e 100644 --- a/app/simulation_test.go +++ b/app/simulation_test.go @@ -19,7 +19,7 @@ package app_test // "github.com/cosmos/cosmos-sdk/x/simulation" // "github.com/stretchr/testify/require" // -// "github.com/neutron-org/neutron/app" +// "github.com/neutron-org/neutron/v2/app" //) // // func init() { diff --git a/app/upgrades/types.go b/app/upgrades/types.go index c07d1dad1..0c884aaca 100644 --- a/app/upgrades/types.go +++ b/app/upgrades/types.go @@ -12,11 +12,11 @@ import ( slashingkeeper "github.com/cosmos/cosmos-sdk/x/slashing/keeper" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - contractmanagerkeeper "github.com/neutron-org/neutron/x/contractmanager/keeper" - cronkeeper "github.com/neutron-org/neutron/x/cron/keeper" - feeburnerkeeper "github.com/neutron-org/neutron/x/feeburner/keeper" - icqkeeper "github.com/neutron-org/neutron/x/interchainqueries/keeper" - tokenfactorykeeper "github.com/neutron-org/neutron/x/tokenfactory/keeper" + contractmanagerkeeper "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" + cronkeeper "github.com/neutron-org/neutron/v2/x/cron/keeper" + feeburnerkeeper "github.com/neutron-org/neutron/v2/x/feeburner/keeper" + icqkeeper "github.com/neutron-org/neutron/v2/x/interchainqueries/keeper" + tokenfactorykeeper "github.com/neutron-org/neutron/v2/x/tokenfactory/keeper" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" ) diff --git a/app/upgrades/v0.3.0/constants.go b/app/upgrades/v0.3.0/constants.go index 44d7d829e..d8759621f 100644 --- a/app/upgrades/v0.3.0/constants.go +++ b/app/upgrades/v0.3.0/constants.go @@ -4,7 +4,7 @@ import ( store "github.com/cosmos/cosmos-sdk/store/types" ccvprovider "github.com/cosmos/interchain-security/v3/x/ccv/provider/types" - "github.com/neutron-org/neutron/app/upgrades" + "github.com/neutron-org/neutron/v2/app/upgrades" ) const ( diff --git a/app/upgrades/v0.3.0/upgrades.go b/app/upgrades/v0.3.0/upgrades.go index c6d0e12fc..2028b4412 100644 --- a/app/upgrades/v0.3.0/upgrades.go +++ b/app/upgrades/v0.3.0/upgrades.go @@ -6,11 +6,11 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - "github.com/neutron-org/neutron/app/upgrades" + "github.com/neutron-org/neutron/v2/app/upgrades" - crontypes "github.com/neutron-org/neutron/x/cron/types" - icqtypes "github.com/neutron-org/neutron/x/interchainqueries/types" - tokenfactorytypes "github.com/neutron-org/neutron/x/tokenfactory/types" + crontypes "github.com/neutron-org/neutron/v2/x/cron/types" + icqtypes "github.com/neutron-org/neutron/v2/x/interchainqueries/types" + tokenfactorytypes "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) func CreateUpgradeHandler( diff --git a/app/upgrades/v0.4.4/constants.go b/app/upgrades/v0.4.4/constants.go index e7ccfc6fe..b29fb8d03 100644 --- a/app/upgrades/v0.4.4/constants.go +++ b/app/upgrades/v0.4.4/constants.go @@ -1,7 +1,7 @@ package v044 import ( - "github.com/neutron-org/neutron/app/upgrades" + "github.com/neutron-org/neutron/v2/app/upgrades" ) const ( diff --git a/app/upgrades/v0.4.4/upgrades.go b/app/upgrades/v0.4.4/upgrades.go index 57c0f0d86..94b541e63 100644 --- a/app/upgrades/v0.4.4/upgrades.go +++ b/app/upgrades/v0.4.4/upgrades.go @@ -8,10 +8,10 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" upgradetypes "github.com/cosmos/cosmos-sdk/x/upgrade/types" - feeburnertypes "github.com/neutron-org/neutron/x/feeburner/types" - tokenfactorytypes "github.com/neutron-org/neutron/x/tokenfactory/types" + feeburnertypes "github.com/neutron-org/neutron/v2/x/feeburner/types" + tokenfactorytypes "github.com/neutron-org/neutron/v2/x/tokenfactory/types" - "github.com/neutron-org/neutron/app/upgrades" + "github.com/neutron-org/neutron/v2/app/upgrades" ) func CreateUpgradeHandler( diff --git a/app/upgrades/v2.0.0/constants.go b/app/upgrades/v2.0.0/constants.go index 183e9e949..f5cd8822b 100644 --- a/app/upgrades/v2.0.0/constants.go +++ b/app/upgrades/v2.0.0/constants.go @@ -5,8 +5,8 @@ import ( consensusparamtypes "github.com/cosmos/cosmos-sdk/x/consensus/types" crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types" - "github.com/neutron-org/neutron/app/upgrades" - dextypes "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/app/upgrades" + dextypes "github.com/neutron-org/neutron/v2/x/dex/types" ) const ( diff --git a/app/upgrades/v2.0.0/upgrades.go b/app/upgrades/v2.0.0/upgrades.go index 067d97a75..f2358adad 100644 --- a/app/upgrades/v2.0.0/upgrades.go +++ b/app/upgrades/v2.0.0/upgrades.go @@ -8,7 +8,7 @@ import ( consensuskeeper "github.com/cosmos/cosmos-sdk/x/consensus/keeper" paramstypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app/params" "github.com/cosmos/cosmos-sdk/codec" storetypes "github.com/cosmos/cosmos-sdk/store/types" @@ -21,15 +21,15 @@ import ( v6 "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/controller/migrations/v6" ccvconsumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" - "github.com/neutron-org/neutron/app/upgrades" - contractmanagerkeeper "github.com/neutron-org/neutron/x/contractmanager/keeper" - contractmanagertypes "github.com/neutron-org/neutron/x/contractmanager/types" - crontypes "github.com/neutron-org/neutron/x/cron/types" - feeburnertypes "github.com/neutron-org/neutron/x/feeburner/types" - feerefundertypes "github.com/neutron-org/neutron/x/feerefunder/types" - icqtypes "github.com/neutron-org/neutron/x/interchainqueries/types" - interchaintxstypes "github.com/neutron-org/neutron/x/interchaintxs/types" - tokenfactorytypes "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/app/upgrades" + contractmanagerkeeper "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" + contractmanagertypes "github.com/neutron-org/neutron/v2/x/contractmanager/types" + crontypes "github.com/neutron-org/neutron/v2/x/cron/types" + feeburnertypes "github.com/neutron-org/neutron/v2/x/feeburner/types" + feerefundertypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" + icqtypes "github.com/neutron-org/neutron/v2/x/interchainqueries/types" + interchaintxstypes "github.com/neutron-org/neutron/v2/x/interchaintxs/types" + tokenfactorytypes "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) func CreateUpgradeHandler( diff --git a/app/upgrades/v2.0.0/upgrades_test.go b/app/upgrades/v2.0.0/upgrades_test.go index 327a8ee2b..995e8e728 100644 --- a/app/upgrades/v2.0.0/upgrades_test.go +++ b/app/upgrades/v2.0.0/upgrades_test.go @@ -7,14 +7,14 @@ import ( adminmoduletypes "github.com/cosmos/admin-module/x/adminmodule/types" "github.com/cosmos/cosmos-sdk/types/errors" - crontypes "github.com/neutron-org/neutron/x/cron/types" - feeburnertypes "github.com/neutron-org/neutron/x/feeburner/types" - feerefundertypes "github.com/neutron-org/neutron/x/feerefunder/types" - icqtypes "github.com/neutron-org/neutron/x/interchainqueries/types" - interchaintxstypes "github.com/neutron-org/neutron/x/interchaintxs/types" - tokenfactorytypes "github.com/neutron-org/neutron/x/tokenfactory/types" + crontypes "github.com/neutron-org/neutron/v2/x/cron/types" + feeburnertypes "github.com/neutron-org/neutron/v2/x/feeburner/types" + feerefundertypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" + icqtypes "github.com/neutron-org/neutron/v2/x/interchainqueries/types" + interchaintxstypes "github.com/neutron-org/neutron/v2/x/interchaintxs/types" + tokenfactorytypes "github.com/neutron-org/neutron/v2/x/tokenfactory/types" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app/params" ccvconsumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" @@ -24,8 +24,8 @@ import ( globalfeetypes "github.com/cosmos/gaia/v11/x/globalfee/types" "github.com/stretchr/testify/suite" - v110 "github.com/neutron-org/neutron/app/upgrades/v2.0.0" - "github.com/neutron-org/neutron/testutil" + v110 "github.com/neutron-org/neutron/v2/app/upgrades/v2.0.0" + "github.com/neutron-org/neutron/v2/testutil" ) type UpgradeTestSuite struct { diff --git a/cmd/neutrond/consumer.go b/cmd/neutrond/consumer.go index 8f456110c..2caee0032 100644 --- a/cmd/neutrond/consumer.go +++ b/cmd/neutrond/consumer.go @@ -18,7 +18,7 @@ import ( ccvconsumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/testutil/consumer" + "github.com/neutron-org/neutron/v2/testutil/consumer" ) func AddConsumerSectionCmd(defaultNodeHome string) *cobra.Command { diff --git a/cmd/neutrond/main.go b/cmd/neutrond/main.go index 4208d8f5c..7d6c2a7db 100644 --- a/cmd/neutrond/main.go +++ b/cmd/neutrond/main.go @@ -5,7 +5,7 @@ import ( svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - "github.com/neutron-org/neutron/app" + "github.com/neutron-org/neutron/v2/app" ) func main() { diff --git a/cmd/neutrond/root.go b/cmd/neutrond/root.go index 1d78f7a8a..162478eb0 100644 --- a/cmd/neutrond/root.go +++ b/cmd/neutrond/root.go @@ -40,8 +40,8 @@ import ( "github.com/spf13/cast" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/app" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app" + "github.com/neutron-org/neutron/v2/app/params" ) // NewRootCmd creates a new root command for neutrond. It is called once in the diff --git a/go.mod b/go.mod index 87a953dbd..8d838ddc5 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/neutron-org/neutron +module github.com/neutron-org/neutron/v2 go 1.20 diff --git a/proto/neutron/contractmanager/failure.proto b/proto/neutron/contractmanager/failure.proto index d09c7b055..757ae1421 100644 --- a/proto/neutron/contractmanager/failure.proto +++ b/proto/neutron/contractmanager/failure.proto @@ -3,7 +3,7 @@ package neutron.contractmanager; import "ibc/core/channel/v1/channel.proto"; -option go_package = "github.com/neutron-org/neutron/x/contractmanager/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/contractmanager/types"; // Failure message contains information about ACK failures and can be used to // replay ACK in case of requirement. diff --git a/proto/neutron/contractmanager/genesis.proto b/proto/neutron/contractmanager/genesis.proto index d4a0ee3d3..9d41184fb 100644 --- a/proto/neutron/contractmanager/genesis.proto +++ b/proto/neutron/contractmanager/genesis.proto @@ -6,7 +6,7 @@ import "neutron/contractmanager/params.proto"; import "neutron/contractmanager/failure.proto"; // this line is used by starport scaffolding # genesis/proto/import -option go_package = "github.com/neutron-org/neutron/x/contractmanager/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/contractmanager/types"; // GenesisState defines the contractmanager module's genesis state. message GenesisState { diff --git a/proto/neutron/contractmanager/params.proto b/proto/neutron/contractmanager/params.proto index c7f410c0b..4abab5bf0 100644 --- a/proto/neutron/contractmanager/params.proto +++ b/proto/neutron/contractmanager/params.proto @@ -3,7 +3,7 @@ package neutron.contractmanager; import "gogoproto/gogo.proto"; -option go_package = "github.com/neutron-org/neutron/x/contractmanager/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/contractmanager/types"; // Params defines the parameters for the module. message Params { diff --git a/proto/neutron/contractmanager/query.proto b/proto/neutron/contractmanager/query.proto index c2e059243..68095e46b 100644 --- a/proto/neutron/contractmanager/query.proto +++ b/proto/neutron/contractmanager/query.proto @@ -8,7 +8,7 @@ import "neutron/contractmanager/params.proto"; import "neutron/contractmanager/failure.proto"; // this line is used by starport scaffolding # 1 -option go_package = "github.com/neutron-org/neutron/x/contractmanager/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/contractmanager/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/neutron/contractmanager/tx.proto b/proto/neutron/contractmanager/tx.proto index e84aaddf0..07f38b7cc 100644 --- a/proto/neutron/contractmanager/tx.proto +++ b/proto/neutron/contractmanager/tx.proto @@ -9,7 +9,7 @@ import "amino/amino.proto"; // this line is used by starport scaffolding # proto/tx/import -option go_package = "github.com/neutron-org/neutron/x/contractmanager/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/contractmanager/types"; // Msg defines the Msg service. service Msg { diff --git a/proto/neutron/contractmanager/v1/failure.proto b/proto/neutron/contractmanager/v1/failure.proto index a60d8984a..0bea309f0 100644 --- a/proto/neutron/contractmanager/v1/failure.proto +++ b/proto/neutron/contractmanager/v1/failure.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package neutron.contractmanager.v1; -option go_package = "github.com/neutron-org/neutron/x/contractmanager/types/v1"; +option go_package = "github.com/neutron-org/neutron/v2/x/contractmanager/types/v1"; // Deprecated. Used only for migration purposes. message Failure { diff --git a/proto/neutron/cron/genesis.proto b/proto/neutron/cron/genesis.proto index 6cc3aca5a..d9701d54c 100644 --- a/proto/neutron/cron/genesis.proto +++ b/proto/neutron/cron/genesis.proto @@ -6,7 +6,7 @@ import "neutron/cron/params.proto"; import "neutron/cron/schedule.proto"; // this line is used by starport scaffolding # genesis/proto/import -option go_package = "github.com/neutron-org/neutron/x/cron/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/cron/types"; // GenesisState defines the cron module's genesis state. message GenesisState { diff --git a/proto/neutron/cron/params.proto b/proto/neutron/cron/params.proto index c94db26d5..ba9b14ddd 100644 --- a/proto/neutron/cron/params.proto +++ b/proto/neutron/cron/params.proto @@ -3,7 +3,7 @@ package neutron.cron; import "gogoproto/gogo.proto"; -option go_package = "github.com/neutron-org/neutron/x/cron/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/cron/types"; // Params defines the parameters for the module. message Params { diff --git a/proto/neutron/cron/query.proto b/proto/neutron/cron/query.proto index 16205fea8..55db0cfb6 100644 --- a/proto/neutron/cron/query.proto +++ b/proto/neutron/cron/query.proto @@ -8,7 +8,7 @@ import "neutron/cron/params.proto"; import "neutron/cron/schedule.proto"; // this line is used by starport scaffolding # 1 -option go_package = "github.com/neutron-org/neutron/x/cron/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/cron/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/neutron/cron/schedule.proto b/proto/neutron/cron/schedule.proto index 3549a8070..ee505ea34 100644 --- a/proto/neutron/cron/schedule.proto +++ b/proto/neutron/cron/schedule.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package neutron.cron; -option go_package = "github.com/neutron-org/neutron/x/cron/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/cron/types"; import "gogoproto/gogo.proto"; diff --git a/proto/neutron/cron/tx.proto b/proto/neutron/cron/tx.proto index afd014753..510a88178 100644 --- a/proto/neutron/cron/tx.proto +++ b/proto/neutron/cron/tx.proto @@ -9,7 +9,7 @@ import "amino/amino.proto"; // this line is used by starport scaffolding # proto/tx/import -option go_package = "github.com/neutron-org/neutron/x/cron/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/cron/types"; // Msg defines the Msg service. service Msg { diff --git a/proto/neutron/dex/deposit_record.proto b/proto/neutron/dex/deposit_record.proto index f699d554a..804629516 100644 --- a/proto/neutron/dex/deposit_record.proto +++ b/proto/neutron/dex/deposit_record.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package neutron.dex; -option go_package = "github.com/neutron-org/neutron/x/dex/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/dex/types"; import "gogoproto/gogo.proto"; import "neutron/dex/pair_id.proto"; diff --git a/proto/neutron/dex/genesis.proto b/proto/neutron/dex/genesis.proto index ae4e590c2..eb9e22cf5 100644 --- a/proto/neutron/dex/genesis.proto +++ b/proto/neutron/dex/genesis.proto @@ -11,7 +11,7 @@ import "neutron/dex/pool_metadata.proto"; // this line is used by starport scaffolding # genesis/proto/import -option go_package = "github.com/neutron-org/neutron/x/dex/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/dex/types"; // GenesisState defines the dex module's genesis state. message GenesisState { diff --git a/proto/neutron/dex/limit_order_expiration.proto b/proto/neutron/dex/limit_order_expiration.proto index 0057de0d8..e69d3212a 100644 --- a/proto/neutron/dex/limit_order_expiration.proto +++ b/proto/neutron/dex/limit_order_expiration.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package neutron.dex; -option go_package = "github.com/neutron-org/neutron/x/dex/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/dex/types"; import "google/protobuf/timestamp.proto"; import "gogoproto/gogo.proto"; diff --git a/proto/neutron/dex/limit_order_tranche.proto b/proto/neutron/dex/limit_order_tranche.proto index 3bd70b1d8..d18822eed 100644 --- a/proto/neutron/dex/limit_order_tranche.proto +++ b/proto/neutron/dex/limit_order_tranche.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package neutron.dex; -option go_package = "github.com/neutron-org/neutron/x/dex/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/dex/types"; import "google/protobuf/timestamp.proto"; import "neutron/dex/trade_pair_id.proto"; @@ -52,7 +52,7 @@ message LimitOrderTranche { ]; string price_taker_to_maker = 7 [ (gogoproto.moretags) = "yaml:\"price_taker_to_maker\"", - (gogoproto.customtype) = "github.com/neutron-org/neutron/utils/math.PrecDec", + (gogoproto.customtype) = "github.com/neutron-org/neutron/v2/utils/math.PrecDec", (gogoproto.nullable) = false, (gogoproto.jsontag) = "price_taker_to_maker" ]; diff --git a/proto/neutron/dex/limit_order_tranche_user.proto b/proto/neutron/dex/limit_order_tranche_user.proto index c8aade199..0896f753a 100644 --- a/proto/neutron/dex/limit_order_tranche_user.proto +++ b/proto/neutron/dex/limit_order_tranche_user.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package neutron.dex; -option go_package = "github.com/neutron-org/neutron/x/dex/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/dex/types"; import "gogoproto/gogo.proto"; import "neutron/dex/trade_pair_id.proto"; import "neutron/dex/tx.proto"; diff --git a/proto/neutron/dex/pair_id.proto b/proto/neutron/dex/pair_id.proto index e543ba7a1..9eb624a6c 100644 --- a/proto/neutron/dex/pair_id.proto +++ b/proto/neutron/dex/pair_id.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package neutron.dex; -option go_package = "github.com/neutron-org/neutron/x/dex/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/dex/types"; message PairID { string token0 = 1; diff --git a/proto/neutron/dex/params.proto b/proto/neutron/dex/params.proto index 8e7bfe2c6..910919a9e 100644 --- a/proto/neutron/dex/params.proto +++ b/proto/neutron/dex/params.proto @@ -3,7 +3,7 @@ package neutron.dex; import "gogoproto/gogo.proto"; -option go_package = "github.com/neutron-org/neutron/x/dex/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/dex/types"; // Params defines the parameters for the module. message Params { @@ -11,7 +11,7 @@ message Params { repeated uint64 fee_tiers = 1; string max_true_taker_spread = 2 [ (gogoproto.moretags) = "yaml:\"max_true_taker_spread\"", - (gogoproto.customtype) = "github.com/neutron-org/neutron/utils/math.PrecDec", + (gogoproto.customtype) = "github.com/neutron-org/neutron/v2/utils/math.PrecDec", (gogoproto.nullable) = false, (gogoproto.jsontag) = "max_true_taker_spread" ]; diff --git a/proto/neutron/dex/pool.proto b/proto/neutron/dex/pool.proto index 5dd76a801..c2b686ce4 100644 --- a/proto/neutron/dex/pool.proto +++ b/proto/neutron/dex/pool.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package neutron.dex; -option go_package = "github.com/neutron-org/neutron/x/dex/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/dex/types"; import "gogoproto/gogo.proto"; import "neutron/dex/pool_reserves.proto"; diff --git a/proto/neutron/dex/pool_metadata.proto b/proto/neutron/dex/pool_metadata.proto index 3e30323ca..c023935f1 100644 --- a/proto/neutron/dex/pool_metadata.proto +++ b/proto/neutron/dex/pool_metadata.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package neutron.dex; -option go_package = "github.com/neutron-org/neutron/x/dex/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/dex/types"; import "neutron/dex/pair_id.proto"; diff --git a/proto/neutron/dex/pool_reserves.proto b/proto/neutron/dex/pool_reserves.proto index 0d489ea99..8c444481e 100644 --- a/proto/neutron/dex/pool_reserves.proto +++ b/proto/neutron/dex/pool_reserves.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package neutron.dex; -option go_package = "github.com/neutron-org/neutron/x/dex/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/dex/types"; import "gogoproto/gogo.proto"; import "neutron/dex/trade_pair_id.proto"; @@ -21,13 +21,13 @@ message PoolReserves { ]; string price_taker_to_maker = 3 [ (gogoproto.moretags) = "yaml:\"price_taker_to_maker\"", - (gogoproto.customtype) = "github.com/neutron-org/neutron/utils/math.PrecDec", + (gogoproto.customtype) = "github.com/neutron-org/neutron/v2/utils/math.PrecDec", (gogoproto.nullable) = false, (gogoproto.jsontag) = "price_taker_to_maker" ]; string price_opposite_taker_to_maker = 4 [ (gogoproto.moretags) = "yaml:\"price_opposite_taker_to_maker\"", - (gogoproto.customtype) = "github.com/neutron-org/neutron/utils/math.PrecDec", + (gogoproto.customtype) = "github.com/neutron-org/neutron/v2/utils/math.PrecDec", (gogoproto.nullable) = false, (gogoproto.jsontag) = "price_opposite_taker_to_maker" ]; diff --git a/proto/neutron/dex/query.proto b/proto/neutron/dex/query.proto index 6251d0b62..981b24352 100644 --- a/proto/neutron/dex/query.proto +++ b/proto/neutron/dex/query.proto @@ -19,7 +19,7 @@ import "neutron/dex/pool_metadata.proto"; // this line is used by starport scaffolding # 1 -option go_package = "github.com/neutron-org/neutron/x/dex/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/dex/types"; // Query defines the gRPC querier service. service Query { @@ -251,7 +251,7 @@ message QueryEstimateMultiHopSwapRequest { string receiver = 2; repeated MultiHopRoute routes = 3; string amount_in = 4 [(gogoproto.moretags) = "yaml:\"amount_in\"" , (gogoproto.customtype) = "github.com/cosmos/cosmos-sdk/types.Int", (gogoproto.nullable) = false, (gogoproto.jsontag) = "amount_in" ]; - string exit_limit_price = 5 [(gogoproto.moretags) = "yaml:\"exit_limit_price\"", (gogoproto.customtype) = "github.com/neutron-org/neutron/utils/math.PrecDec", (gogoproto.nullable) = false, (gogoproto.jsontag) = "exit_limit_price"]; + string exit_limit_price = 5 [(gogoproto.moretags) = "yaml:\"exit_limit_price\"", (gogoproto.customtype) = "github.com/neutron-org/neutron/v2/utils/math.PrecDec", (gogoproto.nullable) = false, (gogoproto.jsontag) = "exit_limit_price"]; // If pickBestRoute == true then all routes are run and the route with the best price is chosen // otherwise, the first succesful route is used. diff --git a/proto/neutron/dex/tick_liquidity.proto b/proto/neutron/dex/tick_liquidity.proto index 0671e8cfe..0fc588102 100644 --- a/proto/neutron/dex/tick_liquidity.proto +++ b/proto/neutron/dex/tick_liquidity.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package neutron.dex; -option go_package = "github.com/neutron-org/neutron/x/dex/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/dex/types"; import "gogoproto/gogo.proto"; import "neutron/dex/limit_order_tranche.proto"; import "neutron/dex/pool_reserves.proto"; diff --git a/proto/neutron/dex/trade_pair_id.proto b/proto/neutron/dex/trade_pair_id.proto index c2f21e8de..9e839dc2d 100644 --- a/proto/neutron/dex/trade_pair_id.proto +++ b/proto/neutron/dex/trade_pair_id.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package neutron.dex; -option go_package = "github.com/neutron-org/neutron/x/dex/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/dex/types"; message TradePairID { string maker_denom = 2; diff --git a/proto/neutron/dex/tx.proto b/proto/neutron/dex/tx.proto index 41104299a..43ffe14e3 100644 --- a/proto/neutron/dex/tx.proto +++ b/proto/neutron/dex/tx.proto @@ -3,7 +3,7 @@ package neutron.dex; // this line is used by starport scaffolding # proto/tx/import -option go_package = "github.com/neutron-org/neutron/x/dex/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/dex/types"; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; import "google/protobuf/timestamp.proto"; @@ -171,7 +171,7 @@ message MsgMultiHopSwap { ]; string exit_limit_price = 5 [ (gogoproto.moretags) = "yaml:\"exit_limit_price\"", - (gogoproto.customtype) = "github.com/neutron-org/neutron/utils/math.PrecDec", + (gogoproto.customtype) = "github.com/neutron-org/neutron/v2/utils/math.PrecDec", (gogoproto.nullable) = false, (gogoproto.jsontag) = "exit_limit_price" ]; diff --git a/proto/neutron/feeburner/genesis.proto b/proto/neutron/feeburner/genesis.proto index 43175b7c5..3df5b28f1 100644 --- a/proto/neutron/feeburner/genesis.proto +++ b/proto/neutron/feeburner/genesis.proto @@ -6,7 +6,7 @@ import "neutron/feeburner/params.proto"; import "neutron/feeburner/total_burned_neutrons_amount.proto"; // this line is used by starport scaffolding # genesis/proto/import -option go_package = "github.com/neutron-org/neutron/x/feeburner/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/feeburner/types"; // GenesisState defines the feeburner module's genesis state. message GenesisState { diff --git a/proto/neutron/feeburner/params.proto b/proto/neutron/feeburner/params.proto index 309b33524..9b910b9ae 100644 --- a/proto/neutron/feeburner/params.proto +++ b/proto/neutron/feeburner/params.proto @@ -3,7 +3,7 @@ package neutron.feeburner; import "gogoproto/gogo.proto"; -option go_package = "github.com/neutron-org/neutron/x/feeburner/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/feeburner/types"; // Params defines the parameters for the module. message Params { diff --git a/proto/neutron/feeburner/query.proto b/proto/neutron/feeburner/query.proto index e275b26af..2a08c3ea7 100644 --- a/proto/neutron/feeburner/query.proto +++ b/proto/neutron/feeburner/query.proto @@ -8,7 +8,7 @@ import "neutron/feeburner/params.proto"; import "neutron/feeburner/total_burned_neutrons_amount.proto"; // this line is used by starport scaffolding # 1 -option go_package = "github.com/neutron-org/neutron/x/feeburner/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/feeburner/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/neutron/feeburner/total_burned_neutrons_amount.proto b/proto/neutron/feeburner/total_burned_neutrons_amount.proto index 6afca9ac3..77be55c17 100644 --- a/proto/neutron/feeburner/total_burned_neutrons_amount.proto +++ b/proto/neutron/feeburner/total_burned_neutrons_amount.proto @@ -4,7 +4,7 @@ package neutron.feeburner; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/neutron-org/neutron/x/feeburner/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/feeburner/types"; // TotalBurnedNeutronsAmount defines total amount of burned neutron fees message TotalBurnedNeutronsAmount { diff --git a/proto/neutron/feeburner/tx.proto b/proto/neutron/feeburner/tx.proto index 68e804ab1..915caca56 100644 --- a/proto/neutron/feeburner/tx.proto +++ b/proto/neutron/feeburner/tx.proto @@ -10,7 +10,7 @@ import "amino/amino.proto"; // this line is used by starport scaffolding # proto/tx/import -option go_package = "github.com/neutron-org/neutron/x/feeburner/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/feeburner/types"; // Msg defines the Msg service. service Msg { diff --git a/proto/neutron/feerefunder/fee.proto b/proto/neutron/feerefunder/fee.proto index 7aae7ccfa..6dcefe3a9 100644 --- a/proto/neutron/feerefunder/fee.proto +++ b/proto/neutron/feerefunder/fee.proto @@ -4,7 +4,7 @@ package neutron.feerefunder; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/neutron-org/neutron/x/feerefunder/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/feerefunder/types"; // Fee defines the ICS29 receive, acknowledgement and timeout fees message Fee { diff --git a/proto/neutron/feerefunder/genesis.proto b/proto/neutron/feerefunder/genesis.proto index 3a8d3be2d..f4a4e6b44 100644 --- a/proto/neutron/feerefunder/genesis.proto +++ b/proto/neutron/feerefunder/genesis.proto @@ -6,7 +6,7 @@ import "neutron/feerefunder/params.proto"; import "neutron/feerefunder/fee.proto"; // this line is used by starport scaffolding # genesis/proto/import -option go_package = "github.com/neutron-org/neutron/x/feerefunder/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/feerefunder/types"; // GenesisState defines the fee module's genesis state. message GenesisState { diff --git a/proto/neutron/feerefunder/params.proto b/proto/neutron/feerefunder/params.proto index 247fb2c98..5707f9d2c 100644 --- a/proto/neutron/feerefunder/params.proto +++ b/proto/neutron/feerefunder/params.proto @@ -4,7 +4,7 @@ package neutron.feerefunder; import "gogoproto/gogo.proto"; import "neutron/feerefunder/fee.proto"; -option go_package = "github.com/neutron-org/neutron/x/feerefunder/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/feerefunder/types"; // Params defines the parameters for the module. message Params { diff --git a/proto/neutron/feerefunder/query.proto b/proto/neutron/feerefunder/query.proto index 578781990..33d82cf1b 100644 --- a/proto/neutron/feerefunder/query.proto +++ b/proto/neutron/feerefunder/query.proto @@ -8,7 +8,7 @@ import "neutron/feerefunder/params.proto"; import "neutron/feerefunder/genesis.proto"; // this line is used by starport scaffolding # 1 -option go_package = "github.com/neutron-org/neutron/x/feerefunder/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/feerefunder/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/neutron/feerefunder/tx.proto b/proto/neutron/feerefunder/tx.proto index bede834e3..f669ccfd1 100644 --- a/proto/neutron/feerefunder/tx.proto +++ b/proto/neutron/feerefunder/tx.proto @@ -10,7 +10,7 @@ import "amino/amino.proto"; // this line is used by starport scaffolding # proto/tx/import -option go_package = "github.com/neutron-org/neutron/x/feerefunder/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/feerefunder/types"; // Msg defines the Msg service. service Msg { diff --git a/proto/neutron/interchainqueries/genesis.proto b/proto/neutron/interchainqueries/genesis.proto index 134a052be..4957677eb 100644 --- a/proto/neutron/interchainqueries/genesis.proto +++ b/proto/neutron/interchainqueries/genesis.proto @@ -6,7 +6,7 @@ import "neutron/interchainqueries/params.proto"; import "cosmos/base/v1beta1/coin.proto"; import "ibc/core/client/v1/client.proto"; -option go_package = "github.com/neutron-org/neutron/x/interchainqueries/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/interchainqueries/types"; message RegisteredQuery { // The unique id of the registered query. diff --git a/proto/neutron/interchainqueries/params.proto b/proto/neutron/interchainqueries/params.proto index 192c7d4c0..6767bf28b 100644 --- a/proto/neutron/interchainqueries/params.proto +++ b/proto/neutron/interchainqueries/params.proto @@ -4,7 +4,7 @@ package neutron.interchainqueries; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/neutron-org/neutron/x/interchainqueries/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/interchainqueries/types"; // Params defines the parameters for the module. message Params { diff --git a/proto/neutron/interchainqueries/query.proto b/proto/neutron/interchainqueries/query.proto index 21247a41a..10459c23e 100644 --- a/proto/neutron/interchainqueries/query.proto +++ b/proto/neutron/interchainqueries/query.proto @@ -8,7 +8,7 @@ import "neutron/interchainqueries/params.proto"; import "neutron/interchainqueries/genesis.proto"; import "neutron/interchainqueries/tx.proto"; -option go_package = "github.com/neutron-org/neutron/x/interchainqueries/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/interchainqueries/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/neutron/interchainqueries/tx.proto b/proto/neutron/interchainqueries/tx.proto index f4b5e7172..45d57fb65 100644 --- a/proto/neutron/interchainqueries/tx.proto +++ b/proto/neutron/interchainqueries/tx.proto @@ -11,7 +11,7 @@ import "cosmos/msg/v1/msg.proto"; import "cosmos_proto/cosmos.proto"; import "amino/amino.proto"; -option go_package = "github.com/neutron-org/neutron/x/interchainqueries/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/interchainqueries/types"; // Msg defines the Msg service. service Msg { diff --git a/proto/neutron/interchaintxs/v1/genesis.proto b/proto/neutron/interchaintxs/v1/genesis.proto index bff673af1..9c0ff4b58 100644 --- a/proto/neutron/interchaintxs/v1/genesis.proto +++ b/proto/neutron/interchaintxs/v1/genesis.proto @@ -4,7 +4,7 @@ package neutron.interchaintxs.v1; import "gogoproto/gogo.proto"; import "neutron/interchaintxs/v1/params.proto"; -option go_package = "github.com/neutron-org/neutron/x/interchaintxs/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/interchaintxs/types"; // GenesisState defines the interchaintxs module's genesis state. message GenesisState { Params params = 1 [ (gogoproto.nullable) = false ]; } diff --git a/proto/neutron/interchaintxs/v1/params.proto b/proto/neutron/interchaintxs/v1/params.proto index 1a720e961..5d9bc909e 100644 --- a/proto/neutron/interchaintxs/v1/params.proto +++ b/proto/neutron/interchaintxs/v1/params.proto @@ -4,7 +4,7 @@ package neutron.interchaintxs.v1; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/neutron-org/neutron/x/interchaintxs/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/interchaintxs/types"; // Params defines the parameters for the module. message Params { diff --git a/proto/neutron/interchaintxs/v1/query.proto b/proto/neutron/interchaintxs/v1/query.proto index 285aacdf7..c402218d4 100644 --- a/proto/neutron/interchaintxs/v1/query.proto +++ b/proto/neutron/interchaintxs/v1/query.proto @@ -6,7 +6,7 @@ import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; import "neutron/interchaintxs/v1/params.proto"; -option go_package = "github.com/neutron-org/neutron/x/interchaintxs/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/interchaintxs/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/neutron/interchaintxs/v1/tx.proto b/proto/neutron/interchaintxs/v1/tx.proto index 5ce7899c8..e1abcb898 100644 --- a/proto/neutron/interchaintxs/v1/tx.proto +++ b/proto/neutron/interchaintxs/v1/tx.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package neutron.interchaintxs.v1; -option go_package = "github.com/neutron-org/neutron/x/interchaintxs/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/interchaintxs/types"; import "cosmos_proto/cosmos.proto"; import "cosmos/base/v1beta1/coin.proto"; diff --git a/proto/neutron/transfer/v1/query.proto b/proto/neutron/transfer/v1/query.proto index 5219c7497..8ab9fbe4f 100644 --- a/proto/neutron/transfer/v1/query.proto +++ b/proto/neutron/transfer/v1/query.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package neutron.transfer; -option go_package = "github.com/neutron-org/neutron/x/transfer/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/transfer/types"; import "ibc/applications/transfer/v1/query.proto"; import "google/api/annotations.proto"; diff --git a/proto/neutron/transfer/v1/tx.proto b/proto/neutron/transfer/v1/tx.proto index 08019e389..1ccbd79c8 100644 --- a/proto/neutron/transfer/v1/tx.proto +++ b/proto/neutron/transfer/v1/tx.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package neutron.transfer; -option go_package = "github.com/neutron-org/neutron/x/transfer/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/transfer/types"; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; diff --git a/proto/osmosis/tokenfactory/v1beta1/authorityMetadata.proto b/proto/osmosis/tokenfactory/v1beta1/authorityMetadata.proto index 9310a3c21..abf1c18eb 100644 --- a/proto/osmosis/tokenfactory/v1beta1/authorityMetadata.proto +++ b/proto/osmosis/tokenfactory/v1beta1/authorityMetadata.proto @@ -4,7 +4,7 @@ package osmosis.tokenfactory.v1beta1; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/neutron-org/neutron/x/tokenfactory/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/tokenfactory/types"; // DenomAuthorityMetadata specifies metadata for addresses that have specific // capabilities over a token factory denom. Right now there is only one Admin diff --git a/proto/osmosis/tokenfactory/v1beta1/genesis.proto b/proto/osmosis/tokenfactory/v1beta1/genesis.proto index f1c506be0..008b2f37f 100644 --- a/proto/osmosis/tokenfactory/v1beta1/genesis.proto +++ b/proto/osmosis/tokenfactory/v1beta1/genesis.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "osmosis/tokenfactory/v1beta1/authorityMetadata.proto"; import "osmosis/tokenfactory/v1beta1/params.proto"; -option go_package = "github.com/neutron-org/neutron/x/tokenfactory/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/tokenfactory/types"; // GenesisState defines the tokenfactory module's genesis state. message GenesisState { diff --git a/proto/osmosis/tokenfactory/v1beta1/params.proto b/proto/osmosis/tokenfactory/v1beta1/params.proto index 422dbd65e..2c7e381c3 100644 --- a/proto/osmosis/tokenfactory/v1beta1/params.proto +++ b/proto/osmosis/tokenfactory/v1beta1/params.proto @@ -3,7 +3,7 @@ package osmosis.tokenfactory.v1beta1; import "gogoproto/gogo.proto"; -option go_package = "github.com/neutron-org/neutron/x/tokenfactory/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/tokenfactory/types"; import "cosmos_proto/cosmos.proto"; import "cosmos/base/v1beta1/coin.proto"; diff --git a/proto/osmosis/tokenfactory/v1beta1/query.proto b/proto/osmosis/tokenfactory/v1beta1/query.proto index b278d8805..de597b88c 100644 --- a/proto/osmosis/tokenfactory/v1beta1/query.proto +++ b/proto/osmosis/tokenfactory/v1beta1/query.proto @@ -6,7 +6,7 @@ import "google/api/annotations.proto"; import "osmosis/tokenfactory/v1beta1/authorityMetadata.proto"; import "osmosis/tokenfactory/v1beta1/params.proto"; -option go_package = "github.com/neutron-org/neutron/x/tokenfactory/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/tokenfactory/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/osmosis/tokenfactory/v1beta1/tx.proto b/proto/osmosis/tokenfactory/v1beta1/tx.proto index 43dd79d33..a4aa9be53 100644 --- a/proto/osmosis/tokenfactory/v1beta1/tx.proto +++ b/proto/osmosis/tokenfactory/v1beta1/tx.proto @@ -9,7 +9,7 @@ import "cosmos_proto/cosmos.proto"; import "amino/amino.proto"; import "cosmos/bank/v1beta1/bank.proto"; -option go_package = "github.com/neutron-org/neutron/x/tokenfactory/types"; +option go_package = "github.com/neutron-org/neutron/v2/x/tokenfactory/types"; // Msg defines the tokefactory module's gRPC message service. diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index 405bc227a..c8d56be31 100755 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -27,5 +27,5 @@ done cd .. # move proto files to the right places -cp -r github.com/neutron-org/neutron/x/* x/ +cp -r github.com/neutron-org/neutron/v2/x/* x/ rm -rf github.com \ No newline at end of file diff --git a/tests/e2e/interchain_security_test.go b/tests/e2e/interchain_security_test.go index 35c80108f..9209f8982 100644 --- a/tests/e2e/interchain_security_test.go +++ b/tests/e2e/interchain_security_test.go @@ -9,8 +9,8 @@ import ( e2e "github.com/cosmos/interchain-security/v3/tests/integration" - appConsumer "github.com/neutron-org/neutron/app" - "github.com/neutron-org/neutron/testutil" + appConsumer "github.com/neutron-org/neutron/v2/app" + "github.com/neutron-org/neutron/v2/testutil" ) // Executes the standard group of ccv tests against a consumer and provider app.go implementation. diff --git a/tests/ibc/gmp_swap_forward_test.go b/tests/ibc/gmp_swap_forward_test.go index 8d35b825b..4d7c01a45 100644 --- a/tests/ibc/gmp_swap_forward_test.go +++ b/tests/ibc/gmp_swap_forward_test.go @@ -5,9 +5,9 @@ import ( "cosmossdk.io/math" - "github.com/neutron-org/neutron/x/dex/types" - "github.com/neutron-org/neutron/x/gmp" - swaptypes "github.com/neutron-org/neutron/x/ibcswap/types" + "github.com/neutron-org/neutron/v2/x/dex/types" + "github.com/neutron-org/neutron/v2/x/gmp" + swaptypes "github.com/neutron-org/neutron/v2/x/ibcswap/types" ) // TestGMPSwap_Success asserts that the swap middleware works as intended when the original message is sent via GMP diff --git a/tests/ibc/ibc_setup_test.go b/tests/ibc/ibc_setup_test.go index de2cf144b..4327bb395 100644 --- a/tests/ibc/ibc_setup_test.go +++ b/tests/ibc/ibc_setup_test.go @@ -20,8 +20,8 @@ import ( ccv "github.com/cosmos/interchain-security/v3/x/ccv/types" "github.com/stretchr/testify/suite" - "github.com/neutron-org/neutron/testutil" - dextypes "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/testutil" + dextypes "github.com/neutron-org/neutron/v2/x/dex/types" ) var ( diff --git a/tests/ibc/swap_forward_test.go b/tests/ibc/swap_forward_test.go index 9e66d0406..a11025c8d 100644 --- a/tests/ibc/swap_forward_test.go +++ b/tests/ibc/swap_forward_test.go @@ -7,8 +7,8 @@ import ( "cosmossdk.io/math" pfmtypes "github.com/cosmos/ibc-apps/middleware/packet-forward-middleware/v7/packetforward/types" - "github.com/neutron-org/neutron/x/dex/types" - swaptypes "github.com/neutron-org/neutron/x/ibcswap/types" + "github.com/neutron-org/neutron/v2/x/dex/types" + swaptypes "github.com/neutron-org/neutron/v2/x/ibcswap/types" ) // TestSwapAndForward_Fails asserts that the IBC swap middleware fails gracefully when provided with a package-forward memo diff --git a/tests/ibc/swap_test.go b/tests/ibc/swap_test.go index f4bf576fd..7e387ed99 100644 --- a/tests/ibc/swap_test.go +++ b/tests/ibc/swap_test.go @@ -5,8 +5,8 @@ import ( "cosmossdk.io/math" - dextypes "github.com/neutron-org/neutron/x/dex/types" - swaptypes "github.com/neutron-org/neutron/x/ibcswap/types" + dextypes "github.com/neutron-org/neutron/v2/x/dex/types" + swaptypes "github.com/neutron-org/neutron/v2/x/ibcswap/types" ) // TestIBCSwapMiddleware_Success asserts that the IBC swap middleware works as intended with Neutron running as a diff --git a/testutil/apptesting/test_suite.go b/testutil/apptesting/test_suite.go index 83e3c3e27..b44dae56e 100644 --- a/testutil/apptesting/test_suite.go +++ b/testutil/apptesting/test_suite.go @@ -16,9 +16,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" - "github.com/neutron-org/neutron/app" - "github.com/neutron-org/neutron/testutil" - dexmoduletypes "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/app" + "github.com/neutron-org/neutron/v2/testutil" + dexmoduletypes "github.com/neutron-org/neutron/v2/x/dex/types" ) type KeeperTestHelper struct { diff --git a/testutil/chain.go b/testutil/chain.go index e2d8154c5..804b5114e 100644 --- a/testutil/chain.go +++ b/testutil/chain.go @@ -14,7 +14,7 @@ import ( legacyibctesting "github.com/cosmos/interchain-security/v3/legacy_ibc_testing/testing" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app/params" ) // NewTestChainWithValSet copypasted and modified to use neutron denom from here https://github.com/cosmos/ibc-go/blob/af9b461c63274b9ce5917beb89a2c92e865419df/testing/chain.go#L94 diff --git a/testutil/consumer/test_helpers.go b/testutil/consumer/test_helpers.go index c32a4c758..2566bf77e 100644 --- a/testutil/consumer/test_helpers.go +++ b/testutil/consumer/test_helpers.go @@ -20,7 +20,7 @@ import ( "github.com/cosmos/cosmos-sdk/testutil/network" - "github.com/neutron-org/neutron/app" + "github.com/neutron-org/neutron/v2/app" ) // This function creates consumer module genesis state that is used as starting point for modifications diff --git a/testutil/contractmanager/keeper/contractmanager.go b/testutil/contractmanager/keeper/contractmanager.go index f23aa3282..8516c811e 100644 --- a/testutil/contractmanager/keeper/contractmanager.go +++ b/testutil/contractmanager/keeper/contractmanager.go @@ -16,8 +16,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/contractmanager/keeper" - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) func ContractManagerKeeper(t testing.TB, wasmKeeper types.WasmKeeper) (*keeper.Keeper, sdk.Context) { diff --git a/testutil/contractmanager/network/network.go b/testutil/contractmanager/network/network.go index c93747ba5..cc72cf514 100644 --- a/testutil/contractmanager/network/network.go +++ b/testutil/contractmanager/network/network.go @@ -23,10 +23,10 @@ import ( staking "github.com/cosmos/cosmos-sdk/x/staking" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app/params" - "github.com/neutron-org/neutron/app" - "github.com/neutron-org/neutron/testutil/consumer" + "github.com/neutron-org/neutron/v2/app" + "github.com/neutron-org/neutron/v2/testutil/consumer" ) type ( diff --git a/testutil/cron/keeper/cron.go b/testutil/cron/keeper/cron.go index da7cb0644..266957d7a 100644 --- a/testutil/cron/keeper/cron.go +++ b/testutil/cron/keeper/cron.go @@ -16,8 +16,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/cron/keeper" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/x/cron/keeper" + "github.com/neutron-org/neutron/v2/x/cron/types" ) func CronKeeper(t testing.TB, wasmMsgServer types.WasmMsgServer, accountKeeper types.AccountKeeper) (*keeper.Keeper, sdk.Context) { diff --git a/testutil/cron/network/network.go b/testutil/cron/network/network.go index babbf9053..c5ff9541a 100644 --- a/testutil/cron/network/network.go +++ b/testutil/cron/network/network.go @@ -13,11 +13,11 @@ import ( staking "github.com/cosmos/cosmos-sdk/x/staking" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/neutron-org/neutron/testutil/consumer" + "github.com/neutron-org/neutron/v2/testutil/consumer" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app/params" - "github.com/neutron-org/neutron/app" + "github.com/neutron-org/neutron/v2/app" tmdb "github.com/cometbft/cometbft-db" tmrand "github.com/cometbft/cometbft/libs/rand" diff --git a/testutil/dex/keeper/dex.go b/testutil/dex/keeper/dex.go index 1b93fe22f..4f5e4ca25 100644 --- a/testutil/dex/keeper/dex.go +++ b/testutil/dex/keeper/dex.go @@ -15,8 +15,8 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func DexKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { diff --git a/testutil/feeburner/keeper/feeburner.go b/testutil/feeburner/keeper/feeburner.go index 138390233..86e003253 100644 --- a/testutil/feeburner/keeper/feeburner.go +++ b/testutil/feeburner/keeper/feeburner.go @@ -16,8 +16,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/feeburner/keeper" - "github.com/neutron-org/neutron/x/feeburner/types" + "github.com/neutron-org/neutron/v2/x/feeburner/keeper" + "github.com/neutron-org/neutron/v2/x/feeburner/types" ) func FeeburnerKeeper(t testing.TB) (*keeper.Keeper, sdk.Context) { diff --git a/testutil/feerefunder/keeper/fee.go b/testutil/feerefunder/keeper/fee.go index 71de9bb33..9f36cac05 100644 --- a/testutil/feerefunder/keeper/fee.go +++ b/testutil/feerefunder/keeper/fee.go @@ -16,8 +16,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/feerefunder/keeper" - "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/feerefunder/keeper" + "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) func FeeKeeper(t testing.TB, channelKeeper types.ChannelKeeper, bankKeeper types.BankKeeper) (*keeper.Keeper, sdk.Context) { diff --git a/testutil/integration_test_setup.go b/testutil/integration_test_setup.go index 4367f402f..a66ef5275 100644 --- a/testutil/integration_test_setup.go +++ b/testutil/integration_test_setup.go @@ -24,8 +24,8 @@ import ( stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" - "github.com/neutron-org/neutron/app" - "github.com/neutron-org/neutron/testutil/consumer" + "github.com/neutron-org/neutron/v2/app" + "github.com/neutron-org/neutron/v2/testutil/consumer" "github.com/stretchr/testify/require" ) diff --git a/testutil/interchainqueries/keeper/interchainqueries.go b/testutil/interchainqueries/keeper/interchainqueries.go index eb51ce57d..027a7e989 100644 --- a/testutil/interchainqueries/keeper/interchainqueries.go +++ b/testutil/interchainqueries/keeper/interchainqueries.go @@ -18,8 +18,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/interchainqueries/keeper" - "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/x/interchainqueries/keeper" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) func InterchainQueriesKeeper( diff --git a/testutil/interchainqueries/network/network.go b/testutil/interchainqueries/network/network.go index 895287529..da4194f51 100644 --- a/testutil/interchainqueries/network/network.go +++ b/testutil/interchainqueries/network/network.go @@ -23,10 +23,10 @@ import ( staking "github.com/cosmos/cosmos-sdk/x/staking" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app/params" - "github.com/neutron-org/neutron/app" - "github.com/neutron-org/neutron/testutil/consumer" + "github.com/neutron-org/neutron/v2/app" + "github.com/neutron-org/neutron/v2/testutil/consumer" ) type ( diff --git a/testutil/interchaintxs/keeper/interchaintxs.go b/testutil/interchaintxs/keeper/interchaintxs.go index 9a98022e1..cdf278c34 100644 --- a/testutil/interchaintxs/keeper/interchaintxs.go +++ b/testutil/interchaintxs/keeper/interchaintxs.go @@ -16,8 +16,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/interchaintxs/keeper" - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/keeper" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) func InterchainTxsKeeper( diff --git a/testutil/interchaintxs/keeper/sudo_middleware.go b/testutil/interchaintxs/keeper/sudo_middleware.go index 160db9d33..c3bece1c7 100644 --- a/testutil/interchaintxs/keeper/sudo_middleware.go +++ b/testutil/interchaintxs/keeper/sudo_middleware.go @@ -11,8 +11,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/contractmanager" - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/contractmanager" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) func NewSudoLimitWrapper(t testing.TB, cmKeeper types.ContractManagerKeeper, wasmKeeper types.WasmKeeper) (types.WasmKeeper, sdk.Context, *storetypes.KVStoreKey) { diff --git a/testutil/interchaintxs/network/network.go b/testutil/interchaintxs/network/network.go index 9afe4b392..175a5f5b9 100644 --- a/testutil/interchaintxs/network/network.go +++ b/testutil/interchaintxs/network/network.go @@ -23,11 +23,11 @@ import ( staking "github.com/cosmos/cosmos-sdk/x/staking" stakingtypes "github.com/cosmos/cosmos-sdk/x/staking/types" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app/params" - "github.com/neutron-org/neutron/testutil/consumer" + "github.com/neutron-org/neutron/v2/testutil/consumer" - "github.com/neutron-org/neutron/app" + "github.com/neutron-org/neutron/v2/app" ) type ( diff --git a/testutil/mocks/contractmanager/types/expected_keepers.go b/testutil/mocks/contractmanager/types/expected_keepers.go index 9c37f0ca0..a2a9acf50 100644 --- a/testutil/mocks/contractmanager/types/expected_keepers.go +++ b/testutil/mocks/contractmanager/types/expected_keepers.go @@ -11,7 +11,7 @@ import ( types0 "github.com/cosmos/cosmos-sdk/types" gomock "github.com/golang/mock/gomock" - types1 "github.com/neutron-org/neutron/x/contractmanager/types" + types1 "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) // MockWasmKeeper is a mock of WasmKeeper interface. diff --git a/testutil/mocks/interchainqueries/keeper/verify.go b/testutil/mocks/interchainqueries/keeper/verify.go index f624e2900..a5c784660 100644 --- a/testutil/mocks/interchainqueries/keeper/verify.go +++ b/testutil/mocks/interchainqueries/keeper/verify.go @@ -14,7 +14,7 @@ import ( tendermint "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" gomock "github.com/golang/mock/gomock" - types1 "github.com/neutron-org/neutron/x/interchainqueries/types" + types1 "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) // MockHeaderVerifier is a mock of HeaderVerifier interface. diff --git a/testutil/mocks/interchainqueries/types/verify.go b/testutil/mocks/interchainqueries/types/verify.go index 218f5e094..675b85865 100644 --- a/testutil/mocks/interchainqueries/types/verify.go +++ b/testutil/mocks/interchainqueries/types/verify.go @@ -14,7 +14,7 @@ import ( types1 "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" gomock "github.com/golang/mock/gomock" - types2 "github.com/neutron-org/neutron/x/interchainqueries/types" + types2 "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) // MockHeaderVerifier is a mock of HeaderVerifier interface. diff --git a/testutil/mocks/interchaintxs/types/expected_keepers.go b/testutil/mocks/interchaintxs/types/expected_keepers.go index f90216488..86f3772c6 100644 --- a/testutil/mocks/interchaintxs/types/expected_keepers.go +++ b/testutil/mocks/interchaintxs/types/expected_keepers.go @@ -16,7 +16,7 @@ import ( exported "github.com/cosmos/ibc-go/v7/modules/core/exported" gomock "github.com/golang/mock/gomock" - types5 "github.com/neutron-org/neutron/x/feerefunder/types" + types5 "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) // MockAccountKeeper is a mock of AccountKeeper interface. diff --git a/testutil/mocks/transfer/types/expected_keepers.go b/testutil/mocks/transfer/types/expected_keepers.go index 8fb57a62d..3464d83a7 100644 --- a/testutil/mocks/transfer/types/expected_keepers.go +++ b/testutil/mocks/transfer/types/expected_keepers.go @@ -12,7 +12,7 @@ import ( types1 "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" gomock "github.com/golang/mock/gomock" - types2 "github.com/neutron-org/neutron/x/feerefunder/types" + types2 "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) // MockWasmKeeper is a mock of WasmKeeper interface. diff --git a/testutil/test_helpers.go b/testutil/test_helpers.go index f215b95ef..8a40dcced 100644 --- a/testutil/test_helpers.go +++ b/testutil/test_helpers.go @@ -22,15 +22,15 @@ import ( icssimapp "github.com/cosmos/interchain-security/v3/testutil/ibc_testing" "github.com/stretchr/testify/suite" - tokenfactorytypes "github.com/neutron-org/neutron/x/tokenfactory/types" + tokenfactorytypes "github.com/neutron-org/neutron/v2/x/tokenfactory/types" tmtypes "github.com/cometbft/cometbft/types" clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" appProvider "github.com/cosmos/interchain-security/v3/app/provider" e2e "github.com/cosmos/interchain-security/v3/testutil/integration" - "github.com/neutron-org/neutron/app" - ictxstypes "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/app" + ictxstypes "github.com/neutron-org/neutron/v2/x/interchaintxs/types" consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" providertypes "github.com/cosmos/interchain-security/v3/x/ccv/provider/types" @@ -282,8 +282,8 @@ func (suite *IBCConnectionTestSuite) GetNeutronZoneApp(chain *ibctesting.TestCha } func (suite *IBCConnectionTestSuite) StoreTestCode(ctx sdk.Context, addr sdk.AccAddress, path string) uint64 { - // wasm file built with https://github.com/neutron-org/neutron-contracts/tree/main/contracts/reflect - // wasm file built with https://github.com/neutron-org/neutron-dev/tree/feat/ica-register-fee-update/contracts/neutron_interchain_txs + // wasm file built with https://github.com/neutron-org/neutron/v2-contracts/tree/main/contracts/reflect + // wasm file built with https://github.com/neutron-org/neutron/v2-dev/tree/feat/ica-register-fee-update/contracts/neutron_interchain_txs wasmCode, err := os.ReadFile(path) suite.Require().NoError(err) diff --git a/testutil/transfer/keeper/keeper.go b/testutil/transfer/keeper/keeper.go index 532701629..0c2832170 100644 --- a/testutil/transfer/keeper/keeper.go +++ b/testutil/transfer/keeper/keeper.go @@ -18,8 +18,8 @@ import ( transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" - keeper "github.com/neutron-org/neutron/x/transfer/keeper" - "github.com/neutron-org/neutron/x/transfer/types" + keeper "github.com/neutron-org/neutron/v2/x/transfer/keeper" + "github.com/neutron-org/neutron/v2/x/transfer/types" ) func TransferKeeper(t testing.TB, managerKeeper types.WasmKeeper, refunderKeeper types.FeeRefunderKeeper, channelKeeper types.ChannelKeeper, authKeeper types.AccountKeeper) (*keeper.KeeperTransferWrapper, sdk.Context, *storetypes.KVStoreKey) { diff --git a/utils/bank.go b/utils/bank.go index a7946cea6..cb33d549f 100644 --- a/utils/bank.go +++ b/utils/bank.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" "github.com/cosmos/cosmos-sdk/types/query" ) diff --git a/utils/dcli/parsers.go b/utils/dcli/parsers.go index 840d9b62d..1c4a48402 100644 --- a/utils/dcli/parsers.go +++ b/utils/dcli/parsers.go @@ -13,7 +13,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/spf13/pflag" - utils "github.com/neutron-org/neutron/utils" + utils "github.com/neutron-org/neutron/v2/utils" ) // Parses arguments 1-1 from args diff --git a/utils/dcli/parsers_test.go b/utils/dcli/parsers_test.go index 810b5bf71..97e334c2c 100644 --- a/utils/dcli/parsers_test.go +++ b/utils/dcli/parsers_test.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - . "github.com/neutron-org/neutron/utils/dcli" + . "github.com/neutron-org/neutron/v2/utils/dcli" ) type testingStruct struct { diff --git a/wasmbinding/bindings/msg.go b/wasmbinding/bindings/msg.go index e4d8142f1..1804032fb 100644 --- a/wasmbinding/bindings/msg.go +++ b/wasmbinding/bindings/msg.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramChange "github.com/cosmos/cosmos-sdk/x/params/types/proposal" - feetypes "github.com/neutron-org/neutron/x/feerefunder/types" - icqtypes "github.com/neutron-org/neutron/x/interchainqueries/types" - transferwrappertypes "github.com/neutron-org/neutron/x/transfer/types" + feetypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" + icqtypes "github.com/neutron-org/neutron/v2/x/interchainqueries/types" + transferwrappertypes "github.com/neutron-org/neutron/v2/x/transfer/types" ) // ProtobufAny is a hack-struct to serialize protobuf Any message into JSON object @@ -19,7 +19,7 @@ type ProtobufAny struct { } // NeutronMsg is used like a sum type to hold one of custom Neutron messages. -// Follow https://github.com/neutron-org/neutron-sdk/blob/main/packages/neutron-sdk/src/bindings/msg.rs +// Follow https://github.com/neutron-org/neutron/v2-sdk/blob/main/packages/neutron-sdk/src/bindings/msg.rs // for more information. type NeutronMsg struct { SubmitTx *SubmitTx `json:"submit_tx,omitempty"` diff --git a/wasmbinding/bindings/query.go b/wasmbinding/bindings/query.go index f911eee0a..badff9e8e 100644 --- a/wasmbinding/bindings/query.go +++ b/wasmbinding/bindings/query.go @@ -3,16 +3,16 @@ package bindings import ( "encoding/json" - contractmanagertypes "github.com/neutron-org/neutron/x/contractmanager/types" + contractmanagertypes "github.com/neutron-org/neutron/v2/x/contractmanager/types" - feerefundertypes "github.com/neutron-org/neutron/x/feerefunder/types" + feerefundertypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" sdktypes "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) // NeutronQuery contains neutron custom queries. diff --git a/wasmbinding/custom_querier.go b/wasmbinding/custom_querier.go index 94d575009..7d0a5da44 100644 --- a/wasmbinding/custom_querier.go +++ b/wasmbinding/custom_querier.go @@ -8,7 +8,7 @@ import ( wasmvmtypes "github.com/CosmWasm/wasmvm/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/wasmbinding/bindings" + "github.com/neutron-org/neutron/v2/wasmbinding/bindings" ) // CustomQuerier returns a function that is an implementation of custom querier mechanism for specific messages diff --git a/wasmbinding/message_plugin.go b/wasmbinding/message_plugin.go index 2103f56f8..81827739d 100644 --- a/wasmbinding/message_plugin.go +++ b/wasmbinding/message_plugin.go @@ -4,14 +4,14 @@ import ( "encoding/json" "fmt" - contractmanagerkeeper "github.com/neutron-org/neutron/x/contractmanager/keeper" + contractmanagerkeeper "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" "cosmossdk.io/errors" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - crontypes "github.com/neutron-org/neutron/x/cron/types" + crontypes "github.com/neutron-org/neutron/v2/x/cron/types" - cronkeeper "github.com/neutron-org/neutron/x/cron/keeper" + cronkeeper "github.com/neutron-org/neutron/v2/x/cron/keeper" paramChange "github.com/cosmos/cosmos-sdk/x/params/types/proposal" @@ -28,16 +28,16 @@ import ( bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/neutron-org/neutron/wasmbinding/bindings" - icqkeeper "github.com/neutron-org/neutron/x/interchainqueries/keeper" - icqtypes "github.com/neutron-org/neutron/x/interchainqueries/types" - ictxkeeper "github.com/neutron-org/neutron/x/interchaintxs/keeper" - ictxtypes "github.com/neutron-org/neutron/x/interchaintxs/types" - transferwrapperkeeper "github.com/neutron-org/neutron/x/transfer/keeper" - transferwrappertypes "github.com/neutron-org/neutron/x/transfer/types" + "github.com/neutron-org/neutron/v2/wasmbinding/bindings" + icqkeeper "github.com/neutron-org/neutron/v2/x/interchainqueries/keeper" + icqtypes "github.com/neutron-org/neutron/v2/x/interchainqueries/types" + ictxkeeper "github.com/neutron-org/neutron/v2/x/interchaintxs/keeper" + ictxtypes "github.com/neutron-org/neutron/v2/x/interchaintxs/types" + transferwrapperkeeper "github.com/neutron-org/neutron/v2/x/transfer/keeper" + transferwrappertypes "github.com/neutron-org/neutron/v2/x/transfer/types" - tokenfactorykeeper "github.com/neutron-org/neutron/x/tokenfactory/keeper" - tokenfactorytypes "github.com/neutron-org/neutron/x/tokenfactory/types" + tokenfactorykeeper "github.com/neutron-org/neutron/v2/x/tokenfactory/keeper" + tokenfactorytypes "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) func CustomMessageDecorator( diff --git a/wasmbinding/queries.go b/wasmbinding/queries.go index d1f066b86..73279c520 100644 --- a/wasmbinding/queries.go +++ b/wasmbinding/queries.go @@ -5,11 +5,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkquery "github.com/cosmos/cosmos-sdk/types/query" - contractmanagertypes "github.com/neutron-org/neutron/x/contractmanager/types" + contractmanagertypes "github.com/neutron-org/neutron/v2/x/contractmanager/types" - "github.com/neutron-org/neutron/wasmbinding/bindings" - "github.com/neutron-org/neutron/x/interchainqueries/types" - icatypes "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/wasmbinding/bindings" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" + icatypes "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) func (qp *QueryPlugin) GetInterchainQueryResult(ctx sdk.Context, queryID uint64) (*bindings.QueryRegisteredQueryResultResponse, error) { diff --git a/wasmbinding/query_plugin.go b/wasmbinding/query_plugin.go index 1b8e346db..7c98a25d0 100644 --- a/wasmbinding/query_plugin.go +++ b/wasmbinding/query_plugin.go @@ -1,13 +1,13 @@ package wasmbinding import ( - contractmanagerkeeper "github.com/neutron-org/neutron/x/contractmanager/keeper" - feeburnerkeeper "github.com/neutron-org/neutron/x/feeburner/keeper" - feerefunderkeeper "github.com/neutron-org/neutron/x/feerefunder/keeper" - icqkeeper "github.com/neutron-org/neutron/x/interchainqueries/keeper" - icacontrollerkeeper "github.com/neutron-org/neutron/x/interchaintxs/keeper" + contractmanagerkeeper "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" + feeburnerkeeper "github.com/neutron-org/neutron/v2/x/feeburner/keeper" + feerefunderkeeper "github.com/neutron-org/neutron/v2/x/feerefunder/keeper" + icqkeeper "github.com/neutron-org/neutron/v2/x/interchainqueries/keeper" + icacontrollerkeeper "github.com/neutron-org/neutron/v2/x/interchaintxs/keeper" - tokenfactorykeeper "github.com/neutron-org/neutron/x/tokenfactory/keeper" + tokenfactorykeeper "github.com/neutron-org/neutron/v2/x/tokenfactory/keeper" ) type QueryPlugin struct { diff --git a/wasmbinding/stargate_allowlist.go b/wasmbinding/stargate_allowlist.go index 8d23df4f9..98cc3851a 100644 --- a/wasmbinding/stargate_allowlist.go +++ b/wasmbinding/stargate_allowlist.go @@ -9,11 +9,11 @@ import ( ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" ibcconnectiontypes "github.com/cosmos/ibc-go/v7/modules/core/03-connection/types" - dextypes "github.com/neutron-org/neutron/x/dex/types" - feeburnertypes "github.com/neutron-org/neutron/x/feeburner/types" - interchainqueriestypes "github.com/neutron-org/neutron/x/interchainqueries/types" - interchaintxstypes "github.com/neutron-org/neutron/x/interchaintxs/types" - tokenfactorytypes "github.com/neutron-org/neutron/x/tokenfactory/types" + dextypes "github.com/neutron-org/neutron/v2/x/dex/types" + feeburnertypes "github.com/neutron-org/neutron/v2/x/feeburner/types" + interchainqueriestypes "github.com/neutron-org/neutron/v2/x/interchainqueries/types" + interchaintxstypes "github.com/neutron-org/neutron/v2/x/interchaintxs/types" + tokenfactorytypes "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) func AcceptedStargateQueries() wasmkeeper.AcceptedStargateQueries { diff --git a/wasmbinding/test/custom_message_test.go b/wasmbinding/test/custom_message_test.go index dd8ac5dd3..95956bb63 100644 --- a/wasmbinding/test/custom_message_test.go +++ b/wasmbinding/test/custom_message_test.go @@ -5,19 +5,19 @@ import ( "fmt" "testing" - keeper2 "github.com/neutron-org/neutron/x/contractmanager/keeper" - feeburnertypes "github.com/neutron-org/neutron/x/feeburner/types" + keeper2 "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" + feeburnertypes "github.com/neutron-org/neutron/v2/x/feeburner/types" ibcchanneltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" "github.com/stretchr/testify/suite" - ictxtypes "github.com/neutron-org/neutron/x/interchaintxs/types" + ictxtypes "github.com/neutron-org/neutron/v2/x/interchaintxs/types" adminkeeper "github.com/cosmos/admin-module/x/adminmodule/keeper" admintypes "github.com/cosmos/admin-module/x/adminmodule/types" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app/params" "github.com/CosmWasm/wasmd/x/wasm/keeper" "github.com/CosmWasm/wasmvm/types" @@ -26,16 +26,16 @@ import ( ibchost "github.com/cosmos/ibc-go/v7/modules/core/exported" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/app" - "github.com/neutron-org/neutron/testutil" - "github.com/neutron-org/neutron/wasmbinding" - "github.com/neutron-org/neutron/wasmbinding/bindings" - feetypes "github.com/neutron-org/neutron/x/feerefunder/types" - icqkeeper "github.com/neutron-org/neutron/x/interchainqueries/keeper" - icqtypes "github.com/neutron-org/neutron/x/interchainqueries/types" - ictxkeeper "github.com/neutron-org/neutron/x/interchaintxs/keeper" + "github.com/neutron-org/neutron/v2/app" + "github.com/neutron-org/neutron/v2/testutil" + "github.com/neutron-org/neutron/v2/wasmbinding" + "github.com/neutron-org/neutron/v2/wasmbinding/bindings" + feetypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" + icqkeeper "github.com/neutron-org/neutron/v2/x/interchainqueries/keeper" + icqtypes "github.com/neutron-org/neutron/v2/x/interchainqueries/types" + ictxkeeper "github.com/neutron-org/neutron/v2/x/interchaintxs/keeper" - tokenfactorytypes "github.com/neutron-org/neutron/x/tokenfactory/types" + tokenfactorytypes "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) const FeeCollectorAddress = "neutron1vguuxez2h5ekltfj9gjd62fs5k4rl2zy5hfrncasykzw08rezpfsd2rhm7" diff --git a/wasmbinding/test/custom_query_test.go b/wasmbinding/test/custom_query_test.go index cdc185060..297db9cb3 100644 --- a/wasmbinding/test/custom_query_test.go +++ b/wasmbinding/test/custom_query_test.go @@ -7,9 +7,9 @@ import ( "github.com/stretchr/testify/suite" - "github.com/neutron-org/neutron/app/params" - feerefundertypes "github.com/neutron-org/neutron/x/feerefunder/types" - tokenfactorytypes "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/app/params" + feerefundertypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" + tokenfactorytypes "github.com/neutron-org/neutron/v2/x/tokenfactory/types" "github.com/CosmWasm/wasmd/x/wasm/keeper" wasmvmtypes "github.com/CosmWasm/wasmvm/types" @@ -18,11 +18,11 @@ import ( host "github.com/cosmos/ibc-go/v7/modules/core/24-host" ibchost "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/neutron-org/neutron/app" - "github.com/neutron-org/neutron/testutil" - "github.com/neutron-org/neutron/wasmbinding/bindings" - icqtypes "github.com/neutron-org/neutron/x/interchainqueries/types" - ictxtypes "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/app" + "github.com/neutron-org/neutron/v2/testutil" + "github.com/neutron-org/neutron/v2/wasmbinding/bindings" + icqtypes "github.com/neutron-org/neutron/v2/x/interchainqueries/types" + ictxtypes "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) type CustomQuerierTestSuite struct { diff --git a/wasmbinding/wasm.go b/wasmbinding/wasm.go index 047cefe3f..3008c4089 100644 --- a/wasmbinding/wasm.go +++ b/wasmbinding/wasm.go @@ -4,17 +4,17 @@ import ( wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" - contractmanagerkeeper "github.com/neutron-org/neutron/x/contractmanager/keeper" - cronkeeper "github.com/neutron-org/neutron/x/cron/keeper" - feeburnerkeeper "github.com/neutron-org/neutron/x/feeburner/keeper" - feerefunderkeeper "github.com/neutron-org/neutron/x/feerefunder/keeper" + contractmanagerkeeper "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" + cronkeeper "github.com/neutron-org/neutron/v2/x/cron/keeper" + feeburnerkeeper "github.com/neutron-org/neutron/v2/x/feeburner/keeper" + feerefunderkeeper "github.com/neutron-org/neutron/v2/x/feerefunder/keeper" adminmodulekeeper "github.com/cosmos/admin-module/x/adminmodule/keeper" - interchainqueriesmodulekeeper "github.com/neutron-org/neutron/x/interchainqueries/keeper" - interchaintransactionsmodulekeeper "github.com/neutron-org/neutron/x/interchaintxs/keeper" - tokenfactorykeeper "github.com/neutron-org/neutron/x/tokenfactory/keeper" - transfer "github.com/neutron-org/neutron/x/transfer/keeper" + interchainqueriesmodulekeeper "github.com/neutron-org/neutron/v2/x/interchainqueries/keeper" + interchaintransactionsmodulekeeper "github.com/neutron-org/neutron/v2/x/interchaintxs/keeper" + tokenfactorykeeper "github.com/neutron-org/neutron/v2/x/tokenfactory/keeper" + transfer "github.com/neutron-org/neutron/v2/x/transfer/keeper" ) // RegisterCustomPlugins returns wasmkeeper.Option that we can use to connect handlers for implemented custom queries and messages to the App diff --git a/x/contractmanager/client/cli/query.go b/x/contractmanager/client/cli/query.go index 9562d9550..88690d872 100644 --- a/x/contractmanager/client/cli/query.go +++ b/x/contractmanager/client/cli/query.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/contractmanager/client/cli/query_failure.go b/x/contractmanager/client/cli/query_failure.go index f4574316e..5b2c0a252 100644 --- a/x/contractmanager/client/cli/query_failure.go +++ b/x/contractmanager/client/cli/query_failure.go @@ -11,7 +11,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/auth/tx" "github.com/spf13/cobra" - contractmanagertypes "github.com/neutron-org/neutron/x/contractmanager/types" + contractmanagertypes "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) func CmdFailures() *cobra.Command { diff --git a/x/contractmanager/client/cli/query_failure_test.go b/x/contractmanager/client/cli/query_failure_test.go index d590d39e3..ccb79902a 100644 --- a/x/contractmanager/client/cli/query_failure_test.go +++ b/x/contractmanager/client/cli/query_failure_test.go @@ -6,7 +6,7 @@ import ( "strconv" "testing" - "github.com/neutron-org/neutron/app" + "github.com/neutron-org/neutron/v2/app" tmcli "github.com/cometbft/cometbft/libs/cli" "github.com/cosmos/cosmos-sdk/client/flags" @@ -18,10 +18,10 @@ import ( sdktypes "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/testutil/contractmanager/network" - "github.com/neutron-org/neutron/testutil/contractmanager/nullify" - "github.com/neutron-org/neutron/x/contractmanager/client/cli" - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/testutil/contractmanager/network" + "github.com/neutron-org/neutron/v2/testutil/contractmanager/nullify" + "github.com/neutron-org/neutron/v2/x/contractmanager/client/cli" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) func networkWithFailureObjects(t *testing.T, n int) (*network.Network, []types.Failure) { diff --git a/x/contractmanager/client/cli/query_params.go b/x/contractmanager/client/cli/query_params.go index 673066528..c2c5a602d 100644 --- a/x/contractmanager/client/cli/query_params.go +++ b/x/contractmanager/client/cli/query_params.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) func CmdQueryParams() *cobra.Command { diff --git a/x/contractmanager/genesis.go b/x/contractmanager/genesis.go index 798fd7648..3ce1be0e9 100644 --- a/x/contractmanager/genesis.go +++ b/x/contractmanager/genesis.go @@ -3,8 +3,8 @@ package contractmanager import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/contractmanager/keeper" - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) // InitGenesis initializes the module's state from a provided genesis state. diff --git a/x/contractmanager/genesis_test.go b/x/contractmanager/genesis_test.go index c72623f9f..8f20c2428 100644 --- a/x/contractmanager/genesis_test.go +++ b/x/contractmanager/genesis_test.go @@ -3,16 +3,16 @@ package contractmanager_test import ( "testing" - "github.com/neutron-org/neutron/x/contractmanager/keeper" + "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" "github.com/stretchr/testify/require" - keepertest "github.com/neutron-org/neutron/testutil/contractmanager/keeper" - "github.com/neutron-org/neutron/testutil/contractmanager/nullify" - "github.com/neutron-org/neutron/x/contractmanager" - "github.com/neutron-org/neutron/x/contractmanager/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/contractmanager/keeper" + "github.com/neutron-org/neutron/v2/testutil/contractmanager/nullify" + "github.com/neutron-org/neutron/v2/x/contractmanager" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) func TestGenesis(t *testing.T) { diff --git a/x/contractmanager/ibc_middleware.go b/x/contractmanager/ibc_middleware.go index ff5f781d3..356381c2a 100644 --- a/x/contractmanager/ibc_middleware.go +++ b/x/contractmanager/ibc_middleware.go @@ -7,8 +7,8 @@ import ( "github.com/cometbft/cometbft/libs/log" sdk "github.com/cosmos/cosmos-sdk/types" - contractmanagerkeeper "github.com/neutron-org/neutron/x/contractmanager/keeper" - contractmanagertypes "github.com/neutron-org/neutron/x/contractmanager/types" + contractmanagerkeeper "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" + contractmanagertypes "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) type SudoLimitWrapper struct { diff --git a/x/contractmanager/ibc_middleware_test.go b/x/contractmanager/ibc_middleware_test.go index b91aab690..31ae721fb 100644 --- a/x/contractmanager/ibc_middleware_test.go +++ b/x/contractmanager/ibc_middleware_test.go @@ -8,10 +8,10 @@ import ( "github.com/golang/mock/gomock" "github.com/stretchr/testify/require" - test_keeper "github.com/neutron-org/neutron/testutil/interchaintxs/keeper" - mock_types "github.com/neutron-org/neutron/testutil/mocks/contractmanager/types" - contractmanagerkeeper "github.com/neutron-org/neutron/x/contractmanager/keeper" - "github.com/neutron-org/neutron/x/contractmanager/types" + test_keeper "github.com/neutron-org/neutron/v2/testutil/interchaintxs/keeper" + mock_types "github.com/neutron-org/neutron/v2/testutil/mocks/contractmanager/types" + contractmanagerkeeper "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) var ( diff --git a/x/contractmanager/keeper/failure.go b/x/contractmanager/keeper/failure.go index b01ac32c9..5cfbd9e59 100644 --- a/x/contractmanager/keeper/failure.go +++ b/x/contractmanager/keeper/failure.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) // AddContractFailure adds a specific failure to the store. The provided address is used to determine @@ -19,7 +19,7 @@ import ( // must be OS/library version agnostic and carry a concrete defined error message. One of the good // ways to do so is to redact error using the RedactError func as it is done in SudoLimitWrapper // Sudo method: -// https://github.com/neutron-org/neutron/blob/eb8b5ae50907439ff9af0527a42ef0cb448a78b5/x/contractmanager/ibc_middleware.go#L42. +// https://github.com/neutron-org/neutron/v2/blob/eb8b5ae50907439ff9af0527a42ef0cb448a78b5/x/contractmanager/ibc_middleware.go#L42. // Another good way could be passing here some constant value. func (k Keeper) AddContractFailure(ctx sdk.Context, address string, sudoPayload []byte, errMsg string) types.Failure { failure := types.Failure{ diff --git a/x/contractmanager/keeper/failure_test.go b/x/contractmanager/keeper/failure_test.go index 3962eefba..55bfba319 100644 --- a/x/contractmanager/keeper/failure_test.go +++ b/x/contractmanager/keeper/failure_test.go @@ -9,20 +9,20 @@ import ( "github.com/golang/mock/gomock" - "github.com/neutron-org/neutron/testutil" - mock_types "github.com/neutron-org/neutron/testutil/mocks/contractmanager/types" + "github.com/neutron-org/neutron/v2/testutil" + mock_types "github.com/neutron-org/neutron/v2/testutil/mocks/contractmanager/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/neutron-org/neutron/testutil/contractmanager/nullify" + "github.com/neutron-org/neutron/v2/testutil/contractmanager/nullify" "github.com/cosmos/cosmos-sdk/crypto/keys/ed25519" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "github.com/neutron-org/neutron/testutil/contractmanager/keeper" - "github.com/neutron-org/neutron/x/contractmanager/keeper" - "github.com/neutron-org/neutron/x/contractmanager/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/contractmanager/keeper" + "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) // Prevent strconv unused error diff --git a/x/contractmanager/keeper/grpc_query.go b/x/contractmanager/keeper/grpc_query.go index e4d1078b4..b6eb4ea70 100644 --- a/x/contractmanager/keeper/grpc_query.go +++ b/x/contractmanager/keeper/grpc_query.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/contractmanager/keeper/grpc_query_failure.go b/x/contractmanager/keeper/grpc_query_failure.go index 1b62efeb1..c59ed688a 100644 --- a/x/contractmanager/keeper/grpc_query_failure.go +++ b/x/contractmanager/keeper/grpc_query_failure.go @@ -9,7 +9,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) const FailuresQueryMaxLimit uint64 = query.DefaultLimit diff --git a/x/contractmanager/keeper/grpc_query_failure_test.go b/x/contractmanager/keeper/grpc_query_failure_test.go index 565d53c11..4255b8478 100644 --- a/x/contractmanager/keeper/grpc_query_failure_test.go +++ b/x/contractmanager/keeper/grpc_query_failure_test.go @@ -10,10 +10,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/neutron-org/neutron/testutil/contractmanager/keeper" - "github.com/neutron-org/neutron/testutil/contractmanager/nullify" - "github.com/neutron-org/neutron/x/contractmanager/keeper" - "github.com/neutron-org/neutron/x/contractmanager/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/contractmanager/keeper" + "github.com/neutron-org/neutron/v2/testutil/contractmanager/nullify" + "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) // Prevent strconv unused error diff --git a/x/contractmanager/keeper/grpc_query_params.go b/x/contractmanager/keeper/grpc_query_params.go index ac3be36b9..72d870217 100644 --- a/x/contractmanager/keeper/grpc_query_params.go +++ b/x/contractmanager/keeper/grpc_query_params.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error) { diff --git a/x/contractmanager/keeper/grpc_query_params_test.go b/x/contractmanager/keeper/grpc_query_params_test.go index 31c9598b0..4a3ee02c6 100644 --- a/x/contractmanager/keeper/grpc_query_params_test.go +++ b/x/contractmanager/keeper/grpc_query_params_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - testkeeper "github.com/neutron-org/neutron/testutil/contractmanager/keeper" - "github.com/neutron-org/neutron/x/contractmanager/types" + testkeeper "github.com/neutron-org/neutron/v2/testutil/contractmanager/keeper" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) func TestParamsQuery(t *testing.T) { diff --git a/x/contractmanager/keeper/keeper.go b/x/contractmanager/keeper/keeper.go index ef5205e9f..e5d6f6ba0 100644 --- a/x/contractmanager/keeper/keeper.go +++ b/x/contractmanager/keeper/keeper.go @@ -8,7 +8,7 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) type ( diff --git a/x/contractmanager/keeper/migrations.go b/x/contractmanager/keeper/migrations.go index 883d4b627..66492b67d 100644 --- a/x/contractmanager/keeper/migrations.go +++ b/x/contractmanager/keeper/migrations.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - v2 "github.com/neutron-org/neutron/x/contractmanager/migrations/v2" + v2 "github.com/neutron-org/neutron/v2/x/contractmanager/migrations/v2" ) // Migrator is a struct for handling in-place store migrations. diff --git a/x/contractmanager/keeper/msg_server.go b/x/contractmanager/keeper/msg_server.go index 26fdaf7bb..581572e61 100644 --- a/x/contractmanager/keeper/msg_server.go +++ b/x/contractmanager/keeper/msg_server.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) type msgServer struct { diff --git a/x/contractmanager/keeper/params.go b/x/contractmanager/keeper/params.go index 4aea5124d..7a630d249 100644 --- a/x/contractmanager/keeper/params.go +++ b/x/contractmanager/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) // GetParams get all parameters as types.Params diff --git a/x/contractmanager/keeper/params_test.go b/x/contractmanager/keeper/params_test.go index 4b23f1830..d70794217 100644 --- a/x/contractmanager/keeper/params_test.go +++ b/x/contractmanager/keeper/params_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - testkeeper "github.com/neutron-org/neutron/testutil/contractmanager/keeper" - "github.com/neutron-org/neutron/x/contractmanager/types" + testkeeper "github.com/neutron-org/neutron/v2/testutil/contractmanager/keeper" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) func TestGetParams(t *testing.T) { diff --git a/x/contractmanager/keeper/sudo.go b/x/contractmanager/keeper/sudo.go index b5e574f57..2b4afe5d5 100644 --- a/x/contractmanager/keeper/sudo.go +++ b/x/contractmanager/keeper/sudo.go @@ -13,7 +13,7 @@ import ( ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) func (k Keeper) HasContractInfo(ctx sdk.Context, contractAddress sdk.AccAddress) bool { diff --git a/x/contractmanager/keeper/sudo_test.go b/x/contractmanager/keeper/sudo_test.go index 12862b4de..5fedaf7c0 100644 --- a/x/contractmanager/keeper/sudo_test.go +++ b/x/contractmanager/keeper/sudo_test.go @@ -9,11 +9,11 @@ import ( "github.com/golang/mock/gomock" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/app" - "github.com/neutron-org/neutron/testutil" - keepertest "github.com/neutron-org/neutron/testutil/contractmanager/keeper" - mock_types "github.com/neutron-org/neutron/testutil/mocks/contractmanager/types" - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/app" + "github.com/neutron-org/neutron/v2/testutil" + keepertest "github.com/neutron-org/neutron/v2/testutil/contractmanager/keeper" + mock_types "github.com/neutron-org/neutron/v2/testutil/mocks/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) func init() { diff --git a/x/contractmanager/migrations/v2/store.go b/x/contractmanager/migrations/v2/store.go index d0b64d5f8..6ef7268e9 100644 --- a/x/contractmanager/migrations/v2/store.go +++ b/x/contractmanager/migrations/v2/store.go @@ -5,7 +5,7 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) // MigrateStore performs in-place store migrations. diff --git a/x/contractmanager/migrations/v2/store_test.go b/x/contractmanager/migrations/v2/store_test.go index 40644f633..46081ff7b 100644 --- a/x/contractmanager/migrations/v2/store_test.go +++ b/x/contractmanager/migrations/v2/store_test.go @@ -6,10 +6,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" - "github.com/neutron-org/neutron/testutil" - v2 "github.com/neutron-org/neutron/x/contractmanager/migrations/v2" - "github.com/neutron-org/neutron/x/contractmanager/types" - typesv1 "github.com/neutron-org/neutron/x/contractmanager/types/v1" + "github.com/neutron-org/neutron/v2/testutil" + v2 "github.com/neutron-org/neutron/v2/x/contractmanager/migrations/v2" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" + typesv1 "github.com/neutron-org/neutron/v2/x/contractmanager/types/v1" ) type V2ContractManagerMigrationTestSuite struct { diff --git a/x/contractmanager/module.go b/x/contractmanager/module.go index a5c4f75fa..60c0dd772 100644 --- a/x/contractmanager/module.go +++ b/x/contractmanager/module.go @@ -21,9 +21,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/neutron-org/neutron/x/contractmanager/client/cli" - "github.com/neutron-org/neutron/x/contractmanager/keeper" - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/client/cli" + "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) var ( diff --git a/x/contractmanager/types/failure.pb.go b/x/contractmanager/types/failure.pb.go index 4c8aa4ea1..e6372a991 100644 --- a/x/contractmanager/types/failure.pb.go +++ b/x/contractmanager/types/failure.pb.go @@ -108,7 +108,7 @@ func init() { } var fileDescriptor_fba0c26e85dad46e = []byte{ - // 245 bytes of a gzipped FileDescriptorProto + // 248 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xcd, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0x4a, 0x4c, 0x2e, 0xc9, 0x4d, 0xcc, 0x4b, 0x4c, 0x4f, 0x2d, 0xd2, 0x4f, 0x4b, 0xcc, 0xcc, 0x29, 0x2d, 0x4a, 0xd5, 0x2b, 0x28, 0xca, 0x2f, @@ -119,12 +119,12 @@ var fileDescriptor_fba0c26e85dad46e = []byte{ 0x32, 0x53, 0x24, 0x98, 0x14, 0x18, 0x35, 0x58, 0x82, 0x98, 0x32, 0x53, 0x84, 0x14, 0xb9, 0x78, 0x8a, 0x4b, 0x53, 0xf2, 0xe3, 0x0b, 0x12, 0x2b, 0x73, 0xf2, 0x13, 0x53, 0x24, 0x98, 0x15, 0x18, 0x35, 0x78, 0x82, 0xb8, 0x41, 0x62, 0x01, 0x10, 0x21, 0x21, 0x11, 0x2e, 0xd6, 0xd4, 0xa2, 0xa2, - 0xfc, 0x22, 0x09, 0x16, 0xb0, 0x51, 0x10, 0x8e, 0x53, 0xc0, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, + 0xfc, 0x22, 0x09, 0x16, 0xb0, 0x51, 0x10, 0x8e, 0x53, 0xf0, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, - 0x1e, 0xcb, 0x31, 0x44, 0x99, 0xa5, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, - 0x43, 0xbd, 0xa3, 0x9b, 0x5f, 0x94, 0x0e, 0x63, 0xeb, 0x57, 0x60, 0x84, 0x41, 0x49, 0x65, 0x41, - 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x1b, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x3c, 0x20, 0x77, - 0x4c, 0x2b, 0x01, 0x00, 0x00, + 0x1e, 0xcb, 0x31, 0x44, 0x59, 0xa6, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, + 0x43, 0xbd, 0xa3, 0x9b, 0x5f, 0x94, 0x0e, 0x63, 0xeb, 0x97, 0x19, 0xe9, 0x57, 0x60, 0x04, 0x43, + 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x27, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, + 0x76, 0xa4, 0x70, 0xd9, 0x2e, 0x01, 0x00, 0x00, } func (m *Failure) Marshal() (dAtA []byte, err error) { diff --git a/x/contractmanager/types/genesis.pb.go b/x/contractmanager/types/genesis.pb.go index 453b599ff..b9f5e8f2f 100644 --- a/x/contractmanager/types/genesis.pb.go +++ b/x/contractmanager/types/genesis.pb.go @@ -87,7 +87,7 @@ func init() { } var fileDescriptor_cf4a1534315a7490 = []byte{ - // 249 bytes of a gzipped FileDescriptorProto + // 252 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xcd, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0x4a, 0x4c, 0x2e, 0xc9, 0x4d, 0xcc, 0x4b, 0x4c, 0x4f, 0x2d, 0xd2, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, @@ -98,12 +98,12 @@ var fileDescriptor_cf4a1534315a7490 = []byte{ 0x47, 0x82, 0x51, 0x81, 0x51, 0x83, 0xdb, 0x48, 0x5e, 0x0f, 0x87, 0xeb, 0xf4, 0x02, 0xc0, 0xca, 0x9c, 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0x82, 0x6a, 0x12, 0xf2, 0xe6, 0xe2, 0x85, 0x5a, 0x50, 0x1c, 0x9f, 0x93, 0x59, 0x5c, 0x22, 0xc1, 0xa4, 0xc0, 0xac, 0xc1, 0x6d, 0xa4, 0x80, 0xd3, 0x14, - 0x37, 0x88, 0x6a, 0xa8, 0x31, 0x3c, 0x30, 0xcd, 0x3e, 0x99, 0xc5, 0x25, 0x4e, 0x01, 0x27, 0x1e, + 0x37, 0x88, 0x6a, 0xa8, 0x31, 0x3c, 0x30, 0xcd, 0x3e, 0x99, 0xc5, 0x25, 0x4e, 0xc1, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, - 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0x65, 0x96, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, - 0x97, 0x9c, 0x9f, 0xab, 0x0f, 0x35, 0x59, 0x37, 0xbf, 0x28, 0x1d, 0xc6, 0xd6, 0xaf, 0xc0, 0xf0, - 0x76, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0xd7, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x20, 0x4a, 0xa0, 0xfc, 0x9a, 0x01, 0x00, 0x00, + 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0x65, 0x99, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, + 0x97, 0x9c, 0x9f, 0xab, 0x0f, 0x35, 0x59, 0x37, 0xbf, 0x28, 0x1d, 0xc6, 0xd6, 0x2f, 0x33, 0xd2, + 0xaf, 0xc0, 0xf0, 0x79, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0xe3, 0xc6, 0x80, 0x00, + 0x00, 0x00, 0xff, 0xff, 0x88, 0x3a, 0xe9, 0x4b, 0x9d, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/contractmanager/types/genesis_test.go b/x/contractmanager/types/genesis_test.go index 79490ce99..85104bfd9 100644 --- a/x/contractmanager/types/genesis_test.go +++ b/x/contractmanager/types/genesis_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/contractmanager/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" ) func TestGenesisState_Validate(t *testing.T) { diff --git a/x/contractmanager/types/params.pb.go b/x/contractmanager/types/params.pb.go index f081c02d9..4efb1b40d 100644 --- a/x/contractmanager/types/params.pb.go +++ b/x/contractmanager/types/params.pb.go @@ -77,7 +77,7 @@ func init() { } var fileDescriptor_121b05e48c7a8737 = []byte{ - // 201 bytes of a gzipped FileDescriptorProto + // 204 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc9, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0x4a, 0x4c, 0x2e, 0xc9, 0x4d, 0xcc, 0x4b, 0x4c, 0x4f, 0x2d, 0xd2, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, @@ -85,12 +85,12 @@ var fileDescriptor_121b05e48c7a8737 = []byte{ 0x0f, 0x62, 0x41, 0x94, 0x2b, 0xd9, 0x72, 0xb1, 0x05, 0x80, 0xb5, 0x0b, 0xe9, 0x72, 0x09, 0x17, 0x97, 0xa6, 0xe4, 0xc7, 0x27, 0x27, 0xe6, 0xe4, 0xc4, 0xa7, 0x27, 0x16, 0xc7, 0xe7, 0x64, 0xe6, 0x66, 0x96, 0x48, 0x30, 0x2a, 0x30, 0x6a, 0xb0, 0x04, 0x09, 0x80, 0xa4, 0x9c, 0x13, 0x73, 0x72, - 0xdc, 0x13, 0x8b, 0x7d, 0x40, 0xe2, 0x56, 0x2c, 0x33, 0x16, 0xc8, 0x33, 0x38, 0x05, 0x9c, 0x78, + 0xdc, 0x13, 0x8b, 0x7d, 0x40, 0xe2, 0x56, 0x2c, 0x33, 0x16, 0xc8, 0x33, 0x38, 0x05, 0x9f, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, - 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x59, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, - 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0xd4, 0x49, 0xba, 0xf9, 0x45, 0xe9, 0x30, 0xb6, 0x7e, 0x05, 0x86, - 0x37, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xee, 0x32, 0x06, 0x04, 0x00, 0x00, 0xff, - 0xff, 0xc5, 0xbf, 0xd1, 0xee, 0xee, 0x00, 0x00, 0x00, + 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x65, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, + 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0xd4, 0x49, 0xba, 0xf9, 0x45, 0xe9, 0x30, 0xb6, 0x7e, 0x99, 0x91, + 0x7e, 0x05, 0x86, 0x4f, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x4e, 0x33, 0x06, 0x04, + 0x00, 0x00, 0xff, 0xff, 0x83, 0x7c, 0x09, 0xaa, 0xf1, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/contractmanager/types/query.pb.go b/x/contractmanager/types/query.pb.go index 9e7f03cd8..574b54e67 100644 --- a/x/contractmanager/types/query.pb.go +++ b/x/contractmanager/types/query.pb.go @@ -242,40 +242,41 @@ func init() { } var fileDescriptor_f9524a427f219917 = []byte{ - // 527 bytes of a gzipped FileDescriptorProto + // 530 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x94, 0xc1, 0x6a, 0x13, 0x41, 0x18, 0xc7, 0x33, 0x69, 0x1b, 0xdb, 0x29, 0x28, 0x8c, 0x11, 0x43, 0xd0, 0x4d, 0xba, 0x55, 0x1b, - 0xad, 0x99, 0xa1, 0x29, 0x88, 0x08, 0x82, 0xe6, 0x50, 0xf1, 0x16, 0x17, 0x4f, 0x5e, 0x64, 0x92, - 0x8c, 0xe3, 0x42, 0x33, 0xb3, 0x9d, 0x99, 0x15, 0x4b, 0xe9, 0xc5, 0x9b, 0xe0, 0x41, 0x50, 0xf0, + 0xad, 0x99, 0xa1, 0xe9, 0x45, 0x05, 0x41, 0x73, 0xa8, 0x78, 0xab, 0xab, 0x27, 0x2f, 0x32, 0x49, + 0xc6, 0x71, 0xa1, 0x99, 0xd9, 0xce, 0xcc, 0x16, 0x4b, 0xe9, 0xc5, 0x9b, 0xe0, 0x41, 0x50, 0xf0, 0x05, 0xf4, 0x01, 0x7c, 0x8b, 0x1e, 0x0b, 0x5e, 0x3c, 0x89, 0x24, 0x3e, 0x88, 0x64, 0x66, 0xd2, 0x36, 0x29, 0xdb, 0xc4, 0x83, 0xbd, 0xed, 0xce, 0xfe, 0xbf, 0xef, 0xff, 0x9b, 0xff, 0xf7, 0xb1, - 0x70, 0x55, 0xb0, 0xd4, 0x28, 0x29, 0x48, 0x47, 0x0a, 0xa3, 0x68, 0xc7, 0xf4, 0xa8, 0xa0, 0x9c, - 0x29, 0xb2, 0x93, 0x32, 0xb5, 0x8b, 0x13, 0x25, 0x8d, 0x44, 0x57, 0xbd, 0x08, 0x4f, 0x88, 0xca, - 0x45, 0x2e, 0xb9, 0xb4, 0x1a, 0x32, 0x7c, 0x72, 0xf2, 0xf2, 0x35, 0x2e, 0x25, 0xdf, 0x66, 0x84, - 0x26, 0x31, 0xa1, 0x42, 0x48, 0x43, 0x4d, 0x2c, 0x85, 0xf6, 0x5f, 0xef, 0x74, 0xa4, 0xee, 0x49, - 0x4d, 0xda, 0x54, 0x33, 0xe7, 0x42, 0xde, 0x6c, 0xb4, 0x99, 0xa1, 0x1b, 0x24, 0xa1, 0x3c, 0x16, - 0x56, 0xec, 0xb5, 0x37, 0xb2, 0xe8, 0x12, 0xaa, 0x68, 0x6f, 0xd4, 0xf1, 0x66, 0x96, 0xea, 0x15, - 0x8d, 0xb7, 0x53, 0xc5, 0x9c, 0x2c, 0x2c, 0x42, 0xf4, 0x6c, 0x68, 0xd7, 0xb2, 0xb5, 0x11, 0xdb, - 0x49, 0x99, 0x36, 0xe1, 0x73, 0x78, 0x79, 0xec, 0x54, 0x27, 0x52, 0x68, 0x86, 0x1e, 0xc2, 0x82, - 0xf3, 0x28, 0x81, 0x2a, 0xa8, 0x2d, 0x37, 0x2a, 0x38, 0x23, 0x03, 0xec, 0x0a, 0x9b, 0xf3, 0x07, - 0xbf, 0x2a, 0xb9, 0xc8, 0x17, 0x85, 0x5f, 0x00, 0x2c, 0xda, 0xb6, 0x5b, 0x0e, 0x61, 0x64, 0x87, - 0x4a, 0xf0, 0x02, 0xed, 0x76, 0x15, 0xd3, 0xae, 0xf1, 0x52, 0x34, 0x7a, 0x45, 0xd7, 0x21, 0xf4, - 0xbc, 0x2f, 0xe3, 0x6e, 0x29, 0x5f, 0x05, 0xb5, 0xf9, 0x68, 0xc9, 0x9f, 0x3c, 0xed, 0xa2, 0x2d, - 0x08, 0x8f, 0xe3, 0x29, 0xcd, 0x59, 0xa8, 0x5b, 0xd8, 0x65, 0x89, 0x87, 0x59, 0x62, 0x37, 0x31, - 0x9f, 0x25, 0x6e, 0x51, 0xce, 0xbc, 0x69, 0x74, 0xa2, 0x32, 0xfc, 0x0a, 0xe0, 0x95, 0x09, 0x32, - 0x7f, 0xe5, 0x26, 0x5c, 0xf4, 0x76, 0x43, 0xb6, 0xb9, 0xda, 0x72, 0xa3, 0x9a, 0x79, 0x69, 0x5f, - 0xec, 0x6f, 0x7d, 0x54, 0x87, 0x9e, 0x8c, 0x51, 0xe6, 0x2d, 0xe5, 0xda, 0x54, 0x4a, 0x07, 0x70, - 0x12, 0xb3, 0xf1, 0x7e, 0x01, 0x2e, 0x58, 0x4c, 0xf4, 0x01, 0xc0, 0x82, 0xcb, 0x18, 0xad, 0x67, - 0xf2, 0x9c, 0x1e, 0x6c, 0xf9, 0xee, 0x6c, 0x62, 0xe7, 0x1d, 0xae, 0xbd, 0xfb, 0xf1, 0xe7, 0x53, - 0x7e, 0x05, 0x55, 0xc8, 0xd9, 0x2b, 0x87, 0xbe, 0x03, 0x78, 0xf1, 0xb1, 0x1b, 0x99, 0x0f, 0x01, - 0xd5, 0xcf, 0x76, 0x9a, 0x58, 0x81, 0x32, 0x9e, 0x55, 0xee, 0xd1, 0x1e, 0x59, 0xb4, 0x07, 0xe8, - 0x3e, 0x99, 0xb2, 0xe7, 0x9a, 0xec, 0xf9, 0x65, 0xda, 0x27, 0x7b, 0xc7, 0xbb, 0xb4, 0x8f, 0xbe, - 0x01, 0x78, 0x69, 0x9c, 0x59, 0xff, 0x6f, 0xe8, 0x4d, 0x0b, 0x5d, 0x47, 0xeb, 0xff, 0x00, 0x8d, - 0x3e, 0x03, 0xb8, 0x78, 0x5e, 0x80, 0xb7, 0x2d, 0xe0, 0x2a, 0x5a, 0x99, 0x0a, 0xd8, 0x6c, 0x1d, - 0xf4, 0x03, 0x70, 0xd8, 0x0f, 0xc0, 0xef, 0x7e, 0x00, 0x3e, 0x0e, 0x82, 0xdc, 0xe1, 0x20, 0xc8, - 0xfd, 0x1c, 0x04, 0xb9, 0x17, 0xf7, 0x78, 0x6c, 0x5e, 0xa7, 0x6d, 0xdc, 0x91, 0xbd, 0x51, 0x9b, - 0xba, 0x54, 0xfc, 0xa8, 0xe5, 0xdb, 0x53, 0x4d, 0xcd, 0x6e, 0xc2, 0x74, 0xbb, 0x60, 0xff, 0x48, - 0x9b, 0x7f, 0x03, 0x00, 0x00, 0xff, 0xff, 0xa3, 0xb5, 0xbb, 0x34, 0x7e, 0x05, 0x00, 0x00, + 0x70, 0x59, 0xb0, 0xd4, 0x28, 0x29, 0x48, 0x5b, 0x0a, 0xa3, 0x68, 0xdb, 0x74, 0xa9, 0xa0, 0x9c, + 0x29, 0xb2, 0x9d, 0x32, 0xb5, 0x8b, 0x13, 0x25, 0x8d, 0x44, 0x57, 0xbd, 0x08, 0x8f, 0x89, 0xca, + 0x45, 0x2e, 0xb9, 0xb4, 0x1a, 0x32, 0x78, 0x72, 0xf2, 0xf2, 0x35, 0x2e, 0x25, 0xdf, 0x62, 0x84, + 0x26, 0x31, 0xa1, 0x42, 0x48, 0x43, 0x4d, 0x2c, 0x85, 0xf6, 0x5f, 0xef, 0xb4, 0xa5, 0xee, 0x4a, + 0x4d, 0x5a, 0x54, 0x33, 0xe7, 0x42, 0x76, 0xd6, 0x5a, 0xcc, 0xd0, 0x35, 0x92, 0x50, 0x1e, 0x0b, + 0x2b, 0xf6, 0xda, 0x1b, 0x59, 0x74, 0x09, 0x55, 0xb4, 0x3b, 0xec, 0x78, 0x33, 0x4b, 0xf5, 0x9a, + 0xc6, 0x5b, 0xa9, 0x62, 0x4e, 0x16, 0x16, 0x21, 0x7a, 0x36, 0xb0, 0xdb, 0xb4, 0xb5, 0x11, 0xdb, + 0x4e, 0x99, 0x36, 0xe1, 0x0b, 0x78, 0x79, 0xe4, 0x54, 0x27, 0x52, 0x68, 0x86, 0x1e, 0xc2, 0x82, + 0xf3, 0x28, 0x81, 0x2a, 0xa8, 0x2d, 0x36, 0x2a, 0x38, 0x23, 0x03, 0xec, 0x0a, 0x9b, 0xb3, 0x07, + 0xbf, 0x2a, 0xb9, 0xc8, 0x17, 0x85, 0x5f, 0x00, 0x2c, 0xda, 0xb6, 0x1b, 0x0e, 0x61, 0x68, 0x87, + 0x4a, 0xf0, 0x02, 0xed, 0x74, 0x14, 0xd3, 0xae, 0xf1, 0x42, 0x34, 0x7c, 0x45, 0xd7, 0x21, 0xf4, + 0xbc, 0xaf, 0xe2, 0x4e, 0x29, 0x5f, 0x05, 0xb5, 0xd9, 0x68, 0xc1, 0x9f, 0x3c, 0xed, 0xa0, 0x0d, + 0x08, 0x8f, 0xe3, 0x29, 0xcd, 0x58, 0xa8, 0x5b, 0xd8, 0x65, 0x89, 0x07, 0x59, 0x62, 0x37, 0x31, + 0x9f, 0x25, 0xde, 0xa4, 0x9c, 0x79, 0xd3, 0xe8, 0x44, 0x65, 0xf8, 0x15, 0xc0, 0x2b, 0x63, 0x64, + 0xfe, 0xca, 0x4d, 0x38, 0xef, 0xed, 0x06, 0x6c, 0x33, 0xb5, 0xc5, 0x46, 0x35, 0xf3, 0xd2, 0xbe, + 0xd8, 0xdf, 0xfa, 0xa8, 0x0e, 0x3d, 0x19, 0xa1, 0xcc, 0x5b, 0xca, 0x95, 0x89, 0x94, 0x0e, 0xe0, + 0x24, 0x66, 0xe3, 0xfd, 0x1c, 0x9c, 0xb3, 0x98, 0xe8, 0x03, 0x80, 0x05, 0x97, 0x31, 0x5a, 0xcd, + 0xe4, 0x39, 0x3d, 0xd8, 0xf2, 0xdd, 0xe9, 0xc4, 0xce, 0x3b, 0x5c, 0x79, 0xf7, 0xe3, 0xcf, 0xa7, + 0xfc, 0x12, 0xaa, 0x90, 0xb3, 0x57, 0x0e, 0x7d, 0x07, 0xf0, 0xe2, 0x63, 0x37, 0x32, 0x1f, 0x02, + 0xaa, 0x9f, 0xed, 0x34, 0xb6, 0x02, 0x65, 0x3c, 0xad, 0xdc, 0xa3, 0x3d, 0xb2, 0x68, 0x0f, 0xd0, + 0x3d, 0x32, 0x61, 0xcf, 0x35, 0xd9, 0xf3, 0xcb, 0xb4, 0x4f, 0xf6, 0x8e, 0x77, 0x69, 0x1f, 0x7d, + 0x03, 0xf0, 0xd2, 0x28, 0xb3, 0xfe, 0xdf, 0xd0, 0xeb, 0x16, 0xba, 0x8e, 0x56, 0xff, 0x01, 0x1a, + 0x7d, 0x06, 0x70, 0xfe, 0xbc, 0x00, 0x6f, 0x5b, 0xc0, 0x65, 0xb4, 0x34, 0x11, 0xb0, 0xf9, 0xfc, + 0xa0, 0x17, 0x80, 0xc3, 0x5e, 0x00, 0x7e, 0xf7, 0x02, 0xf0, 0xb1, 0x1f, 0xe4, 0x0e, 0xfb, 0x41, + 0xee, 0x67, 0x3f, 0xc8, 0xbd, 0xbc, 0xcf, 0x63, 0xf3, 0x26, 0x6d, 0xe1, 0xb6, 0xec, 0x0e, 0xdb, + 0xd4, 0xa5, 0xe2, 0x47, 0x2d, 0x77, 0x1a, 0xe4, 0xed, 0xa9, 0xbe, 0x66, 0x37, 0x61, 0xba, 0x55, + 0xb0, 0x3f, 0xa5, 0xf5, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x07, 0xab, 0xdb, 0xb1, 0x81, 0x05, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/contractmanager/types/tx.pb.go b/x/contractmanager/types/tx.pb.go index 9120f9799..64e619d3a 100644 --- a/x/contractmanager/types/tx.pb.go +++ b/x/contractmanager/types/tx.pb.go @@ -139,7 +139,7 @@ func init() { func init() { proto.RegisterFile("neutron/contractmanager/tx.proto", fileDescriptor_4dc444ed708d435f) } var fileDescriptor_4dc444ed708d435f = []byte{ - // 344 bytes of a gzipped FileDescriptorProto + // 347 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc8, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0x4a, 0x4c, 0x2e, 0xc9, 0x4d, 0xcc, 0x4b, 0x4c, 0x4f, 0x2d, 0xd2, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x87, 0xaa, @@ -156,12 +156,12 @@ var fileDescriptor_4dc444ed708d435f = []byte{ 0x54, 0xa7, 0x95, 0x51, 0xd3, 0xf3, 0x0d, 0x5a, 0x08, 0x33, 0xbb, 0x9e, 0x6f, 0xd0, 0x92, 0x47, 0x0f, 0x1d, 0x34, 0xf7, 0x2a, 0x49, 0x72, 0x89, 0xa3, 0x09, 0x05, 0xa5, 0x16, 0x17, 0xe4, 0xe7, 0x15, 0xa7, 0x1a, 0x15, 0x72, 0x31, 0xfb, 0x16, 0xa7, 0x0b, 0x65, 0x71, 0xf1, 0xa0, 0xf8, 0x50, - 0x03, 0xa7, 0xcb, 0xd0, 0x0c, 0x92, 0x32, 0x20, 0x56, 0x25, 0xcc, 0x4a, 0xa7, 0x80, 0x13, 0x8f, + 0x03, 0xa7, 0xcb, 0xd0, 0x0c, 0x92, 0x32, 0x20, 0x56, 0x25, 0xcc, 0x4a, 0xa7, 0xe0, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, - 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0x32, 0x4b, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, - 0x4b, 0xce, 0xcf, 0xd5, 0x87, 0x9a, 0xaa, 0x9b, 0x5f, 0x94, 0x0e, 0x63, 0xeb, 0x57, 0x60, 0x26, - 0xa1, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0x70, 0x54, 0x19, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, - 0xb8, 0x57, 0x30, 0x76, 0x6a, 0x02, 0x00, 0x00, + 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xb2, 0x4c, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, + 0x4b, 0xce, 0xcf, 0xd5, 0x87, 0x9a, 0xaa, 0x9b, 0x5f, 0x94, 0x0e, 0x63, 0xeb, 0x97, 0x19, 0xe9, + 0x57, 0x60, 0xa6, 0xa2, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0x70, 0x6c, 0x19, 0x03, 0x02, 0x00, + 0x00, 0xff, 0xff, 0x12, 0x2c, 0x8a, 0xb7, 0x6d, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/contractmanager/types/v1/failure.pb.go b/x/contractmanager/types/v1/failure.pb.go index 90e3cd2e4..22dbb42ea 100644 --- a/x/contractmanager/types/v1/failure.pb.go +++ b/x/contractmanager/types/v1/failure.pb.go @@ -114,7 +114,7 @@ func init() { } var fileDescriptor_c0f2c436fd0f28b7 = []byte{ - // 245 bytes of a gzipped FileDescriptorProto + // 248 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0xc8, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0x4a, 0x4c, 0x2e, 0xc9, 0x4d, 0xcc, 0x4b, 0x4c, 0x4f, 0x2d, 0xd2, 0x2f, 0x33, 0xd4, 0x4f, 0x4b, 0xcc, 0xcc, 0x29, 0x2d, 0x4a, 0xd5, 0x2b, @@ -125,12 +125,12 @@ var fileDescriptor_c0f2c436fd0f28b7 = []byte{ 0xb8, 0x42, 0x7c, 0x5c, 0x4c, 0x99, 0x29, 0x12, 0xcc, 0x0a, 0x8c, 0x1a, 0x2c, 0x41, 0x4c, 0x99, 0x29, 0x42, 0xa2, 0x5c, 0x6c, 0x89, 0xc9, 0xd9, 0x20, 0x43, 0x58, 0xc0, 0x62, 0xac, 0x89, 0xc9, 0xd9, 0x9e, 0x29, 0x42, 0x92, 0x5c, 0x1c, 0x20, 0xe1, 0x92, 0xca, 0x82, 0x54, 0x09, 0x56, 0xa8, - 0x09, 0xc9, 0xd9, 0x21, 0x95, 0x05, 0xa9, 0x4e, 0xc1, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, + 0x09, 0xc9, 0xd9, 0x21, 0x95, 0x05, 0xa9, 0x4e, 0x61, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, - 0x2c, 0xc7, 0x10, 0x65, 0x99, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x0f, - 0xf5, 0x87, 0x6e, 0x7e, 0x51, 0x3a, 0x8c, 0xad, 0x5f, 0x81, 0xe1, 0x7f, 0x90, 0xf9, 0xc5, 0xfa, - 0x65, 0x86, 0x49, 0x6c, 0x60, 0xef, 0x1b, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x99, 0x53, 0x32, - 0xf9, 0x2a, 0x01, 0x00, 0x00, + 0x2c, 0xc7, 0x10, 0x65, 0x93, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x0f, + 0xf5, 0x87, 0x6e, 0x7e, 0x51, 0x3a, 0x8c, 0xad, 0x5f, 0x66, 0xa4, 0x5f, 0x81, 0x11, 0x04, 0x20, + 0x2b, 0x8a, 0xf5, 0xcb, 0x0c, 0x93, 0xd8, 0xc0, 0x21, 0x60, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, + 0x2b, 0x08, 0x19, 0x93, 0x2d, 0x01, 0x00, 0x00, } func (m *Failure) Marshal() (dAtA []byte, err error) { diff --git a/x/cron/client/cli/query.go b/x/cron/client/cli/query.go index 14c16d932..f83e03d1b 100644 --- a/x/cron/client/cli/query.go +++ b/x/cron/client/cli/query.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/x/cron/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/cron/client/cli/query_params.go b/x/cron/client/cli/query_params.go index 05fd55e10..cc9e0bc30 100644 --- a/x/cron/client/cli/query_params.go +++ b/x/cron/client/cli/query_params.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/x/cron/types" ) func CmdQueryParams() *cobra.Command { diff --git a/x/cron/client/cli/query_schedule.go b/x/cron/client/cli/query_schedule.go index fb81b16be..438337f94 100644 --- a/x/cron/client/cli/query_schedule.go +++ b/x/cron/client/cli/query_schedule.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/x/cron/types" ) func CmdListSchedule() *cobra.Command { diff --git a/x/cron/client/cli/query_schedule_test.go b/x/cron/client/cli/query_schedule_test.go index 7d6edec95..a1300e7eb 100644 --- a/x/cron/client/cli/query_schedule_test.go +++ b/x/cron/client/cli/query_schedule_test.go @@ -12,10 +12,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/testutil/cron/network" - "github.com/neutron-org/neutron/testutil/cron/nullify" - "github.com/neutron-org/neutron/x/cron/client/cli" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/testutil/cron/network" + "github.com/neutron-org/neutron/v2/testutil/cron/nullify" + "github.com/neutron-org/neutron/v2/x/cron/client/cli" + "github.com/neutron-org/neutron/v2/x/cron/types" ) // Prevent strconv unused error diff --git a/x/cron/client/cli/tx.go b/x/cron/client/cli/tx.go index a14b8b144..c9ceb4273 100644 --- a/x/cron/client/cli/tx.go +++ b/x/cron/client/cli/tx.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/x/cron/types" ) // GetTxCmd returns the transaction commands for this module diff --git a/x/cron/genesis.go b/x/cron/genesis.go index 37c45ea79..d56869a48 100644 --- a/x/cron/genesis.go +++ b/x/cron/genesis.go @@ -3,8 +3,8 @@ package cron import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/cron/keeper" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/x/cron/keeper" + "github.com/neutron-org/neutron/v2/x/cron/types" ) // InitGenesis initializes the module's state from a provided genesis state. diff --git a/x/cron/genesis_test.go b/x/cron/genesis_test.go index 800906aa4..74f7b6f33 100644 --- a/x/cron/genesis_test.go +++ b/x/cron/genesis_test.go @@ -5,10 +5,10 @@ import ( "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/testutil/cron/keeper" - "github.com/neutron-org/neutron/testutil/cron/nullify" - "github.com/neutron-org/neutron/x/cron" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/testutil/cron/keeper" + "github.com/neutron-org/neutron/v2/testutil/cron/nullify" + "github.com/neutron-org/neutron/v2/x/cron" + "github.com/neutron-org/neutron/v2/x/cron/types" ) func TestGenesis(t *testing.T) { diff --git a/x/cron/keeper/grpc_query.go b/x/cron/keeper/grpc_query.go index 078f1c730..39b7a105a 100644 --- a/x/cron/keeper/grpc_query.go +++ b/x/cron/keeper/grpc_query.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/x/cron/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/cron/keeper/grpc_query_params.go b/x/cron/keeper/grpc_query_params.go index a34a75dff..5a0ccfc83 100644 --- a/x/cron/keeper/grpc_query_params.go +++ b/x/cron/keeper/grpc_query_params.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/x/cron/types" ) func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error) { diff --git a/x/cron/keeper/grpc_query_params_test.go b/x/cron/keeper/grpc_query_params_test.go index 19843d23a..5cd482530 100644 --- a/x/cron/keeper/grpc_query_params_test.go +++ b/x/cron/keeper/grpc_query_params_test.go @@ -3,12 +3,12 @@ package keeper_test import ( "testing" - testkeeper "github.com/neutron-org/neutron/testutil/cron/keeper" + testkeeper "github.com/neutron-org/neutron/v2/testutil/cron/keeper" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/x/cron/types" ) func TestParamsQuery(t *testing.T) { diff --git a/x/cron/keeper/grpc_query_schedule.go b/x/cron/keeper/grpc_query_schedule.go index a48fc80c7..dfa8aa8a4 100644 --- a/x/cron/keeper/grpc_query_schedule.go +++ b/x/cron/keeper/grpc_query_schedule.go @@ -9,7 +9,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/x/cron/types" ) func (k Keeper) Schedules(c context.Context, req *types.QuerySchedulesRequest) (*types.QuerySchedulesResponse, error) { diff --git a/x/cron/keeper/grpc_query_schedule_test.go b/x/cron/keeper/grpc_query_schedule_test.go index 7d7c26fea..74b762032 100644 --- a/x/cron/keeper/grpc_query_schedule_test.go +++ b/x/cron/keeper/grpc_query_schedule_test.go @@ -10,10 +10,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - testutil_keeper "github.com/neutron-org/neutron/testutil/cron/keeper" - "github.com/neutron-org/neutron/testutil/cron/nullify" - cronkeeper "github.com/neutron-org/neutron/x/cron/keeper" - "github.com/neutron-org/neutron/x/cron/types" + testutil_keeper "github.com/neutron-org/neutron/v2/testutil/cron/keeper" + "github.com/neutron-org/neutron/v2/testutil/cron/nullify" + cronkeeper "github.com/neutron-org/neutron/v2/x/cron/keeper" + "github.com/neutron-org/neutron/v2/x/cron/types" ) // Prevent strconv unused error diff --git a/x/cron/keeper/keeper.go b/x/cron/keeper/keeper.go index 28db8e5e0..70c1420f5 100644 --- a/x/cron/keeper/keeper.go +++ b/x/cron/keeper/keeper.go @@ -17,7 +17,7 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/x/cron/types" ) var ( diff --git a/x/cron/keeper/keeper_test.go b/x/cron/keeper/keeper_test.go index 856112079..36ceea28b 100644 --- a/x/cron/keeper/keeper_test.go +++ b/x/cron/keeper/keeper_test.go @@ -12,10 +12,10 @@ import ( "github.com/golang/mock/gomock" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/testutil" - testutil_keeper "github.com/neutron-org/neutron/testutil/cron/keeper" - mock_types "github.com/neutron-org/neutron/testutil/mocks/cron/types" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/testutil" + testutil_keeper "github.com/neutron-org/neutron/v2/testutil/cron/keeper" + mock_types "github.com/neutron-org/neutron/v2/testutil/mocks/cron/types" + "github.com/neutron-org/neutron/v2/x/cron/types" ) // ExecuteReadySchedules: diff --git a/x/cron/keeper/msg_server.go b/x/cron/keeper/msg_server.go index c75bf09ab..c3f353e7b 100644 --- a/x/cron/keeper/msg_server.go +++ b/x/cron/keeper/msg_server.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/x/cron/types" ) type msgServer struct { diff --git a/x/cron/keeper/params.go b/x/cron/keeper/params.go index 4aafba2fe..dee76cedd 100644 --- a/x/cron/keeper/params.go +++ b/x/cron/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/x/cron/types" ) // GetParams get all parameters as types.Params diff --git a/x/cron/keeper/params_test.go b/x/cron/keeper/params_test.go index aaf2c1a90..b8410ff2a 100644 --- a/x/cron/keeper/params_test.go +++ b/x/cron/keeper/params_test.go @@ -3,15 +3,15 @@ package keeper_test import ( "testing" - "github.com/neutron-org/neutron/testutil" + "github.com/neutron-org/neutron/v2/testutil" - "github.com/neutron-org/neutron/app" + "github.com/neutron-org/neutron/v2/app" - testkeeper "github.com/neutron-org/neutron/testutil/cron/keeper" + testkeeper "github.com/neutron-org/neutron/v2/testutil/cron/keeper" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/x/cron/types" ) func TestGetParams(t *testing.T) { diff --git a/x/cron/module.go b/x/cron/module.go index 126de14f0..2b389d890 100644 --- a/x/cron/module.go +++ b/x/cron/module.go @@ -20,9 +20,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/neutron-org/neutron/x/cron/client/cli" - "github.com/neutron-org/neutron/x/cron/keeper" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/x/cron/client/cli" + "github.com/neutron-org/neutron/v2/x/cron/keeper" + "github.com/neutron-org/neutron/v2/x/cron/types" ) var ( diff --git a/x/cron/module_simulation.go b/x/cron/module_simulation.go index 71ae781a3..001c2facd 100644 --- a/x/cron/module_simulation.go +++ b/x/cron/module_simulation.go @@ -8,8 +8,8 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - cronsimulation "github.com/neutron-org/neutron/x/cron/simulation" - "github.com/neutron-org/neutron/x/cron/types" + cronsimulation "github.com/neutron-org/neutron/v2/x/cron/simulation" + "github.com/neutron-org/neutron/v2/x/cron/types" ) // avoid unused import issue diff --git a/x/cron/types/genesis.pb.go b/x/cron/types/genesis.pb.go index 57d8640b2..b1f95ede2 100644 --- a/x/cron/types/genesis.pb.go +++ b/x/cron/types/genesis.pb.go @@ -84,7 +84,7 @@ func init() { func init() { proto.RegisterFile("neutron/cron/genesis.proto", fileDescriptor_7c41f2dea8ad83c2) } var fileDescriptor_7c41f2dea8ad83c2 = []byte{ - // 228 bytes of a gzipped FileDescriptorProto + // 231 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xca, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x06, 0x11, 0xe9, 0xa9, 0x79, 0xa9, 0xc5, 0x99, 0xc5, 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, 0x42, 0x3c, 0x50, 0x39, 0x3d, 0x90, 0x9c, 0x94, 0x48, 0x7a, 0x7e, 0x7a, @@ -94,12 +94,12 @@ var fileDescriptor_7c41f2dea8ad83c2 = []byte{ 0xc5, 0x03, 0x53, 0xe2, 0x93, 0x59, 0x5c, 0x22, 0xc1, 0xa4, 0xc0, 0xac, 0xc1, 0x6d, 0x24, 0xa6, 0x87, 0xec, 0x06, 0xbd, 0x60, 0xa8, 0x0a, 0x27, 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, 0x50, 0x74, 0x08, 0x19, 0x71, 0xb1, 0x41, 0xec, 0x97, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x36, 0x12, 0x41, 0xd5, - 0x1b, 0x00, 0x96, 0x83, 0xea, 0x84, 0xaa, 0x74, 0x72, 0x3d, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, + 0x1b, 0x00, 0x96, 0x83, 0xea, 0x84, 0xaa, 0x74, 0xf2, 0x38, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, - 0x63, 0x39, 0x86, 0x28, 0xed, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, - 0xa8, 0x39, 0xba, 0xf9, 0x45, 0xe9, 0x30, 0xb6, 0x7e, 0x05, 0xc4, 0x5b, 0x25, 0x95, 0x05, 0xa9, - 0xc5, 0x49, 0x6c, 0x60, 0x4f, 0x19, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x91, 0x3a, 0xa2, 0x0f, - 0x4e, 0x01, 0x00, 0x00, + 0x63, 0x39, 0x86, 0x28, 0xbd, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, + 0xa8, 0x39, 0xba, 0xf9, 0x45, 0xe9, 0x30, 0xb6, 0x7e, 0x99, 0x91, 0x7e, 0x05, 0xc4, 0x67, 0x25, + 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0x7f, 0x19, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x1b, + 0x5d, 0x8f, 0x23, 0x51, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/cron/types/genesis_test.go b/x/cron/types/genesis_test.go index 8a748d687..66ca1d632 100644 --- a/x/cron/types/genesis_test.go +++ b/x/cron/types/genesis_test.go @@ -3,11 +3,11 @@ package types_test import ( "testing" - "github.com/neutron-org/neutron/app" + "github.com/neutron-org/neutron/v2/app" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/cron/types" + "github.com/neutron-org/neutron/v2/x/cron/types" ) func TestGenesisState_Validate(t *testing.T) { diff --git a/x/cron/types/params.pb.go b/x/cron/types/params.pb.go index 79fef4520..f250afe41 100644 --- a/x/cron/types/params.pb.go +++ b/x/cron/types/params.pb.go @@ -85,7 +85,7 @@ func init() { func init() { proto.RegisterFile("neutron/cron/params.proto", fileDescriptor_efa4f5c14a68f6e5) } var fileDescriptor_efa4f5c14a68f6e5 = []byte{ - // 195 bytes of a gzipped FileDescriptorProto + // 198 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcc, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x06, 0x11, 0x05, 0x89, 0x45, 0x89, 0xb9, 0xc5, 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, 0x42, 0x3c, 0x50, 0x29, 0x3d, 0x90, 0x94, 0x94, 0x48, 0x7a, 0x7e, 0x7a, 0x3e, @@ -93,12 +93,12 @@ var fileDescriptor_efa4f5c14a68f6e5 = []byte{ 0x12, 0x28, 0x4e, 0x4d, 0x2e, 0x2d, 0xca, 0x2c, 0xa9, 0x8c, 0x4f, 0x4c, 0x49, 0x29, 0x4a, 0x2d, 0x2e, 0x96, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0c, 0xe2, 0x87, 0x89, 0x3b, 0x42, 0x84, 0x85, 0x44, 0xb8, 0x58, 0x73, 0x32, 0x73, 0x33, 0x4b, 0x24, 0x98, 0x14, 0x18, 0x35, 0x58, 0x82, 0x20, 0x1c, - 0x2b, 0x96, 0x19, 0x0b, 0xe4, 0x19, 0x9c, 0x5c, 0x4f, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, + 0x2b, 0x96, 0x19, 0x0b, 0xe4, 0x19, 0x9c, 0x3c, 0x4e, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, - 0x8e, 0x21, 0x4a, 0x3b, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0xea, - 0x32, 0xdd, 0xfc, 0xa2, 0x74, 0x18, 0x5b, 0xbf, 0x02, 0xe2, 0x85, 0x92, 0xca, 0x82, 0xd4, 0xe2, - 0x24, 0x36, 0xb0, 0xf3, 0x8c, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x68, 0xd5, 0xf8, 0x81, 0xdf, - 0x00, 0x00, 0x00, + 0x8e, 0x21, 0x4a, 0x2f, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0xea, + 0x32, 0xdd, 0xfc, 0xa2, 0x74, 0x18, 0x5b, 0xbf, 0xcc, 0x48, 0xbf, 0x02, 0xe2, 0x8b, 0x92, 0xca, + 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0x0b, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x03, 0x42, + 0xc2, 0xcb, 0xe2, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/cron/types/query.pb.go b/x/cron/types/query.pb.go index 70ac3b75b..424c0e9b8 100644 --- a/x/cron/types/query.pb.go +++ b/x/cron/types/query.pb.go @@ -308,38 +308,38 @@ func init() { func init() { proto.RegisterFile("neutron/cron/query.proto", fileDescriptor_e02f33367c9498fe) } var fileDescriptor_e02f33367c9498fe = []byte{ - // 493 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x93, 0xcf, 0x6b, 0x13, 0x41, - 0x14, 0xc7, 0xb3, 0xb1, 0x86, 0xe6, 0xe9, 0xe9, 0x19, 0x63, 0x5c, 0xeb, 0xb6, 0xae, 0xb6, 0x8a, - 0xd2, 0x19, 0x1a, 0x2f, 0xe2, 0xb1, 0xa0, 0xc5, 0x5b, 0x8d, 0x9e, 0xbc, 0xc8, 0x24, 0x0e, 0xdb, - 0x60, 0x33, 0xb3, 0xdd, 0x99, 0x2d, 0x16, 0x11, 0xc4, 0xbf, 0x40, 0xf0, 0xec, 0xff, 0xd3, 0x63, - 0xc1, 0x8b, 0x27, 0x91, 0xc4, 0xbb, 0xff, 0x42, 0xd9, 0xf9, 0x91, 0x66, 0x9b, 0x25, 0xb9, 0x84, - 0x21, 0xef, 0xfb, 0xbe, 0xdf, 0xcf, 0xbc, 0x79, 0x0b, 0x1d, 0xc1, 0x73, 0x9d, 0x49, 0x41, 0x07, - 0xc5, 0xcf, 0x51, 0xce, 0xb3, 0x13, 0x92, 0x66, 0x52, 0x4b, 0xbc, 0xee, 0x2a, 0xa4, 0xa8, 0x84, - 0xad, 0x44, 0x26, 0xd2, 0x14, 0x68, 0x71, 0xb2, 0x9a, 0x70, 0x2d, 0x91, 0x32, 0x39, 0xe4, 0x94, - 0xa5, 0x43, 0xca, 0x84, 0x90, 0x9a, 0xe9, 0xa1, 0x14, 0xca, 0x55, 0x1f, 0x0f, 0xa4, 0x1a, 0x49, - 0x45, 0xfb, 0x4c, 0x71, 0x6b, 0x4d, 0x8f, 0x77, 0xfa, 0x5c, 0xb3, 0x1d, 0x9a, 0xb2, 0x64, 0x28, - 0x8c, 0xd8, 0x69, 0x6f, 0x97, 0x38, 0x52, 0x96, 0xb1, 0x91, 0xb7, 0xb9, 0x53, 0x2a, 0xa9, 0xc1, - 0x01, 0xff, 0x90, 0x1f, 0x72, 0x5b, 0x8c, 0x5b, 0x80, 0xaf, 0x0b, 0xe7, 0x7d, 0xd3, 0xd1, 0xe3, - 0x47, 0x39, 0x57, 0x3a, 0x7e, 0x05, 0x37, 0x4a, 0xff, 0xaa, 0x54, 0x0a, 0xc5, 0xb1, 0x0b, 0x0d, - 0xeb, 0xdc, 0x09, 0x36, 0x82, 0x47, 0xd7, 0xba, 0x2d, 0x32, 0x7b, 0x47, 0x62, 0xd5, 0xbb, 0x2b, - 0xa7, 0x7f, 0xd6, 0x6b, 0x3d, 0xa7, 0x8c, 0xb7, 0xe1, 0x96, 0xb1, 0xda, 0xe3, 0xfa, 0x8d, 0x8b, - 0x76, 0x29, 0x88, 0xb0, 0x22, 0xd8, 0x88, 0x1b, 0xb3, 0x66, 0xcf, 0x9c, 0xe3, 0xb7, 0xd0, 0x99, - 0x97, 0xbb, 0xf8, 0x67, 0xb0, 0xea, 0xe9, 0x1d, 0x40, 0xbb, 0x0c, 0xe0, 0x3b, 0x1c, 0xc2, 0x54, - 0x1d, 0xbf, 0x87, 0x9b, 0xc6, 0xd5, 0x0b, 0xfc, 0x45, 0xf1, 0x25, 0xc0, 0xc5, 0x28, 0x9d, 0xe9, - 0x16, 0xb1, 0x73, 0x27, 0xc5, 0xdc, 0x89, 0x7d, 0x52, 0x37, 0x77, 0xb2, 0xcf, 0x12, 0x8f, 0xdf, - 0x9b, 0xe9, 0x8c, 0x7f, 0x06, 0xd0, 0xbe, 0x9c, 0xe0, 0xa8, 0x9f, 0x43, 0xd3, 0x73, 0x14, 0x73, - 0xbb, 0xb2, 0x14, 0xfb, 0x42, 0x8e, 0x7b, 0x25, 0xbc, 0xba, 0xc1, 0x7b, 0xb8, 0x14, 0xcf, 0x06, - 0xcf, 0xf2, 0x75, 0xff, 0xd7, 0xe1, 0xaa, 0xe1, 0xc3, 0x8f, 0xd0, 0xb0, 0xef, 0x84, 0x1b, 0x65, - 0x8a, 0xf9, 0x35, 0x08, 0xef, 0x2d, 0x50, 0xd8, 0x90, 0x78, 0xed, 0xdb, 0xaf, 0x7f, 0x3f, 0xea, - 0x6d, 0x6c, 0xd1, 0x8a, 0x05, 0xc4, 0xaf, 0x01, 0xac, 0xfa, 0xdb, 0xe1, 0x66, 0x85, 0xdb, 0xfc, - 0x56, 0x84, 0x5b, 0xcb, 0x64, 0x2e, 0x79, 0xd3, 0x24, 0xaf, 0xe3, 0x5d, 0x5a, 0xb9, 0xdf, 0xf4, - 0x73, 0xb1, 0x4f, 0x5f, 0xf0, 0x18, 0x9a, 0xd3, 0x37, 0xc1, 0xfb, 0x15, 0xde, 0x97, 0x77, 0x22, - 0x7c, 0xb0, 0x58, 0xe4, 0xe2, 0x23, 0x13, 0xdf, 0xc1, 0x76, 0x75, 0xfc, 0xee, 0x8b, 0xd3, 0x71, - 0x14, 0x9c, 0x8d, 0xa3, 0xe0, 0xef, 0x38, 0x0a, 0xbe, 0x4f, 0xa2, 0xda, 0xd9, 0x24, 0xaa, 0xfd, - 0x9e, 0x44, 0xb5, 0x77, 0x4f, 0x92, 0xa1, 0x3e, 0xc8, 0xfb, 0x64, 0x20, 0x47, 0xbe, 0x77, 0x5b, - 0x66, 0xc9, 0xd4, 0xe7, 0x93, 0x75, 0xd2, 0x27, 0x29, 0x57, 0xfd, 0x86, 0xf9, 0x4c, 0x9f, 0x9e, - 0x07, 0x00, 0x00, 0xff, 0xff, 0x04, 0x51, 0x7a, 0x89, 0x68, 0x04, 0x00, 0x00, + // 494 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x93, 0xbf, 0x6e, 0x13, 0x41, + 0x10, 0xc6, 0x7d, 0x26, 0x58, 0xf1, 0x40, 0x35, 0x18, 0x63, 0x8e, 0x70, 0x09, 0x07, 0x09, 0x08, + 0x29, 0xbb, 0x8a, 0x69, 0x10, 0x65, 0x0a, 0x02, 0x5d, 0x30, 0x54, 0x34, 0x68, 0x6d, 0x56, 0x17, + 0x8b, 0x78, 0xf7, 0x72, 0xbb, 0x67, 0x11, 0x21, 0x24, 0xc4, 0x13, 0x20, 0x51, 0xf3, 0x3e, 0x29, + 0x23, 0xd1, 0x50, 0x21, 0x64, 0xd3, 0xf3, 0x0a, 0xe8, 0xf6, 0x8f, 0xe3, 0x8b, 0x4f, 0x76, 0x63, + 0xad, 0x3c, 0xdf, 0x7c, 0xdf, 0x6f, 0x67, 0xe7, 0xa0, 0x23, 0x78, 0xae, 0x33, 0x29, 0xe8, 0xa0, + 0xf8, 0x39, 0xc9, 0x79, 0x76, 0x4a, 0xd2, 0x4c, 0x6a, 0x89, 0xd7, 0x5d, 0x85, 0x14, 0x95, 0xb0, + 0x95, 0xc8, 0x44, 0x9a, 0x02, 0x2d, 0x4e, 0x56, 0x13, 0x6e, 0x24, 0x52, 0x26, 0xc7, 0x9c, 0xb2, + 0x74, 0x48, 0x99, 0x10, 0x52, 0x33, 0x3d, 0x94, 0x42, 0xb9, 0xea, 0xe3, 0x81, 0x54, 0x23, 0xa9, + 0x68, 0x9f, 0x29, 0x6e, 0xad, 0xe9, 0x78, 0xaf, 0xcf, 0x35, 0xdb, 0xa3, 0x29, 0x4b, 0x86, 0xc2, + 0x88, 0x9d, 0xf6, 0x76, 0x89, 0x23, 0x65, 0x19, 0x1b, 0x79, 0x9b, 0x3b, 0xa5, 0x92, 0x1a, 0x1c, + 0xf1, 0xf7, 0xf9, 0x31, 0xb7, 0xc5, 0xb8, 0x05, 0xf8, 0xaa, 0x70, 0x3e, 0x34, 0x1d, 0x3d, 0x7e, + 0x92, 0x73, 0xa5, 0xe3, 0x97, 0x70, 0xa3, 0xf4, 0xaf, 0x4a, 0xa5, 0x50, 0x1c, 0xbb, 0xd0, 0xb0, + 0xce, 0x9d, 0x60, 0x2b, 0x78, 0x74, 0xad, 0xdb, 0x22, 0xf3, 0x77, 0x24, 0x56, 0xbd, 0xbf, 0x76, + 0xf6, 0x7b, 0xb3, 0xd6, 0x73, 0xca, 0x78, 0x17, 0x6e, 0x19, 0xab, 0x03, 0xae, 0x5f, 0xbb, 0x68, + 0x97, 0x82, 0x08, 0x6b, 0x82, 0x8d, 0xb8, 0x31, 0x6b, 0xf6, 0xcc, 0x39, 0x7e, 0x03, 0x9d, 0x45, + 0xb9, 0x8b, 0x7f, 0x0a, 0xeb, 0x9e, 0xde, 0x01, 0xb4, 0xcb, 0x00, 0xbe, 0xc3, 0x21, 0xcc, 0xd4, + 0xf1, 0x3b, 0xb8, 0x69, 0x5c, 0xbd, 0xc0, 0x5f, 0x14, 0x9f, 0x03, 0x5c, 0x8c, 0xd2, 0x99, 0xee, + 0x10, 0x3b, 0x77, 0x52, 0xcc, 0x9d, 0xd8, 0x27, 0x75, 0x73, 0x27, 0x87, 0x2c, 0xf1, 0xf8, 0xbd, + 0xb9, 0xce, 0xf8, 0x47, 0x00, 0xed, 0xcb, 0x09, 0x8e, 0xfa, 0x19, 0x34, 0x3d, 0x47, 0x31, 0xb7, + 0x2b, 0x2b, 0xb1, 0x2f, 0xe4, 0x78, 0x50, 0xc2, 0xab, 0x1b, 0xbc, 0x87, 0x2b, 0xf1, 0x6c, 0xf0, + 0x3c, 0x5f, 0xf7, 0x5f, 0x1d, 0xae, 0x1a, 0x3e, 0xfc, 0x00, 0x0d, 0xfb, 0x4e, 0xb8, 0x55, 0xa6, + 0x58, 0x5c, 0x83, 0xf0, 0xde, 0x12, 0x85, 0x0d, 0x89, 0x37, 0xbe, 0xfe, 0xfc, 0xfb, 0xbd, 0xde, + 0xc6, 0x16, 0xad, 0x58, 0x40, 0xfc, 0x12, 0xc0, 0xba, 0xbf, 0x1d, 0x6e, 0x57, 0xb8, 0x2d, 0x6e, + 0x45, 0xb8, 0xb3, 0x4a, 0xe6, 0x92, 0xb7, 0x4d, 0xf2, 0x26, 0xde, 0xa5, 0x95, 0xfb, 0x4d, 0x3f, + 0x15, 0xfb, 0xf4, 0x19, 0xc7, 0xd0, 0x9c, 0xbd, 0x09, 0xde, 0xaf, 0xf0, 0xbe, 0xbc, 0x13, 0xe1, + 0x83, 0xe5, 0x22, 0x17, 0x1f, 0x99, 0xf8, 0x0e, 0xb6, 0xab, 0xe3, 0xf7, 0x5f, 0x9c, 0x4d, 0xa2, + 0xe0, 0x7c, 0x12, 0x05, 0x7f, 0x26, 0x51, 0xf0, 0x6d, 0x1a, 0xd5, 0xce, 0xa7, 0x51, 0xed, 0xd7, + 0x34, 0xaa, 0xbd, 0x25, 0xc9, 0x50, 0x1f, 0xe5, 0x7d, 0x32, 0x90, 0x23, 0xdf, 0xbb, 0x2b, 0xb3, + 0x64, 0xe6, 0x33, 0xee, 0xd2, 0x8f, 0xd6, 0x4c, 0x9f, 0xa6, 0x5c, 0xf5, 0x1b, 0xe6, 0x4b, 0x7d, + 0xf2, 0x3f, 0x00, 0x00, 0xff, 0xff, 0x0c, 0xcf, 0x56, 0xd6, 0x6b, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/cron/types/schedule.pb.go b/x/cron/types/schedule.pb.go index 9fce68a6e..311d5278d 100644 --- a/x/cron/types/schedule.pb.go +++ b/x/cron/types/schedule.pb.go @@ -204,27 +204,27 @@ func init() { func init() { proto.RegisterFile("neutron/cron/schedule.proto", fileDescriptor_49ace1b59de613ef) } var fileDescriptor_49ace1b59de613ef = []byte{ - // 305 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x91, 0xc1, 0x4a, 0xc3, 0x30, - 0x18, 0xc7, 0x1b, 0xd7, 0x8d, 0x2d, 0x2a, 0x68, 0x1c, 0x52, 0x26, 0xc4, 0x52, 0x10, 0x0a, 0x62, - 0x0a, 0x7a, 0xf3, 0xd8, 0x31, 0xf0, 0xe2, 0xa5, 0xde, 0xbc, 0x8c, 0x2e, 0x0b, 0x69, 0x61, 0x6d, - 0x4a, 0x93, 0xc2, 0x7c, 0x0b, 0x9f, 0xc1, 0xa7, 0xd9, 0x71, 0x47, 0x4f, 0x22, 0xed, 0x8b, 0x48, - 0xd2, 0x4c, 0x04, 0x2f, 0xe1, 0xf7, 0xe7, 0xff, 0xfd, 0xf3, 0x7d, 0x5f, 0x02, 0xaf, 0x4a, 0xd6, - 0xa8, 0x5a, 0x94, 0x11, 0xd5, 0x87, 0xa4, 0x19, 0x5b, 0x37, 0x1b, 0x46, 0xaa, 0x5a, 0x28, 0x81, - 0x4e, 0xac, 0x49, 0xb4, 0x39, 0x9b, 0x72, 0xc1, 0x85, 0x31, 0x22, 0x4d, 0x7d, 0x4d, 0xf0, 0x01, - 0xe0, 0xf8, 0xc5, 0xc6, 0x10, 0x82, 0x6e, 0x99, 0x16, 0xcc, 0x03, 0x3e, 0x08, 0x27, 0x89, 0x61, - 0x74, 0x09, 0x47, 0x15, 0xab, 0x73, 0xb1, 0xf6, 0x8e, 0x7c, 0x10, 0xba, 0x89, 0x55, 0xe8, 0x11, - 0xba, 0x85, 0xe4, 0xd2, 0x1b, 0xf8, 0x83, 0xf0, 0xf8, 0xde, 0x27, 0x7f, 0x7b, 0x91, 0x67, 0xc9, - 0x17, 0x5b, 0x46, 0x1b, 0xc5, 0xe6, 0xa2, 0x54, 0x75, 0x4a, 0x55, 0xec, 0xee, 0xbe, 0xae, 0x9d, - 0xc4, 0x64, 0x10, 0x81, 0x17, 0x9b, 0x54, 0xaa, 0x25, 0xeb, 0x6b, 0x96, 0x19, 0xcb, 0x79, 0xa6, - 0x3c, 0xd7, 0x34, 0x38, 0xd7, 0x96, 0x4d, 0x3f, 0x19, 0x23, 0x88, 0x21, 0xfa, 0x7f, 0x23, 0x9a, - 0xc1, 0x31, 0xb5, 0x6c, 0x27, 0xfe, 0xd5, 0xe8, 0x0c, 0x0e, 0x0a, 0xc9, 0xcd, 0xc8, 0x93, 0x44, - 0x63, 0x70, 0x03, 0x4f, 0x0f, 0x7b, 0xce, 0x45, 0x53, 0x2a, 0x34, 0x85, 0x43, 0xaa, 0xc1, 0x64, - 0x87, 0x49, 0x2f, 0xe2, 0xc5, 0xae, 0xc5, 0x60, 0xdf, 0x62, 0xf0, 0xdd, 0x62, 0xf0, 0xde, 0x61, - 0x67, 0xdf, 0x61, 0xe7, 0xb3, 0xc3, 0xce, 0xeb, 0x2d, 0xcf, 0x55, 0xd6, 0xac, 0x08, 0x15, 0x45, - 0x64, 0x97, 0xbd, 0x13, 0x35, 0x3f, 0x70, 0xb4, 0xed, 0xff, 0x40, 0xbd, 0x55, 0x4c, 0xae, 0x46, - 0xe6, 0x75, 0x1f, 0x7e, 0x02, 0x00, 0x00, 0xff, 0xff, 0xba, 0x75, 0xe4, 0xb4, 0xa0, 0x01, 0x00, - 0x00, + // 309 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x64, 0x91, 0x41, 0x4b, 0xfb, 0x30, + 0x18, 0xc6, 0x9b, 0xff, 0xba, 0xb1, 0xe5, 0xaf, 0xa0, 0x71, 0x48, 0x99, 0x10, 0x4b, 0x41, 0xe8, + 0xc5, 0x14, 0xe6, 0xcd, 0x63, 0x87, 0xb0, 0x8b, 0x97, 0x7a, 0xf3, 0x32, 0xba, 0x2c, 0xa4, 0x85, + 0xb5, 0x29, 0x4d, 0x2a, 0xf3, 0x5b, 0xf8, 0x19, 0xfc, 0x34, 0x3b, 0xee, 0xe8, 0x49, 0xa4, 0xfd, + 0x22, 0x92, 0x34, 0x13, 0xc1, 0x4b, 0xf8, 0x3d, 0x3c, 0xef, 0x93, 0xf7, 0x7d, 0x13, 0x78, 0x55, + 0xb2, 0x46, 0xd5, 0xa2, 0x8c, 0xa8, 0x3e, 0x24, 0xcd, 0xd8, 0xa6, 0xd9, 0x32, 0x52, 0xd5, 0x42, + 0x09, 0x74, 0x62, 0x4d, 0xa2, 0xcd, 0xd9, 0x94, 0x0b, 0x2e, 0x8c, 0x11, 0x69, 0xea, 0x6b, 0x82, + 0x77, 0x00, 0xc7, 0x4f, 0x36, 0x86, 0x10, 0x74, 0xcb, 0xb4, 0x60, 0x1e, 0xf0, 0x41, 0x38, 0x49, + 0x0c, 0xa3, 0x4b, 0x38, 0xaa, 0x58, 0x9d, 0x8b, 0x8d, 0xf7, 0xcf, 0x07, 0xa1, 0x9b, 0x58, 0x85, + 0xee, 0xa1, 0x5b, 0x48, 0x2e, 0xbd, 0x81, 0x3f, 0x08, 0xff, 0xcf, 0x7d, 0xf2, 0xbb, 0x17, 0x79, + 0x94, 0xfc, 0x61, 0xc7, 0x68, 0xa3, 0xd8, 0x42, 0x94, 0xaa, 0x4e, 0xa9, 0x8a, 0xdd, 0xfd, 0xe7, + 0xb5, 0x93, 0x98, 0x0c, 0x22, 0xf0, 0x62, 0x9b, 0x4a, 0xb5, 0x62, 0x7d, 0xcd, 0x2a, 0x63, 0x39, + 0xcf, 0x94, 0xe7, 0x9a, 0x06, 0xe7, 0xda, 0xb2, 0xe9, 0xa5, 0x31, 0x82, 0x18, 0xa2, 0xbf, 0x37, + 0xa2, 0x19, 0x1c, 0x53, 0xcb, 0x76, 0xe2, 0x1f, 0x8d, 0xce, 0xe0, 0xa0, 0x90, 0xdc, 0x8c, 0x3c, + 0x49, 0x34, 0x06, 0x37, 0xf0, 0xf4, 0xb8, 0xe7, 0x42, 0x34, 0xa5, 0x42, 0x53, 0x38, 0xa4, 0x1a, + 0x4c, 0x76, 0x98, 0xf4, 0x22, 0x5e, 0xee, 0x5b, 0x0c, 0x0e, 0x2d, 0x06, 0x5f, 0x2d, 0x06, 0x6f, + 0x1d, 0x76, 0x0e, 0x1d, 0x76, 0x3e, 0x3a, 0xec, 0x3c, 0x13, 0x9e, 0xab, 0xac, 0x59, 0x13, 0x2a, + 0x8a, 0xc8, 0x2e, 0x7b, 0x2b, 0x6a, 0x7e, 0xe4, 0xe8, 0x65, 0x1e, 0xed, 0xfa, 0x6f, 0x50, 0xaf, + 0x15, 0x93, 0xeb, 0x91, 0x79, 0xe0, 0xbb, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0xce, 0x43, 0xc9, + 0xff, 0xa3, 0x01, 0x00, 0x00, } func (m *Schedule) Marshal() (dAtA []byte, err error) { diff --git a/x/cron/types/tx.pb.go b/x/cron/types/tx.pb.go index 3d7a094cb..ef5dade0e 100644 --- a/x/cron/types/tx.pb.go +++ b/x/cron/types/tx.pb.go @@ -139,7 +139,7 @@ func init() { func init() { proto.RegisterFile("neutron/cron/tx.proto", fileDescriptor_c9e0a673aba8d6fd) } var fileDescriptor_c9e0a673aba8d6fd = []byte{ - // 329 bytes of a gzipped FileDescriptorProto + // 332 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xcd, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x06, 0x11, 0x25, 0x15, 0x7a, 0x05, 0x45, 0xf9, 0x25, 0xf9, 0x42, 0x3c, 0x50, 0x61, 0x3d, 0x90, 0xb0, 0x94, 0x24, 0x8a, 0xa2, 0x82, 0xc4, 0xa2, 0xc4, 0xdc, 0x62, @@ -155,12 +155,12 @@ var fileDescriptor_c9e0a673aba8d6fd = []byte{ 0x63, 0x10, 0x54, 0xb9, 0x95, 0x7a, 0xd3, 0xf3, 0x0d, 0x5a, 0x08, 0x83, 0xba, 0x9e, 0x6f, 0xd0, 0x12, 0x01, 0x87, 0x03, 0x9a, 0xcb, 0x94, 0x24, 0xb9, 0xc4, 0xd1, 0x84, 0x82, 0x52, 0x8b, 0x0b, 0xf2, 0xf3, 0x8a, 0x53, 0x8d, 0xa2, 0xb9, 0x98, 0x7d, 0x8b, 0xd3, 0x85, 0x42, 0xb8, 0x78, 0x50, - 0xfc, 0x22, 0x8b, 0xea, 0x06, 0x34, 0xdd, 0x52, 0xaa, 0x78, 0xa5, 0x61, 0x86, 0x3b, 0xb9, 0x9e, + 0xfc, 0x22, 0x8b, 0xea, 0x06, 0x34, 0xdd, 0x52, 0xaa, 0x78, 0xa5, 0x61, 0x86, 0x3b, 0x79, 0x9c, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, - 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x76, 0x7a, 0x66, 0x49, 0x46, 0x69, - 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0xd4, 0x28, 0xdd, 0xfc, 0xa2, 0x74, 0x18, 0x5b, 0xbf, 0x02, - 0x1a, 0xeb, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0xe0, 0x30, 0x37, 0x06, 0x04, 0x00, 0x00, 0xff, - 0xff, 0xa3, 0x00, 0xe5, 0xfc, 0x12, 0x02, 0x00, 0x00, + 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x5e, 0x7a, 0x66, 0x49, 0x46, 0x69, + 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, 0xd4, 0x28, 0xdd, 0xfc, 0xa2, 0x74, 0x18, 0x5b, 0xbf, 0xcc, + 0x48, 0xbf, 0x02, 0x1a, 0xf1, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0xe0, 0x60, 0x37, 0x06, 0x04, + 0x00, 0x00, 0xff, 0xff, 0x5c, 0x66, 0x71, 0xc9, 0x15, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/dex/client/cli/query.go b/x/dex/client/cli/query.go index ae25f7c17..4dd7faabb 100644 --- a/x/dex/client/cli/query.go +++ b/x/dex/client/cli/query.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/dex/client/cli/query_inactive_limit_order_tranche.go b/x/dex/client/cli/query_inactive_limit_order_tranche.go index 930d75d49..cc32ae9e9 100644 --- a/x/dex/client/cli/query_inactive_limit_order_tranche.go +++ b/x/dex/client/cli/query_inactive_limit_order_tranche.go @@ -9,7 +9,7 @@ import ( "github.com/spf13/cast" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func CmdListInactiveLimitOrderTranche() *cobra.Command { diff --git a/x/dex/client/cli/query_limit_order_tranche.go b/x/dex/client/cli/query_limit_order_tranche.go index 175ac442a..a4bd0cd78 100644 --- a/x/dex/client/cli/query_limit_order_tranche.go +++ b/x/dex/client/cli/query_limit_order_tranche.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func CmdListLimitOrderTranche() *cobra.Command { diff --git a/x/dex/client/cli/query_limit_order_tranche_user.go b/x/dex/client/cli/query_limit_order_tranche_user.go index 357f99f4d..5d0643e05 100644 --- a/x/dex/client/cli/query_limit_order_tranche_user.go +++ b/x/dex/client/cli/query_limit_order_tranche_user.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func CmdListLimitOrderTrancheUser() *cobra.Command { diff --git a/x/dex/client/cli/query_params.go b/x/dex/client/cli/query_params.go index 74416197a..d6a209d38 100644 --- a/x/dex/client/cli/query_params.go +++ b/x/dex/client/cli/query_params.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func CmdQueryParams() *cobra.Command { diff --git a/x/dex/client/cli/query_pool.go b/x/dex/client/cli/query_pool.go index 861a9021d..defafd16c 100644 --- a/x/dex/client/cli/query_pool.go +++ b/x/dex/client/cli/query_pool.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func CmdShowPool() *cobra.Command { diff --git a/x/dex/client/cli/query_pool_metadata.go b/x/dex/client/cli/query_pool_metadata.go index 54f51e60d..7bc00ba93 100644 --- a/x/dex/client/cli/query_pool_metadata.go +++ b/x/dex/client/cli/query_pool_metadata.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func CmdListPoolMetadata() *cobra.Command { diff --git a/x/dex/client/cli/query_pool_reserves.go b/x/dex/client/cli/query_pool_reserves.go index 7ffcbb471..1befcca8f 100644 --- a/x/dex/client/cli/query_pool_reserves.go +++ b/x/dex/client/cli/query_pool_reserves.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func CmdListPoolReserves() *cobra.Command { diff --git a/x/dex/client/cli/query_test.go b/x/dex/client/cli/query_test.go index a3774204e..d5dfac1b3 100644 --- a/x/dex/client/cli/query_test.go +++ b/x/dex/client/cli/query_test.go @@ -6,9 +6,9 @@ package cli // "github.com/cosmos/cosmos-sdk/testutil/cli" // "github.com/cosmos/cosmos-sdk/testutil/network" // sdk "github.com/cosmos/cosmos-sdk/types" -// "github.com/neutron-org/neutron/app" -// dexclient "github.com/neutron-org/neutron/x/dex/client/cli" -// "github.com/neutron-org/neutron/x/dex/types" +// "github.com/neutron-org/neutron/v2/app" +// dexclient "github.com/neutron-org/neutron/v2/x/dex/client/cli" +// "github.com/neutron-org/neutron/v2/x/dex/types" // "github.com/stretchr/testify/require" // "github.com/stretchr/testify/suite" // ) diff --git a/x/dex/client/cli/query_tick_liquidity.go b/x/dex/client/cli/query_tick_liquidity.go index 4d86f0483..ec7b7cba7 100644 --- a/x/dex/client/cli/query_tick_liquidity.go +++ b/x/dex/client/cli/query_tick_liquidity.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func CmdListTickLiquidity() *cobra.Command { diff --git a/x/dex/client/cli/query_user_deposits.go b/x/dex/client/cli/query_user_deposits.go index a6b7d8e66..29c68872a 100644 --- a/x/dex/client/cli/query_user_deposits.go +++ b/x/dex/client/cli/query_user_deposits.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func CmdListUserDeposits() *cobra.Command { diff --git a/x/dex/client/cli/query_user_limit_orders.go b/x/dex/client/cli/query_user_limit_orders.go index 0bff8942f..8fc769aa8 100644 --- a/x/dex/client/cli/query_user_limit_orders.go +++ b/x/dex/client/cli/query_user_limit_orders.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func CmdListUserLimitOrders() *cobra.Command { diff --git a/x/dex/client/cli/tx.go b/x/dex/client/cli/tx.go index 362705342..e57ade682 100644 --- a/x/dex/client/cli/tx.go +++ b/x/dex/client/cli/tx.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) var DefaultRelativePacketTimeoutTimestamp = uint64((time.Duration(10) * time.Minute).Nanoseconds()) diff --git a/x/dex/client/cli/tx_cancel_limit_order.go b/x/dex/client/cli/tx_cancel_limit_order.go index 341642996..be88aec63 100644 --- a/x/dex/client/cli/tx_cancel_limit_order.go +++ b/x/dex/client/cli/tx_cancel_limit_order.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func CmdCancelLimitOrder() *cobra.Command { diff --git a/x/dex/client/cli/tx_deposit.go b/x/dex/client/cli/tx_deposit.go index 8b004391e..5ae248316 100644 --- a/x/dex/client/cli/tx_deposit.go +++ b/x/dex/client/cli/tx_deposit.go @@ -12,7 +12,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func CmdDeposit() *cobra.Command { diff --git a/x/dex/client/cli/tx_multi_hop_swap.go b/x/dex/client/cli/tx_multi_hop_swap.go index 1e819c3cd..cfa76006c 100644 --- a/x/dex/client/cli/tx_multi_hop_swap.go +++ b/x/dex/client/cli/tx_multi_hop_swap.go @@ -11,8 +11,8 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - math_utils "github.com/neutron-org/neutron/utils/math" - "github.com/neutron-org/neutron/x/dex/types" + math_utils "github.com/neutron-org/neutron/v2/utils/math" + "github.com/neutron-org/neutron/v2/x/dex/types" ) var _ = strconv.Itoa(0) diff --git a/x/dex/client/cli/tx_place_limit_order.go b/x/dex/client/cli/tx_place_limit_order.go index e293375f5..7c3d05154 100644 --- a/x/dex/client/cli/tx_place_limit_order.go +++ b/x/dex/client/cli/tx_place_limit_order.go @@ -12,7 +12,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func CmdPlaceLimitOrder() *cobra.Command { diff --git a/x/dex/client/cli/tx_test.go b/x/dex/client/cli/tx_test.go index 2e40e8ea6..4db7e6716 100644 --- a/x/dex/client/cli/tx_test.go +++ b/x/dex/client/cli/tx_test.go @@ -16,11 +16,11 @@ package cli // "github.com/cosmos/cosmos-sdk/testutil/network" // sdk "github.com/cosmos/cosmos-sdk/types" -// // "github.com/neutron-org/neutron/testutil/network" +// // "github.com/neutron-org/neutron/v2/testutil/network" // cryptotypes "github.com/cosmos/cosmos-sdk/crypto/types" -// "github.com/neutron-org/neutron/app" -// dexClient "github.com/neutron-org/neutron/x/dex/client/cli" -// "github.com/neutron-org/neutron/x/dex/types" +// "github.com/neutron-org/neutron/v2/app" +// dexClient "github.com/neutron-org/neutron/v2/x/dex/client/cli" +// "github.com/neutron-org/neutron/v2/x/dex/types" // "github.com/stretchr/testify/require" // "github.com/stretchr/testify/suite" // ) diff --git a/x/dex/client/cli/tx_withdrawl.go b/x/dex/client/cli/tx_withdrawl.go index fdc8bd414..07803c114 100644 --- a/x/dex/client/cli/tx_withdrawl.go +++ b/x/dex/client/cli/tx_withdrawl.go @@ -11,7 +11,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func CmdWithdrawal() *cobra.Command { diff --git a/x/dex/client/cli/tx_withdrawl_filled_limit_order.go b/x/dex/client/cli/tx_withdrawl_filled_limit_order.go index 4cdf5c52b..6829d72e0 100644 --- a/x/dex/client/cli/tx_withdrawl_filled_limit_order.go +++ b/x/dex/client/cli/tx_withdrawl_filled_limit_order.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func CmdWithdrawFilledLimitOrder() *cobra.Command { diff --git a/x/dex/genesis.go b/x/dex/genesis.go index e8d35a309..e1f2d9589 100644 --- a/x/dex/genesis.go +++ b/x/dex/genesis.go @@ -3,9 +3,9 @@ package dex import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) // InitGenesis initializes the capability module's state from a provided genesis diff --git a/x/dex/genesis_test.go b/x/dex/genesis_test.go index 04d22b246..dabf993a7 100644 --- a/x/dex/genesis_test.go +++ b/x/dex/genesis_test.go @@ -6,10 +6,10 @@ import ( "cosmossdk.io/math" "github.com/stretchr/testify/require" - keepertest "github.com/neutron-org/neutron/testutil/dex/keeper" - "github.com/neutron-org/neutron/testutil/dex/nullify" - "github.com/neutron-org/neutron/x/dex" - "github.com/neutron-org/neutron/x/dex/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/dex/keeper" + "github.com/neutron-org/neutron/v2/testutil/dex/nullify" + "github.com/neutron-org/neutron/v2/x/dex" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestGenesis(t *testing.T) { diff --git a/x/dex/keeper/core.go b/x/dex/keeper/core.go index 478718cc8..dc56873ba 100644 --- a/x/dex/keeper/core.go +++ b/x/dex/keeper/core.go @@ -8,10 +8,10 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/utils" - math_utils "github.com/neutron-org/neutron/utils/math" - "github.com/neutron-org/neutron/x/dex/types" - dexutils "github.com/neutron-org/neutron/x/dex/utils" + "github.com/neutron-org/neutron/v2/utils" + math_utils "github.com/neutron-org/neutron/v2/utils/math" + "github.com/neutron-org/neutron/v2/x/dex/types" + dexutils "github.com/neutron-org/neutron/v2/x/dex/utils" ) // NOTE: Currently we are using TruncateInt in multiple places for converting Decs back into math.Ints. diff --git a/x/dex/keeper/core_helper.go b/x/dex/keeper/core_helper.go index 6242338db..8860d6f1f 100644 --- a/x/dex/keeper/core_helper.go +++ b/x/dex/keeper/core_helper.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "golang.org/x/exp/slices" - math_utils "github.com/neutron-org/neutron/utils/math" - "github.com/neutron-org/neutron/x/dex/types" + math_utils "github.com/neutron-org/neutron/v2/utils/math" + "github.com/neutron-org/neutron/v2/x/dex/types" ) /////////////////////////////////////////////////////////////////////////////// diff --git a/x/dex/keeper/core_helper_test.go b/x/dex/keeper/core_helper_test.go index 1d1712b0b..2131a634e 100644 --- a/x/dex/keeper/core_helper_test.go +++ b/x/dex/keeper/core_helper_test.go @@ -8,9 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" - neutronapp "github.com/neutron-org/neutron/app" - "github.com/neutron-org/neutron/testutil" - "github.com/neutron-org/neutron/x/dex/types" + neutronapp "github.com/neutron-org/neutron/v2/app" + "github.com/neutron-org/neutron/v2/testutil" + "github.com/neutron-org/neutron/v2/x/dex/types" ) // Test Suite /////////////////////////////////////////////////////////////// diff --git a/x/dex/keeper/deposit_record.go b/x/dex/keeper/deposit_record.go index df8e51d47..6552dbf48 100644 --- a/x/dex/keeper/deposit_record.go +++ b/x/dex/keeper/deposit_record.go @@ -3,8 +3,8 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/types" - "github.com/neutron-org/neutron/x/dex/utils" + "github.com/neutron-org/neutron/v2/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/utils" ) func (k Keeper) GetAllDepositsForAddress(ctx sdk.Context, addr sdk.AccAddress) []*types.DepositRecord { diff --git a/x/dex/keeper/deposit_record_test.go b/x/dex/keeper/deposit_record_test.go index 77aaa9848..38061e835 100644 --- a/x/dex/keeper/deposit_record_test.go +++ b/x/dex/keeper/deposit_record_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "cosmossdk.io/math" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (s *DexTestSuite) TestGetAllDeposits() { diff --git a/x/dex/keeper/grpc_query.go b/x/dex/keeper/grpc_query.go index 456161826..9855d72c2 100644 --- a/x/dex/keeper/grpc_query.go +++ b/x/dex/keeper/grpc_query.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/dex/keeper/grpc_query_estimate_multi_hop_swap.go b/x/dex/keeper/grpc_query_estimate_multi_hop_swap.go index b0bbc7a3f..e16110c50 100644 --- a/x/dex/keeper/grpc_query_estimate_multi_hop_swap.go +++ b/x/dex/keeper/grpc_query_estimate_multi_hop_swap.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) // TODO: This doesn't run ValidateBasic() checks. diff --git a/x/dex/keeper/grpc_query_estimate_multi_hop_swap_test.go b/x/dex/keeper/grpc_query_estimate_multi_hop_swap_test.go index d5d79d461..0927608cd 100644 --- a/x/dex/keeper/grpc_query_estimate_multi_hop_swap_test.go +++ b/x/dex/keeper/grpc_query_estimate_multi_hop_swap_test.go @@ -4,8 +4,8 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - math_utils "github.com/neutron-org/neutron/utils/math" - "github.com/neutron-org/neutron/x/dex/types" + math_utils "github.com/neutron-org/neutron/v2/utils/math" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (s *DexTestSuite) TestEstimateMultiHopSwapSingleRoute() { diff --git a/x/dex/keeper/grpc_query_estimate_place_limit_order.go b/x/dex/keeper/grpc_query_estimate_place_limit_order.go index c4ce8ae98..30f65d0a7 100644 --- a/x/dex/keeper/grpc_query_estimate_place_limit_order.go +++ b/x/dex/keeper/grpc_query_estimate_place_limit_order.go @@ -6,7 +6,7 @@ import ( sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) // TODO: This doesn't run ValidateBasic() checks. diff --git a/x/dex/keeper/grpc_query_inactive_limit_order_tranche.go b/x/dex/keeper/grpc_query_inactive_limit_order_tranche.go index b082d76d7..5c7b0f276 100644 --- a/x/dex/keeper/grpc_query_inactive_limit_order_tranche.go +++ b/x/dex/keeper/grpc_query_inactive_limit_order_tranche.go @@ -9,7 +9,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (k Keeper) InactiveLimitOrderTrancheAll( diff --git a/x/dex/keeper/grpc_query_inactive_limit_order_tranche_test.go b/x/dex/keeper/grpc_query_inactive_limit_order_tranche_test.go index e0f9f68d8..90322640d 100644 --- a/x/dex/keeper/grpc_query_inactive_limit_order_tranche_test.go +++ b/x/dex/keeper/grpc_query_inactive_limit_order_tranche_test.go @@ -10,9 +10,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/neutron-org/neutron/testutil/dex/keeper" - "github.com/neutron-org/neutron/testutil/dex/nullify" - "github.com/neutron-org/neutron/x/dex/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/dex/keeper" + "github.com/neutron-org/neutron/v2/testutil/dex/nullify" + "github.com/neutron-org/neutron/v2/x/dex/types" ) // Prevent strconv unused error diff --git a/x/dex/keeper/grpc_query_limit_order_tranche.go b/x/dex/keeper/grpc_query_limit_order_tranche.go index 0a1070814..68ee97f0a 100644 --- a/x/dex/keeper/grpc_query_limit_order_tranche.go +++ b/x/dex/keeper/grpc_query_limit_order_tranche.go @@ -9,7 +9,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) // Returns all ACTIVE limit order tranches for a given pairID/tokenIn combination diff --git a/x/dex/keeper/grpc_query_limit_order_tranche_test.go b/x/dex/keeper/grpc_query_limit_order_tranche_test.go index 00e0be2e2..ad8bbed83 100644 --- a/x/dex/keeper/grpc_query_limit_order_tranche_test.go +++ b/x/dex/keeper/grpc_query_limit_order_tranche_test.go @@ -9,9 +9,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/neutron-org/neutron/testutil/dex/keeper" - "github.com/neutron-org/neutron/testutil/dex/nullify" - "github.com/neutron-org/neutron/x/dex/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/dex/keeper" + "github.com/neutron-org/neutron/v2/testutil/dex/nullify" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestLimitOrderTrancheQuerySingle(t *testing.T) { diff --git a/x/dex/keeper/grpc_query_limit_order_tranche_user.go b/x/dex/keeper/grpc_query_limit_order_tranche_user.go index d32542419..2e966e8e2 100644 --- a/x/dex/keeper/grpc_query_limit_order_tranche_user.go +++ b/x/dex/keeper/grpc_query_limit_order_tranche_user.go @@ -9,7 +9,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (k Keeper) LimitOrderTrancheUserAll( diff --git a/x/dex/keeper/grpc_query_limit_order_tranche_user_test.go b/x/dex/keeper/grpc_query_limit_order_tranche_user_test.go index 0780777b0..928d94330 100644 --- a/x/dex/keeper/grpc_query_limit_order_tranche_user_test.go +++ b/x/dex/keeper/grpc_query_limit_order_tranche_user_test.go @@ -10,10 +10,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/testutil/common/sample" - keepertest "github.com/neutron-org/neutron/testutil/dex/keeper" - "github.com/neutron-org/neutron/testutil/dex/nullify" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/testutil/common/sample" + keepertest "github.com/neutron-org/neutron/v2/testutil/dex/keeper" + "github.com/neutron-org/neutron/v2/testutil/dex/nullify" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestLimitOrderTrancheUserQuerySingle(t *testing.T) { diff --git a/x/dex/keeper/grpc_query_params.go b/x/dex/keeper/grpc_query_params.go index 20b0af47b..2abd210a2 100644 --- a/x/dex/keeper/grpc_query_params.go +++ b/x/dex/keeper/grpc_query_params.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error) { diff --git a/x/dex/keeper/grpc_query_params_test.go b/x/dex/keeper/grpc_query_params_test.go index 4d0d58cd7..8d3584bff 100644 --- a/x/dex/keeper/grpc_query_params_test.go +++ b/x/dex/keeper/grpc_query_params_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - testkeeper "github.com/neutron-org/neutron/testutil/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + testkeeper "github.com/neutron-org/neutron/v2/testutil/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestParamsQuery(t *testing.T) { diff --git a/x/dex/keeper/grpc_query_pool.go b/x/dex/keeper/grpc_query_pool.go index e831e94fe..eaeb72067 100644 --- a/x/dex/keeper/grpc_query_pool.go +++ b/x/dex/keeper/grpc_query_pool.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (k Keeper) Pool( diff --git a/x/dex/keeper/grpc_query_pool_metadata.go b/x/dex/keeper/grpc_query_pool_metadata.go index 4cb69eeb4..2241cc599 100644 --- a/x/dex/keeper/grpc_query_pool_metadata.go +++ b/x/dex/keeper/grpc_query_pool_metadata.go @@ -9,7 +9,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (k Keeper) PoolMetadataAll(goCtx context.Context, req *types.QueryAllPoolMetadataRequest) (*types.QueryAllPoolMetadataResponse, error) { diff --git a/x/dex/keeper/grpc_query_pool_metadata_test.go b/x/dex/keeper/grpc_query_pool_metadata_test.go index f46241d0b..40e9edba7 100644 --- a/x/dex/keeper/grpc_query_pool_metadata_test.go +++ b/x/dex/keeper/grpc_query_pool_metadata_test.go @@ -9,9 +9,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/neutron-org/neutron/testutil/dex/keeper" - "github.com/neutron-org/neutron/testutil/dex/nullify" - "github.com/neutron-org/neutron/x/dex/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/dex/keeper" + "github.com/neutron-org/neutron/v2/testutil/dex/nullify" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestPoolMetadataQuerySingle(t *testing.T) { diff --git a/x/dex/keeper/grpc_query_pool_reserves.go b/x/dex/keeper/grpc_query_pool_reserves.go index 057c62801..ddccc60ad 100644 --- a/x/dex/keeper/grpc_query_pool_reserves.go +++ b/x/dex/keeper/grpc_query_pool_reserves.go @@ -9,7 +9,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (k Keeper) PoolReservesAll( diff --git a/x/dex/keeper/grpc_query_pool_reserves_test.go b/x/dex/keeper/grpc_query_pool_reserves_test.go index 8bda9f699..05637b805 100644 --- a/x/dex/keeper/grpc_query_pool_reserves_test.go +++ b/x/dex/keeper/grpc_query_pool_reserves_test.go @@ -9,9 +9,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/neutron-org/neutron/testutil/dex/keeper" - "github.com/neutron-org/neutron/testutil/dex/nullify" - "github.com/neutron-org/neutron/x/dex/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/dex/keeper" + "github.com/neutron-org/neutron/v2/testutil/dex/nullify" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestPoolReservesQuerySingle(t *testing.T) { diff --git a/x/dex/keeper/grpc_query_pool_test.go b/x/dex/keeper/grpc_query_pool_test.go index 909bcf700..979d61861 100644 --- a/x/dex/keeper/grpc_query_pool_test.go +++ b/x/dex/keeper/grpc_query_pool_test.go @@ -8,9 +8,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/neutron-org/neutron/testutil/dex/keeper" - "github.com/neutron-org/neutron/testutil/dex/nullify" - "github.com/neutron-org/neutron/x/dex/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/dex/keeper" + "github.com/neutron-org/neutron/v2/testutil/dex/nullify" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestPoolQuerySingle(t *testing.T) { diff --git a/x/dex/keeper/grpc_query_tick_liquidity.go b/x/dex/keeper/grpc_query_tick_liquidity.go index 4c89b8c5d..480eff17b 100644 --- a/x/dex/keeper/grpc_query_tick_liquidity.go +++ b/x/dex/keeper/grpc_query_tick_liquidity.go @@ -9,7 +9,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) // NOTE: For single queries of tick liquidity use explicty typed queries diff --git a/x/dex/keeper/grpc_query_tick_liquidity_test.go b/x/dex/keeper/grpc_query_tick_liquidity_test.go index eedeaa47e..9d8c3d97c 100644 --- a/x/dex/keeper/grpc_query_tick_liquidity_test.go +++ b/x/dex/keeper/grpc_query_tick_liquidity_test.go @@ -9,8 +9,8 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/neutron-org/neutron/testutil/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestTickLiquidityQueryPaginated(t *testing.T) { diff --git a/x/dex/keeper/grpc_query_user_deposits.go b/x/dex/keeper/grpc_query_user_deposits.go index 81a6b1cc1..d967f5fe0 100644 --- a/x/dex/keeper/grpc_query_user_deposits.go +++ b/x/dex/keeper/grpc_query_user_deposits.go @@ -7,9 +7,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/utils" - "github.com/neutron-org/neutron/x/dex/types" - dexutils "github.com/neutron-org/neutron/x/dex/utils" + "github.com/neutron-org/neutron/v2/utils" + "github.com/neutron-org/neutron/v2/x/dex/types" + dexutils "github.com/neutron-org/neutron/v2/x/dex/utils" ) func (k Keeper) UserDepositsAll( diff --git a/x/dex/keeper/grpc_query_user_deposits_test.go b/x/dex/keeper/grpc_query_user_deposits_test.go index 1db6fdda0..c5603bb74 100644 --- a/x/dex/keeper/grpc_query_user_deposits_test.go +++ b/x/dex/keeper/grpc_query_user_deposits_test.go @@ -11,10 +11,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - neutronapp "github.com/neutron-org/neutron/app" - "github.com/neutron-org/neutron/testutil" - keepertest "github.com/neutron-org/neutron/x/dex/keeper/internal/testutils" - "github.com/neutron-org/neutron/x/dex/types" + neutronapp "github.com/neutron-org/neutron/v2/app" + "github.com/neutron-org/neutron/v2/testutil" + keepertest "github.com/neutron-org/neutron/v2/x/dex/keeper/internal/testutils" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func simulateDeposit(ctx sdk.Context, app *neutronapp.App, addr sdk.AccAddress, deposit *types.DepositRecord) { diff --git a/x/dex/keeper/inactive_limit_order_tranche.go b/x/dex/keeper/inactive_limit_order_tranche.go index 20fb17999..c893e675f 100644 --- a/x/dex/keeper/inactive_limit_order_tranche.go +++ b/x/dex/keeper/inactive_limit_order_tranche.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) // SetInactiveLimitOrderTranche set a specific inactiveLimitOrderTranche in the store from its index diff --git a/x/dex/keeper/inactive_limit_order_tranche_test.go b/x/dex/keeper/inactive_limit_order_tranche_test.go index c38189e33..47372a554 100644 --- a/x/dex/keeper/inactive_limit_order_tranche_test.go +++ b/x/dex/keeper/inactive_limit_order_tranche_test.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "github.com/neutron-org/neutron/testutil/dex/keeper" - "github.com/neutron-org/neutron/testutil/dex/nullify" - "github.com/neutron-org/neutron/x/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/dex/keeper" + "github.com/neutron-org/neutron/v2/testutil/dex/nullify" + "github.com/neutron-org/neutron/v2/x/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func createNInactiveLimitOrderTranche( diff --git a/x/dex/keeper/integration_cancellimitorder_test.go b/x/dex/keeper/integration_cancellimitorder_test.go index f9e723c4f..bd52421b5 100644 --- a/x/dex/keeper/integration_cancellimitorder_test.go +++ b/x/dex/keeper/integration_cancellimitorder_test.go @@ -7,7 +7,7 @@ import ( sdkmath "cosmossdk.io/math" abci "github.com/cometbft/cometbft/abci/types" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (s *DexTestSuite) TestCancelEntireLimitOrderAOneExists() { diff --git a/x/dex/keeper/integration_deposit_doublesided_test.go b/x/dex/keeper/integration_deposit_doublesided_test.go index 21053cb8a..1c0b506ce 100644 --- a/x/dex/keeper/integration_deposit_doublesided_test.go +++ b/x/dex/keeper/integration_deposit_doublesided_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "cosmossdk.io/math" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (s *DexTestSuite) TestDepositDoubleSidedInSpreadCurrTickAdjusted() { diff --git a/x/dex/keeper/integration_deposit_multi_test.go b/x/dex/keeper/integration_deposit_multi_test.go index b2ca79a8b..b70ca968f 100644 --- a/x/dex/keeper/integration_deposit_multi_test.go +++ b/x/dex/keeper/integration_deposit_multi_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (s *DexTestSuite) TestDepositMultiCompleteFailure() { diff --git a/x/dex/keeper/integration_deposit_singlesided_test.go b/x/dex/keeper/integration_deposit_singlesided_test.go index f3edc24d0..36078f964 100644 --- a/x/dex/keeper/integration_deposit_singlesided_test.go +++ b/x/dex/keeper/integration_deposit_singlesided_test.go @@ -5,7 +5,7 @@ import ( sdkmath "cosmossdk.io/math" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (s *DexTestSuite) TestDepositSingleSidedInSpread1To0() { diff --git a/x/dex/keeper/integration_multihopswap_test.go b/x/dex/keeper/integration_multihopswap_test.go index 52e3a1f1a..a4cf6587e 100644 --- a/x/dex/keeper/integration_multihopswap_test.go +++ b/x/dex/keeper/integration_multihopswap_test.go @@ -4,8 +4,8 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - math_utils "github.com/neutron-org/neutron/utils/math" - "github.com/neutron-org/neutron/x/dex/types" + math_utils "github.com/neutron-org/neutron/v2/utils/math" + "github.com/neutron-org/neutron/v2/x/dex/types" ) type PoolSetup struct { diff --git a/x/dex/keeper/integration_placelimitorder_test.go b/x/dex/keeper/integration_placelimitorder_test.go index e3aed59ff..9faae98d9 100644 --- a/x/dex/keeper/integration_placelimitorder_test.go +++ b/x/dex/keeper/integration_placelimitorder_test.go @@ -8,7 +8,7 @@ import ( abci "github.com/cometbft/cometbft/abci/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) // Core tests w/ GTC limitOrders ////////////////////////////////////////////// diff --git a/x/dex/keeper/integration_withdraw_multi_test.go b/x/dex/keeper/integration_withdraw_multi_test.go index b7f8edcb4..78244692b 100644 --- a/x/dex/keeper/integration_withdraw_multi_test.go +++ b/x/dex/keeper/integration_withdraw_multi_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (s *DexTestSuite) TestWithdrawMultiFailure() { diff --git a/x/dex/keeper/integration_withdraw_test.go b/x/dex/keeper/integration_withdraw_test.go index c2f4cf9f9..f4d592ba9 100644 --- a/x/dex/keeper/integration_withdraw_test.go +++ b/x/dex/keeper/integration_withdraw_test.go @@ -5,7 +5,7 @@ import ( sdkmath "cosmossdk.io/math" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (s *DexTestSuite) TestPartialWithdrawOnlyA() { diff --git a/x/dex/keeper/integration_withdrawfilled_test.go b/x/dex/keeper/integration_withdrawfilled_test.go index 2f8b4c651..a98f2b3a2 100644 --- a/x/dex/keeper/integration_withdrawfilled_test.go +++ b/x/dex/keeper/integration_withdrawfilled_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "math" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (s *DexTestSuite) TestWithdrawFilledSimpleFull() { diff --git a/x/dex/keeper/internal/testutils/test_helpers.go b/x/dex/keeper/internal/testutils/test_helpers.go index b533da713..81f9e6351 100644 --- a/x/dex/keeper/internal/testutils/test_helpers.go +++ b/x/dex/keeper/internal/testutils/test_helpers.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" - dexmoduletypes "github.com/neutron-org/neutron/x/dex/types" + dexmoduletypes "github.com/neutron-org/neutron/v2/x/dex/types" ) func NewACoin(amt math.Int) sdk.Coin { diff --git a/x/dex/keeper/keeper.go b/x/dex/keeper/keeper.go index 903e07d79..71be31ec5 100644 --- a/x/dex/keeper/keeper.go +++ b/x/dex/keeper/keeper.go @@ -9,7 +9,7 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) type ( diff --git a/x/dex/keeper/limit_order_expiration.go b/x/dex/keeper/limit_order_expiration.go index 33e1ecc07..6a7c1ffe6 100644 --- a/x/dex/keeper/limit_order_expiration.go +++ b/x/dex/keeper/limit_order_expiration.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func NewLimitOrderExpiration(tranche *types.LimitOrderTranche) *types.LimitOrderExpiration { diff --git a/x/dex/keeper/limit_order_expiration_test.go b/x/dex/keeper/limit_order_expiration_test.go index 4e802b5a8..57be8e519 100644 --- a/x/dex/keeper/limit_order_expiration_test.go +++ b/x/dex/keeper/limit_order_expiration_test.go @@ -7,8 +7,8 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func createNLimitOrderExpiration( diff --git a/x/dex/keeper/limit_order_tranche.go b/x/dex/keeper/limit_order_tranche.go index 7d07fd4d3..137255b66 100644 --- a/x/dex/keeper/limit_order_tranche.go +++ b/x/dex/keeper/limit_order_tranche.go @@ -8,8 +8,8 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/types" - "github.com/neutron-org/neutron/x/dex/utils" + "github.com/neutron-org/neutron/v2/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/utils" ) func NewLimitOrderTranche( diff --git a/x/dex/keeper/limit_order_tranche_test.go b/x/dex/keeper/limit_order_tranche_test.go index 7183bf8b3..c3e44e111 100644 --- a/x/dex/keeper/limit_order_tranche_test.go +++ b/x/dex/keeper/limit_order_tranche_test.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "github.com/neutron-org/neutron/testutil/dex/keeper" - "github.com/neutron-org/neutron/testutil/dex/nullify" - "github.com/neutron-org/neutron/x/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/dex/keeper" + "github.com/neutron-org/neutron/v2/testutil/dex/nullify" + "github.com/neutron-org/neutron/v2/x/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func createNLimitOrderTranches( diff --git a/x/dex/keeper/limit_order_tranche_user.go b/x/dex/keeper/limit_order_tranche_user.go index e25ee4d39..5d8f4435b 100644 --- a/x/dex/keeper/limit_order_tranche_user.go +++ b/x/dex/keeper/limit_order_tranche_user.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (k Keeper) GetOrInitLimitOrderTrancheUser( diff --git a/x/dex/keeper/limit_order_tranche_user_test.go b/x/dex/keeper/limit_order_tranche_user_test.go index d9cf8de78..426c39d0c 100644 --- a/x/dex/keeper/limit_order_tranche_user_test.go +++ b/x/dex/keeper/limit_order_tranche_user_test.go @@ -8,10 +8,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "github.com/neutron-org/neutron/testutil/dex/keeper" - "github.com/neutron-org/neutron/testutil/dex/nullify" - "github.com/neutron-org/neutron/x/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/dex/keeper" + "github.com/neutron-org/neutron/v2/testutil/dex/nullify" + "github.com/neutron-org/neutron/v2/x/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func createNLimitOrderTrancheUser(keeper *keeper.Keeper, ctx sdk.Context, n int) []*types.LimitOrderTrancheUser { diff --git a/x/dex/keeper/liquidity.go b/x/dex/keeper/liquidity.go index c50b68e00..a478c8cdd 100644 --- a/x/dex/keeper/liquidity.go +++ b/x/dex/keeper/liquidity.go @@ -4,8 +4,8 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - math_utils "github.com/neutron-org/neutron/utils/math" - "github.com/neutron-org/neutron/x/dex/types" + math_utils "github.com/neutron-org/neutron/v2/utils/math" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (k Keeper) Swap( diff --git a/x/dex/keeper/liquidity_iterator.go b/x/dex/keeper/liquidity_iterator.go index 70dcff66a..d02a02c2e 100644 --- a/x/dex/keeper/liquidity_iterator.go +++ b/x/dex/keeper/liquidity_iterator.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) type LiquidityIterator struct { diff --git a/x/dex/keeper/liquidity_test.go b/x/dex/keeper/liquidity_test.go index 8aeb23c7f..a399fda67 100644 --- a/x/dex/keeper/liquidity_test.go +++ b/x/dex/keeper/liquidity_test.go @@ -6,7 +6,7 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) // TODO: In an ideal world, there should be enough lower level testing that the swap tests diff --git a/x/dex/keeper/msg_server.go b/x/dex/keeper/msg_server.go index 922e1388e..8ca73aed5 100644 --- a/x/dex/keeper/msg_server.go +++ b/x/dex/keeper/msg_server.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) type MsgServer struct { diff --git a/x/dex/keeper/msg_server_test.go b/x/dex/keeper/msg_server_test.go index 58debb6b3..7be17cf75 100644 --- a/x/dex/keeper/msg_server_test.go +++ b/x/dex/keeper/msg_server_test.go @@ -12,11 +12,11 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" - "github.com/neutron-org/neutron/testutil/apptesting" - math_utils "github.com/neutron-org/neutron/utils/math" - . "github.com/neutron-org/neutron/x/dex/keeper" - . "github.com/neutron-org/neutron/x/dex/keeper/internal/testutils" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/testutil/apptesting" + math_utils "github.com/neutron-org/neutron/v2/utils/math" + . "github.com/neutron-org/neutron/v2/x/dex/keeper" + . "github.com/neutron-org/neutron/v2/x/dex/keeper/internal/testutils" + "github.com/neutron-org/neutron/v2/x/dex/types" ) // Test suite diff --git a/x/dex/keeper/multihop_swap.go b/x/dex/keeper/multihop_swap.go index e114f491e..554f128ab 100644 --- a/x/dex/keeper/multihop_swap.go +++ b/x/dex/keeper/multihop_swap.go @@ -5,8 +5,8 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - math_utils "github.com/neutron-org/neutron/utils/math" - "github.com/neutron-org/neutron/x/dex/types" + math_utils "github.com/neutron-org/neutron/v2/utils/math" + "github.com/neutron-org/neutron/v2/x/dex/types" ) type MultihopStep struct { diff --git a/x/dex/keeper/params.go b/x/dex/keeper/params.go index 949795d99..50a8591c2 100644 --- a/x/dex/keeper/params.go +++ b/x/dex/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) // GetParams get all parameters as types.Params diff --git a/x/dex/keeper/params_test.go b/x/dex/keeper/params_test.go index 1cca6c8f8..e61d7ce6f 100644 --- a/x/dex/keeper/params_test.go +++ b/x/dex/keeper/params_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - testkeeper "github.com/neutron-org/neutron/testutil/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + testkeeper "github.com/neutron-org/neutron/v2/testutil/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestGetParams(t *testing.T) { diff --git a/x/dex/keeper/pool.go b/x/dex/keeper/pool.go index d388eca73..6da642918 100644 --- a/x/dex/keeper/pool.go +++ b/x/dex/keeper/pool.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/types" - "github.com/neutron-org/neutron/x/dex/utils" + "github.com/neutron-org/neutron/v2/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/utils" ) func (k Keeper) GetOrInitPool( diff --git a/x/dex/keeper/pool_metadata.go b/x/dex/keeper/pool_metadata.go index 9ffacb40f..073993d94 100644 --- a/x/dex/keeper/pool_metadata.go +++ b/x/dex/keeper/pool_metadata.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) // SetPoolMetadata set a specific poolMetadata in the store diff --git a/x/dex/keeper/pool_metadata_test.go b/x/dex/keeper/pool_metadata_test.go index 6eb70ef1c..b88a27717 100644 --- a/x/dex/keeper/pool_metadata_test.go +++ b/x/dex/keeper/pool_metadata_test.go @@ -6,10 +6,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "github.com/neutron-org/neutron/testutil/dex/keeper" - "github.com/neutron-org/neutron/testutil/dex/nullify" - "github.com/neutron-org/neutron/x/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/dex/keeper" + "github.com/neutron-org/neutron/v2/testutil/dex/nullify" + "github.com/neutron-org/neutron/v2/x/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func createNPoolMetadata(keeper *keeper.Keeper, ctx sdk.Context, n int) []types.PoolMetadata { diff --git a/x/dex/keeper/pool_reserves.go b/x/dex/keeper/pool_reserves.go index 0b1b234bd..646fbabd8 100644 --- a/x/dex/keeper/pool_reserves.go +++ b/x/dex/keeper/pool_reserves.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func (k Keeper) SetPoolReserves(ctx sdk.Context, poolReserves *types.PoolReserves) { diff --git a/x/dex/keeper/pool_reserves_test.go b/x/dex/keeper/pool_reserves_test.go index cd825b02d..1cfdff5fe 100644 --- a/x/dex/keeper/pool_reserves_test.go +++ b/x/dex/keeper/pool_reserves_test.go @@ -6,10 +6,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "github.com/neutron-org/neutron/testutil/dex/keeper" - "github.com/neutron-org/neutron/testutil/dex/nullify" - "github.com/neutron-org/neutron/x/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/dex/keeper" + "github.com/neutron-org/neutron/v2/testutil/dex/nullify" + "github.com/neutron-org/neutron/v2/x/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func createNPoolReserves(k *keeper.Keeper, ctx sdk.Context, n int) []*types.PoolReserves { diff --git a/x/dex/keeper/pool_test.go b/x/dex/keeper/pool_test.go index fe4224de3..99ecb54dc 100644 --- a/x/dex/keeper/pool_test.go +++ b/x/dex/keeper/pool_test.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "github.com/neutron-org/neutron/testutil/dex/keeper" - "github.com/neutron-org/neutron/x/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func createNPools(k *keeper.Keeper, ctx sdk.Context, n int) []*types.Pool { diff --git a/x/dex/keeper/tick_iterator.go b/x/dex/keeper/tick_iterator.go index ea7a7f74d..ee75b7432 100644 --- a/x/dex/keeper/tick_iterator.go +++ b/x/dex/keeper/tick_iterator.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) type TickIterator struct { diff --git a/x/dex/keeper/tick_liquidity.go b/x/dex/keeper/tick_liquidity.go index bd7ebe876..c19a59d48 100644 --- a/x/dex/keeper/tick_liquidity.go +++ b/x/dex/keeper/tick_liquidity.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) // GetAllTickLiquidity returns all tickLiquidity diff --git a/x/dex/keeper/tick_liquidity_test.go b/x/dex/keeper/tick_liquidity_test.go index 662c0b5c1..5adda6068 100644 --- a/x/dex/keeper/tick_liquidity_test.go +++ b/x/dex/keeper/tick_liquidity_test.go @@ -8,9 +8,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "github.com/neutron-org/neutron/testutil/dex/keeper" - "github.com/neutron-org/neutron/x/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func CreateNTickLiquidity(keeper *keeper.Keeper, ctx sdk.Context, n int) []*types.TickLiquidity { diff --git a/x/dex/module.go b/x/dex/module.go index a7a68c3a2..5775e0b2b 100644 --- a/x/dex/module.go +++ b/x/dex/module.go @@ -17,9 +17,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/neutron-org/neutron/x/dex/client/cli" - "github.com/neutron-org/neutron/x/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/client/cli" + "github.com/neutron-org/neutron/v2/x/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) var ( diff --git a/x/dex/module_simulation.go b/x/dex/module_simulation.go index 8327b53b2..046056299 100644 --- a/x/dex/module_simulation.go +++ b/x/dex/module_simulation.go @@ -9,9 +9,9 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/neutron-org/neutron/testutil/common/sample" - dexsimulation "github.com/neutron-org/neutron/x/dex/simulation" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/testutil/common/sample" + dexsimulation "github.com/neutron-org/neutron/v2/x/dex/simulation" + "github.com/neutron-org/neutron/v2/x/dex/types" ) // avoid unused import issue diff --git a/x/dex/simulation/cancel_limit_order.go b/x/dex/simulation/cancel_limit_order.go index 9a2dfdf4a..eccf0536c 100644 --- a/x/dex/simulation/cancel_limit_order.go +++ b/x/dex/simulation/cancel_limit_order.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/neutron-org/neutron/x/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func SimulateMsgCancelLimitOrder( diff --git a/x/dex/simulation/deposit.go b/x/dex/simulation/deposit.go index 4c24027b5..893864027 100644 --- a/x/dex/simulation/deposit.go +++ b/x/dex/simulation/deposit.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/neutron-org/neutron/x/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func SimulateMsgDeposit( diff --git a/x/dex/simulation/multi_hop_swap.go b/x/dex/simulation/multi_hop_swap.go index 7013b9b6d..2cfdb23c9 100644 --- a/x/dex/simulation/multi_hop_swap.go +++ b/x/dex/simulation/multi_hop_swap.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/neutron-org/neutron/x/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func SimulateMsgMultiHopSwap( diff --git a/x/dex/simulation/place_limit_order.go b/x/dex/simulation/place_limit_order.go index d1b5a4ed8..fe1ed2055 100644 --- a/x/dex/simulation/place_limit_order.go +++ b/x/dex/simulation/place_limit_order.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/neutron-org/neutron/x/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func SimulateMsgPlaceLimitOrder( diff --git a/x/dex/simulation/withdrawl.go b/x/dex/simulation/withdrawl.go index f51e93dd1..1663ee096 100644 --- a/x/dex/simulation/withdrawl.go +++ b/x/dex/simulation/withdrawl.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/neutron-org/neutron/x/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func SimulateMsgWithdrawal( diff --git a/x/dex/simulation/withdrawl_filled_limit_order.go b/x/dex/simulation/withdrawl_filled_limit_order.go index 36508afc3..963947559 100644 --- a/x/dex/simulation/withdrawl_filled_limit_order.go +++ b/x/dex/simulation/withdrawl_filled_limit_order.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/neutron-org/neutron/x/dex/keeper" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/keeper" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func SimulateMsgWithdrawFilledLimitOrder( diff --git a/x/dex/types/deposit_record.pb.go b/x/dex/types/deposit_record.pb.go index 90c72e068..ca7eeefe7 100644 --- a/x/dex/types/deposit_record.pb.go +++ b/x/dex/types/deposit_record.pb.go @@ -109,29 +109,30 @@ func init() { func init() { proto.RegisterFile("neutron/dex/deposit_record.proto", fileDescriptor_250413eadaebbf28) } var fileDescriptor_250413eadaebbf28 = []byte{ - // 349 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x91, 0xbf, 0x4e, 0xeb, 0x30, - 0x18, 0xc5, 0xe3, 0xb6, 0xb7, 0x57, 0xb8, 0xfc, 0x29, 0x29, 0x43, 0xe8, 0x90, 0x44, 0x1d, 0x50, - 0x54, 0xd1, 0x44, 0x82, 0x8d, 0xb1, 0xea, 0x92, 0x09, 0x14, 0xc1, 0xc2, 0x12, 0xa5, 0xb1, 0x49, - 0xad, 0xb6, 0x71, 0x64, 0xbb, 0x6a, 0xfa, 0x16, 0x3c, 0x56, 0xd9, 0x3a, 0x22, 0x86, 0x08, 0xb5, - 0x1b, 0x23, 0x4f, 0x80, 0xe2, 0x04, 0x91, 0x4c, 0x3e, 0xdf, 0xf1, 0xcf, 0xc7, 0xd2, 0xf9, 0xa0, - 0x19, 0xe3, 0x95, 0x60, 0x34, 0x76, 0x10, 0x4e, 0x1d, 0x84, 0x13, 0xca, 0x89, 0xf0, 0x19, 0x0e, - 0x29, 0x43, 0x76, 0xc2, 0xa8, 0xa0, 0x6a, 0xa7, 0x24, 0x6c, 0x84, 0xd3, 0xfe, 0x45, 0x44, 0x23, - 0x2a, 0x7d, 0x27, 0x57, 0x05, 0xd2, 0xbf, 0xac, 0x86, 0x24, 0x01, 0x61, 0x3e, 0x29, 0x5f, 0x0f, - 0xde, 0x1a, 0xf0, 0x64, 0x52, 0xc4, 0x7a, 0x32, 0x55, 0xbd, 0x86, 0xff, 0x4b, 0x44, 0x03, 0x26, - 0xb0, 0x3a, 0x37, 0x3d, 0xbb, 0xf2, 0x83, 0xfd, 0x10, 0x10, 0xe6, 0x4e, 0xbc, 0x76, 0xce, 0xb8, - 0x48, 0x4d, 0xe1, 0x31, 0x9f, 0x05, 0x0c, 0x73, 0x9f, 0xae, 0x63, 0x8c, 0xb4, 0x86, 0x09, 0xac, - 0xa3, 0xf1, 0xd3, 0x36, 0x33, 0x94, 0x8f, 0xcc, 0xb8, 0x8a, 0x88, 0x98, 0xad, 0xa6, 0x76, 0x48, - 0x97, 0x4e, 0x48, 0xf9, 0x92, 0xf2, 0xf2, 0x18, 0x71, 0x34, 0x77, 0xc4, 0x26, 0xc1, 0xdc, 0x76, - 0x63, 0xf1, 0x95, 0x19, 0xb5, 0x94, 0xef, 0xcc, 0xe8, 0x6d, 0x82, 0xe5, 0xe2, 0x6e, 0x50, 0x75, - 0x07, 0x5e, 0xa7, 0x18, 0xef, 0xf3, 0x49, 0x1d, 0xc2, 0xf3, 0x10, 0xc7, 0x02, 0x33, 0x5f, 0x90, - 0x70, 0xee, 0x93, 0x18, 0xe1, 0x54, 0x6b, 0x9a, 0xc0, 0x6a, 0x7a, 0x67, 0xc5, 0xc5, 0x23, 0x09, - 0xe7, 0x6e, 0x6e, 0xab, 0x16, 0xec, 0x2e, 0xe8, 0xba, 0x8e, 0xb6, 0x24, 0x7a, 0x2a, 0xfd, 0x1a, - 0xb9, 0x4a, 0x92, 0x3a, 0xf9, 0xaf, 0x20, 0xa5, 0xff, 0x47, 0x76, 0x61, 0xf3, 0x05, 0x63, 0xad, - 0x6d, 0x02, 0xab, 0xe5, 0xe5, 0x72, 0x3c, 0xd9, 0xee, 0x75, 0xb0, 0xdb, 0xeb, 0xe0, 0x73, 0xaf, - 0x83, 0xd7, 0x83, 0xae, 0xec, 0x0e, 0xba, 0xf2, 0x7e, 0xd0, 0x95, 0xe7, 0x61, 0xa5, 0x87, 0xb2, - 0xcc, 0x11, 0x65, 0xd1, 0xaf, 0x76, 0x52, 0xb9, 0x19, 0xd9, 0xc7, 0xb4, 0x2d, 0x17, 0x73, 0xfb, - 0x13, 0x00, 0x00, 0xff, 0xff, 0x49, 0x82, 0xcb, 0xe9, 0xfa, 0x01, 0x00, 0x00, + // 354 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x91, 0x31, 0x4f, 0xe3, 0x30, + 0x1c, 0xc5, 0xe3, 0xb6, 0xd7, 0xd3, 0xa5, 0x77, 0x47, 0x49, 0x19, 0x42, 0x87, 0x24, 0xea, 0x80, + 0x22, 0x44, 0x63, 0xa9, 0x6c, 0x8c, 0x55, 0x25, 0x94, 0x09, 0x14, 0xc1, 0xc2, 0x12, 0xa5, 0xb1, + 0x49, 0xad, 0xb6, 0x71, 0x64, 0xbb, 0x34, 0xfd, 0x16, 0x7c, 0xac, 0xb2, 0x75, 0x44, 0x0c, 0x11, + 0x6a, 0x37, 0x46, 0x3e, 0x01, 0x8a, 0x13, 0x44, 0x32, 0xf9, 0xfd, 0x9f, 0x7f, 0x7e, 0x96, 0xde, + 0x5f, 0xb5, 0x62, 0xbc, 0x12, 0x8c, 0xc6, 0x10, 0xe1, 0x14, 0x22, 0x9c, 0x50, 0x4e, 0x84, 0xcf, + 0x70, 0x48, 0x19, 0x72, 0x12, 0x46, 0x05, 0xd5, 0x3a, 0x25, 0xe1, 0x20, 0x9c, 0xf6, 0x4f, 0x22, + 0x1a, 0x51, 0xe9, 0xc3, 0x5c, 0x15, 0x48, 0xff, 0xb4, 0x1a, 0x92, 0x04, 0x84, 0xf9, 0xa4, 0x7c, + 0x3d, 0x78, 0x69, 0xa8, 0xff, 0x26, 0x45, 0xac, 0x27, 0x53, 0xb5, 0x0b, 0xf5, 0x77, 0x89, 0xe8, + 0xc0, 0x02, 0x76, 0x67, 0xd4, 0x73, 0x2a, 0x3f, 0x38, 0xb7, 0x01, 0x61, 0xee, 0xc4, 0x6b, 0xe7, + 0x8c, 0x8b, 0xb4, 0x54, 0xfd, 0xcb, 0x67, 0x01, 0xc3, 0xdc, 0xa7, 0xeb, 0x18, 0x23, 0xbd, 0x61, + 0x01, 0xfb, 0xcf, 0xf8, 0x7e, 0x9b, 0x99, 0xca, 0x5b, 0x66, 0x9e, 0x45, 0x44, 0xcc, 0x56, 0x53, + 0x27, 0xa4, 0x4b, 0x18, 0x52, 0xbe, 0xa4, 0xbc, 0x3c, 0x86, 0x1c, 0xcd, 0xa1, 0xd8, 0x24, 0x98, + 0x3b, 0x6e, 0x2c, 0x3e, 0x32, 0xb3, 0x96, 0xf2, 0x99, 0x99, 0xbd, 0x4d, 0xb0, 0x5c, 0x5c, 0x0d, + 0xaa, 0xee, 0xc0, 0xeb, 0x14, 0xe3, 0x4d, 0x3e, 0x69, 0xe7, 0xea, 0x71, 0x88, 0x63, 0x81, 0x99, + 0x2f, 0x48, 0x38, 0xf7, 0x49, 0x8c, 0x70, 0xaa, 0x37, 0x2d, 0x60, 0x37, 0xbd, 0xa3, 0xe2, 0xe2, + 0x8e, 0x84, 0x73, 0x37, 0xb7, 0x35, 0x5b, 0xed, 0x2e, 0xe8, 0xba, 0x8e, 0xb6, 0x24, 0xfa, 0x5f, + 0xfa, 0x35, 0x72, 0x95, 0x24, 0x75, 0xf2, 0x57, 0x41, 0x4a, 0xff, 0x87, 0xec, 0xaa, 0xcd, 0x47, + 0x8c, 0xf5, 0xb6, 0x05, 0xec, 0x96, 0x97, 0xcb, 0xf1, 0xf5, 0x76, 0x6f, 0x80, 0xdd, 0xde, 0x00, + 0xef, 0x7b, 0x03, 0x3c, 0x1f, 0x0c, 0x65, 0x77, 0x30, 0x94, 0xd7, 0x83, 0xa1, 0x3c, 0x0c, 0x2b, + 0x3d, 0x94, 0x65, 0x0e, 0x29, 0x8b, 0xbe, 0x35, 0x7c, 0x1a, 0xc1, 0x54, 0x2e, 0x47, 0x56, 0x32, + 0x6d, 0xcb, 0xdd, 0x5c, 0x7e, 0x05, 0x00, 0x00, 0xff, 0xff, 0x30, 0x70, 0x19, 0x2b, 0xfd, 0x01, + 0x00, 0x00, } func (m *DepositRecord) Marshal() (dAtA []byte, err error) { diff --git a/x/dex/types/genesis.pb.go b/x/dex/types/genesis.pb.go index 18e9206e2..55610ce47 100644 --- a/x/dex/types/genesis.pb.go +++ b/x/dex/types/genesis.pb.go @@ -116,33 +116,33 @@ func init() { func init() { proto.RegisterFile("neutron/dex/genesis.proto", fileDescriptor_0c051a8a0d58cd8b) } var fileDescriptor_0c051a8a0d58cd8b = []byte{ - // 405 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0xc1, 0x6e, 0xda, 0x30, - 0x18, 0xc7, 0x93, 0xc1, 0x90, 0x66, 0x76, 0xd8, 0xc2, 0x0e, 0x21, 0x12, 0x21, 0x43, 0x9a, 0x84, - 0x90, 0x96, 0x68, 0xec, 0x0d, 0xd8, 0xa4, 0x5d, 0x40, 0x43, 0x8c, 0x5d, 0x76, 0x89, 0x4c, 0x62, - 0x05, 0x8f, 0x24, 0x4e, 0x9d, 0x2f, 0x15, 0xbc, 0x45, 0x1f, 0x8b, 0x23, 0xc7, 0x5e, 0x5a, 0x55, - 0xf0, 0x22, 0x55, 0x6c, 0x23, 0x25, 0x2a, 0x6d, 0x6f, 0xd6, 0xf7, 0xfd, 0xfc, 0xff, 0xd9, 0x9f, - 0x8d, 0xba, 0x29, 0x29, 0x80, 0xb3, 0xd4, 0x0b, 0xc9, 0xd6, 0x8b, 0x48, 0x4a, 0x72, 0x9a, 0xbb, - 0x19, 0x67, 0xc0, 0x8c, 0xb6, 0x6a, 0xb9, 0x21, 0xd9, 0x5a, 0x9f, 0x22, 0x16, 0x31, 0x51, 0xf7, - 0xca, 0x95, 0x44, 0x2c, 0xb3, 0xba, 0x3b, 0xc3, 0x1c, 0x27, 0x6a, 0xb3, 0x35, 0xaa, 0x76, 0x62, - 0x9a, 0x50, 0xf0, 0x19, 0x0f, 0x09, 0xf7, 0x81, 0xe3, 0x34, 0x58, 0x13, 0xbf, 0xc8, 0x09, 0x57, - 0xec, 0x97, 0x57, 0x58, 0x85, 0x39, 0x55, 0x0c, 0x68, 0xb0, 0xf1, 0x63, 0x7a, 0x55, 0xd0, 0x90, - 0xc2, 0x4e, 0x11, 0xfd, 0xda, 0x71, 0x18, 0x8b, 0xfd, 0x84, 0x00, 0x0e, 0x31, 0x60, 0x09, 0x0c, - 0xee, 0x1a, 0xe8, 0xfd, 0x2f, 0x79, 0xc9, 0x3f, 0x80, 0x81, 0x18, 0xdf, 0x50, 0x4b, 0x1e, 0xdb, - 0xd4, 0x1d, 0x7d, 0xd8, 0x1e, 0x77, 0xdc, 0xca, 0xa5, 0xdd, 0xb9, 0x68, 0x4d, 0x9a, 0xfb, 0xfb, - 0xbe, 0xb6, 0x50, 0xa0, 0x31, 0x47, 0x9d, 0xba, 0xdc, 0x8f, 0x69, 0x0e, 0xe6, 0x1b, 0xa7, 0x31, - 0x6c, 0x8f, 0xad, 0xda, 0xfe, 0x25, 0x0d, 0x36, 0xd3, 0x33, 0x26, 0x62, 0xf4, 0xc5, 0x47, 0xa8, - 0x16, 0xa7, 0x34, 0x07, 0x23, 0x45, 0x9f, 0x69, 0x8a, 0x03, 0xa0, 0xd7, 0xc4, 0xbf, 0x34, 0x2a, - 0x91, 0xdf, 0x10, 0xf9, 0x76, 0x2d, 0x7f, 0x5a, 0xc2, 0xbf, 0x4b, 0x76, 0x29, 0x51, 0xe5, 0xe8, - 0x9d, 0xe3, 0x9e, 0x00, 0xc2, 0xf7, 0x1f, 0xf5, 0x9e, 0x7b, 0x11, 0xe9, 0x6a, 0x0a, 0xd7, 0xe0, - 0x65, 0xd7, 0xdf, 0x9c, 0x70, 0xe5, 0xeb, 0xc6, 0x97, 0x9a, 0xc2, 0x35, 0x43, 0x46, 0xed, 0x21, - 0xa4, 0xe0, 0xad, 0x10, 0x74, 0xeb, 0xc3, 0x66, 0x2c, 0x9e, 0x29, 0x4a, 0x8d, 0xfc, 0x43, 0x56, - 0xa9, 0x89, 0xb8, 0x1e, 0x42, 0x22, 0x2e, 0x60, 0x45, 0x0a, 0x66, 0xcb, 0xd1, 0x87, 0xcd, 0xc5, - 0xbb, 0xb2, 0xf2, 0xa3, 0x2c, 0x4c, 0x7e, 0xee, 0x8f, 0xb6, 0x7e, 0x38, 0xda, 0xfa, 0xc3, 0xd1, - 0xd6, 0x6f, 0x4e, 0xb6, 0x76, 0x38, 0xd9, 0xda, 0xed, 0xc9, 0xd6, 0xfe, 0x8d, 0x22, 0x0a, 0xeb, - 0x62, 0xe5, 0x06, 0x2c, 0xf1, 0x94, 0xf5, 0x2b, 0xe3, 0xd1, 0x79, 0xed, 0x6d, 0xe5, 0xaf, 0xda, - 0x65, 0x24, 0x5f, 0xb5, 0xc4, 0x67, 0xf9, 0xfe, 0x18, 0x00, 0x00, 0xff, 0xff, 0x62, 0xa7, 0x84, - 0x86, 0x1c, 0x03, 0x00, 0x00, + // 407 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0x41, 0x8e, 0xda, 0x30, + 0x14, 0x86, 0x93, 0x42, 0x91, 0x6a, 0xba, 0x68, 0x43, 0x17, 0x21, 0x12, 0x21, 0x45, 0xaa, 0x84, + 0x2a, 0x91, 0xa8, 0xf4, 0x06, 0x74, 0xc1, 0x06, 0x54, 0x44, 0xe9, 0xa6, 0x9b, 0xc8, 0x24, 0x56, + 0x70, 0x49, 0xe2, 0xd4, 0x79, 0x41, 0x70, 0x8b, 0x1e, 0x8b, 0x25, 0xcb, 0x6e, 0x3a, 0x1a, 0xc1, + 0x45, 0x46, 0xb1, 0x8d, 0x94, 0x68, 0x98, 0x99, 0x9d, 0xf5, 0xde, 0xe7, 0xff, 0xb3, 0x9f, 0x8d, + 0xba, 0x29, 0x29, 0x80, 0xb3, 0xd4, 0x0b, 0xc9, 0xde, 0x8b, 0x48, 0x4a, 0x72, 0x9a, 0xbb, 0x19, + 0x67, 0xc0, 0x8c, 0xb6, 0x6a, 0xb9, 0x21, 0xd9, 0x5b, 0x1f, 0x22, 0x16, 0x31, 0x51, 0xf7, 0xca, + 0x95, 0x44, 0x2c, 0xb3, 0xba, 0x3b, 0xc3, 0x1c, 0x27, 0x6a, 0xb3, 0xf5, 0xb9, 0xda, 0x89, 0x69, + 0x42, 0xc1, 0x67, 0x3c, 0x24, 0xdc, 0x07, 0x8e, 0xd3, 0x60, 0x43, 0xfc, 0x22, 0x27, 0x5c, 0xb1, + 0x9f, 0x5e, 0x60, 0x15, 0xe6, 0x54, 0x31, 0xa0, 0xc1, 0xd6, 0x8f, 0xe9, 0x9f, 0x82, 0x86, 0x14, + 0x0e, 0x8a, 0xe8, 0xd7, 0x8e, 0xc3, 0x58, 0xec, 0x27, 0x04, 0x70, 0x88, 0x01, 0x4b, 0x60, 0xf0, + 0xbf, 0x81, 0xde, 0x4e, 0xe5, 0x25, 0x7f, 0x00, 0x06, 0x62, 0x7c, 0x41, 0x2d, 0x79, 0x6c, 0x53, + 0x77, 0xf4, 0x61, 0x7b, 0xdc, 0x71, 0x2b, 0x97, 0x76, 0x17, 0xa2, 0x35, 0x69, 0x1e, 0xef, 0xfa, + 0xda, 0x52, 0x81, 0xc6, 0x02, 0x75, 0xea, 0x72, 0x3f, 0xa6, 0x39, 0x98, 0xaf, 0x9c, 0xc6, 0xb0, + 0x3d, 0xb6, 0x6a, 0xfb, 0x57, 0x34, 0xd8, 0xce, 0xae, 0x98, 0x88, 0xd1, 0x97, 0xef, 0xa1, 0x5a, + 0x9c, 0xd1, 0x1c, 0x8c, 0x14, 0x7d, 0xa4, 0x29, 0x0e, 0x80, 0xee, 0x88, 0x7f, 0x6b, 0x54, 0x22, + 0xbf, 0x21, 0xf2, 0xed, 0x5a, 0xfe, 0xac, 0x84, 0xbf, 0x97, 0xec, 0x4a, 0xa2, 0xca, 0xd1, 0xbb, + 0xc6, 0x3d, 0x02, 0x84, 0xef, 0x37, 0xea, 0x3d, 0xf5, 0x22, 0xd2, 0xd5, 0x14, 0xae, 0xc1, 0xf3, + 0xae, 0x9f, 0x39, 0xe1, 0xca, 0xd7, 0x8d, 0x6f, 0x35, 0x85, 0x6b, 0x8e, 0x8c, 0xda, 0x43, 0x48, + 0xc1, 0x6b, 0x21, 0xe8, 0xd6, 0x87, 0xcd, 0x58, 0x3c, 0x57, 0x94, 0x1a, 0xf9, 0xbb, 0xac, 0x52, + 0x13, 0x71, 0x3d, 0x84, 0x44, 0x5c, 0xc0, 0x8a, 0x14, 0xcc, 0x96, 0xa3, 0x0f, 0x9b, 0xcb, 0x37, + 0x65, 0xe5, 0x5b, 0x59, 0x98, 0x4c, 0x8f, 0x67, 0x5b, 0x3f, 0x9d, 0x6d, 0xfd, 0xfe, 0x6c, 0xeb, + 0x7f, 0x2f, 0xb6, 0x76, 0xba, 0xd8, 0xda, 0xbf, 0x8b, 0xad, 0xfd, 0x1a, 0x45, 0x14, 0x36, 0xc5, + 0xda, 0x0d, 0x58, 0xe2, 0x29, 0xeb, 0x88, 0xf1, 0xe8, 0xba, 0xf6, 0x76, 0x63, 0x6f, 0x2f, 0x3f, + 0xd6, 0x21, 0x23, 0xf9, 0xba, 0x25, 0xfe, 0xcb, 0xd7, 0x87, 0x00, 0x00, 0x00, 0xff, 0xff, 0xb8, + 0x55, 0x91, 0x11, 0x1f, 0x03, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/dex/types/genesis_test.go b/x/dex/types/genesis_test.go index 0aad879b8..c03ae2f04 100644 --- a/x/dex/types/genesis_test.go +++ b/x/dex/types/genesis_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestGenesisState_Validate(t *testing.T) { diff --git a/x/dex/types/keys.go b/x/dex/types/keys.go index d4fc0f9ad..210cd44d4 100644 --- a/x/dex/types/keys.go +++ b/x/dex/types/keys.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/dex/utils" + "github.com/neutron-org/neutron/v2/x/dex/utils" ) const ( diff --git a/x/dex/types/limit_order_expiration.pb.go b/x/dex/types/limit_order_expiration.pb.go index d6734e4dc..199a5b9d7 100644 --- a/x/dex/types/limit_order_expiration.pb.go +++ b/x/dex/types/limit_order_expiration.pb.go @@ -90,7 +90,7 @@ func init() { } var fileDescriptor_61264397cad6ae82 = []byte{ - // 262 bytes of a gzipped FileDescriptorProto + // 265 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0xc8, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x49, 0xad, 0xd0, 0xcf, 0xc9, 0xcc, 0xcd, 0x2c, 0x89, 0xcf, 0x2f, 0x4a, 0x49, 0x2d, 0x8a, 0x4f, 0xad, 0x28, 0xc8, 0x2c, 0x4a, 0x2c, 0xc9, 0xcc, 0xcf, 0xd3, 0x2b, @@ -102,12 +102,12 @@ var fileDescriptor_61264397cad6ae82 = []byte{ 0x1b, 0x49, 0xe9, 0x41, 0x6c, 0xd2, 0x83, 0xd9, 0xa4, 0x17, 0x02, 0xb3, 0xc9, 0x89, 0xe3, 0xc4, 0x3d, 0x79, 0x86, 0x09, 0xf7, 0xe5, 0x19, 0x83, 0xf8, 0x10, 0x9a, 0x41, 0xd2, 0x42, 0xf2, 0x5c, 0xdc, 0x25, 0x45, 0x89, 0x79, 0xc9, 0x19, 0xa9, 0xf1, 0x45, 0xa9, 0x69, 0x12, 0x4c, 0x0a, 0x8c, - 0x1a, 0x3c, 0x41, 0x5c, 0x50, 0xa1, 0xa0, 0xd4, 0x34, 0x27, 0x97, 0x13, 0x8f, 0xe4, 0x18, 0x2f, + 0x1a, 0x3c, 0x41, 0x5c, 0x50, 0xa1, 0xa0, 0xd4, 0x34, 0x27, 0xf7, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, - 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xd2, 0x4a, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, - 0xd5, 0x87, 0xfa, 0x58, 0x37, 0xbf, 0x28, 0x1d, 0xc6, 0xd6, 0xaf, 0x00, 0x87, 0x54, 0x49, 0x65, - 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x51, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xeb, 0x7a, - 0x71, 0x93, 0x45, 0x01, 0x00, 0x00, + 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xd2, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, + 0xd5, 0x87, 0xfa, 0x58, 0x37, 0xbf, 0x28, 0x1d, 0xc6, 0xd6, 0x2f, 0x33, 0xd2, 0xaf, 0x00, 0x07, + 0x56, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x5d, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x63, 0xc8, 0x34, 0x06, 0x48, 0x01, 0x00, 0x00, } func (m *LimitOrderExpiration) Marshal() (dAtA []byte, err error) { diff --git a/x/dex/types/limit_order_tranche.go b/x/dex/types/limit_order_tranche.go index 71d7db129..908c540b7 100644 --- a/x/dex/types/limit_order_tranche.go +++ b/x/dex/types/limit_order_tranche.go @@ -4,8 +4,8 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - math_utils "github.com/neutron-org/neutron/utils/math" - "github.com/neutron-org/neutron/x/dex/utils" + math_utils "github.com/neutron-org/neutron/v2/utils/math" + "github.com/neutron-org/neutron/v2/x/dex/utils" ) func NewLimitOrderTranche( diff --git a/x/dex/types/limit_order_tranche.pb.go b/x/dex/types/limit_order_tranche.pb.go index a0c8c24f7..202f2baf1 100644 --- a/x/dex/types/limit_order_tranche.pb.go +++ b/x/dex/types/limit_order_tranche.pb.go @@ -16,7 +16,7 @@ import ( github_com_cosmos_gogoproto_types "github.com/cosmos/gogoproto/types" _ "google.golang.org/protobuf/types/known/timestamppb" - github_com_neutron_org_neutron_utils_math "github.com/neutron-org/neutron/utils/math" + github_com_neutron_org_neutron_v2_utils_math "github.com/neutron-org/neutron/v2/utils/math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -100,8 +100,8 @@ type LimitOrderTranche struct { // JIT orders also use goodTilDate to handle deletion but represent a special case // All JIT orders have a goodTilDate of 0 and an exception is made to still still treat these orders as live // Order deletion still functions the same and the orders will be deleted at the end of the block - ExpirationTime *time.Time `protobuf:"bytes,6,opt,name=expiration_time,json=expirationTime,proto3,stdtime" json:"expiration_time,omitempty"` - PriceTakerToMaker github_com_neutron_org_neutron_utils_math.PrecDec `protobuf:"bytes,7,opt,name=price_taker_to_maker,json=priceTakerToMaker,proto3,customtype=github.com/neutron-org/neutron/utils/math.PrecDec" json:"price_taker_to_maker" yaml:"price_taker_to_maker"` + ExpirationTime *time.Time `protobuf:"bytes,6,opt,name=expiration_time,json=expirationTime,proto3,stdtime" json:"expiration_time,omitempty"` + PriceTakerToMaker github_com_neutron_org_neutron_v2_utils_math.PrecDec `protobuf:"bytes,7,opt,name=price_taker_to_maker,json=priceTakerToMaker,proto3,customtype=github.com/neutron-org/neutron/v2/utils/math.PrecDec" json:"price_taker_to_maker" yaml:"price_taker_to_maker"` } func (m *LimitOrderTranche) Reset() { *m = LimitOrderTranche{} } @@ -161,43 +161,43 @@ func init() { } var fileDescriptor_8c2ded67c80756d1 = []byte{ - // 572 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x94, 0xc1, 0x8b, 0xd3, 0x4e, - 0x14, 0xc7, 0x3b, 0xbf, 0xfe, 0xdc, 0x75, 0xa7, 0xe8, 0xd2, 0x50, 0x21, 0x5b, 0x21, 0xa9, 0x01, - 0xa5, 0x08, 0x9b, 0xa0, 0x7b, 0x11, 0xf1, 0x54, 0x7a, 0x29, 0x5a, 0x5c, 0x42, 0x4e, 0x5e, 0x86, - 0x34, 0x19, 0xd3, 0xa1, 0x4d, 0x26, 0x4c, 0x5e, 0xa5, 0xfd, 0x1b, 0xf6, 0xb2, 0x37, 0xcf, 0xfe, - 0x05, 0xfe, 0x1b, 0x3d, 0xee, 0x51, 0x3c, 0x44, 0x69, 0x6f, 0x1e, 0xf7, 0x2f, 0x90, 0x49, 0xd2, - 0x6d, 0x6a, 0xa3, 0x22, 0x7b, 0x9a, 0xe9, 0x7b, 0xdf, 0x79, 0xfd, 0xbc, 0x2f, 0xef, 0x05, 0x3f, - 0x8e, 0xe8, 0x0c, 0x04, 0x8f, 0x2c, 0x9f, 0xce, 0xad, 0x29, 0x0b, 0x19, 0x10, 0x2e, 0x7c, 0x2a, - 0x08, 0x08, 0x37, 0xf2, 0xc6, 0xd4, 0x8c, 0x05, 0x07, 0xae, 0x34, 0x0a, 0x99, 0xe9, 0xd3, 0x79, - 0x5b, 0x0f, 0x38, 0x0f, 0xa6, 0xd4, 0xca, 0x52, 0xa3, 0xd9, 0x7b, 0x0b, 0x58, 0x48, 0x13, 0x70, - 0xc3, 0x38, 0x57, 0xb7, 0xf5, 0x72, 0x51, 0x10, 0xae, 0x4f, 0x49, 0xec, 0x32, 0x41, 0x98, 0x5f, - 0x08, 0x5a, 0x01, 0x0f, 0x78, 0x76, 0xb5, 0xe4, 0xad, 0x88, 0x9e, 0x94, 0x9f, 0xed, 0x3c, 0x30, - 0x3e, 0x23, 0xdc, 0x7a, 0x23, 0xe9, 0xde, 0x4a, 0x38, 0x27, 0x67, 0x7b, 0x4d, 0x17, 0xca, 0x2b, - 0x7c, 0x6f, 0xe7, 0x0f, 0x54, 0xd4, 0x41, 0xdd, 0xc6, 0x73, 0xd5, 0x2c, 0x01, 0x9b, 0x8e, 0x54, - 0x9c, 0xbb, 0x4c, 0x0c, 0xfa, 0x76, 0x03, 0x6e, 0x7e, 0xf8, 0xca, 0x0b, 0x7c, 0x02, 0xcc, 0x9b, - 0x10, 0x16, 0xf9, 0x74, 0x4e, 0xc0, 0x9d, 0xc8, 0xc6, 0x39, 0x09, 0xe5, 0x45, 0xfd, 0xaf, 0x83, - 0xba, 0x75, 0xfb, 0x81, 0x14, 0x0c, 0x64, 0xde, 0x91, 0x51, 0x87, 0x0f, 0xe5, 0xa1, 0xe8, 0xb8, - 0x51, 0x38, 0x44, 0x26, 0x74, 0xa1, 0xd6, 0x3b, 0xa8, 0x7b, 0x64, 0x63, 0xb8, 0x01, 0x33, 0x2e, - 0x0e, 0x71, 0x73, 0x8f, 0x58, 0x39, 0xc3, 0x75, 0x29, 0xcf, 0x21, 0x1f, 0xed, 0x40, 0x56, 0xb5, - 0x67, 0x4b, 0xb5, 0xf2, 0x11, 0xe1, 0x96, 0xa0, 0x09, 0x15, 0x1f, 0x68, 0x92, 0xb3, 0x11, 0x9f, - 0x46, 0x3c, 0xcc, 0x08, 0x8f, 0x7a, 0x74, 0x99, 0xea, 0xb5, 0xaf, 0xa9, 0xfe, 0x24, 0x60, 0x30, - 0x9e, 0x8d, 0x4c, 0x8f, 0x87, 0x96, 0xc7, 0x93, 0x90, 0x27, 0xc5, 0x71, 0x9a, 0xf8, 0x13, 0x0b, - 0x16, 0x31, 0x4d, 0xcc, 0x41, 0x04, 0x3f, 0x52, 0xbd, 0xb2, 0xda, 0x75, 0xaa, 0x3f, 0x5c, 0xb8, - 0xe1, 0xf4, 0xa5, 0x51, 0x95, 0x35, 0x6c, 0x65, 0x13, 0xce, 0x0c, 0xe8, 0xcb, 0xe0, 0x2e, 0x19, - 0x94, 0xc8, 0xea, 0xb7, 0x26, 0x83, 0x3f, 0x92, 0x41, 0x25, 0x99, 0xb3, 0x25, 0xbb, 0x40, 0xb8, - 0x09, 0x1c, 0xdc, 0xe9, 0x8e, 0x61, 0xff, 0x67, 0x58, 0xe4, 0x9f, 0xb1, 0xf6, 0x4b, 0x5d, 0xa7, - 0xba, 0x9a, 0x33, 0xed, 0xa5, 0x0c, 0xfb, 0x38, 0x8b, 0x0d, 0xab, 0x68, 0xca, 0x26, 0xdd, 0xb9, - 0x1d, 0x0d, 0xfc, 0x9e, 0x06, 0xf6, 0x69, 0x4a, 0xde, 0x0c, 0xf1, 0x31, 0x9d, 0xc7, 0x4c, 0xb8, - 0xc0, 0x78, 0x44, 0xe4, 0xf2, 0xaa, 0x07, 0xd9, 0x40, 0xb6, 0xcd, 0x7c, 0xb3, 0xcd, 0xcd, 0x66, - 0x9b, 0xce, 0x66, 0xb3, 0x7b, 0x77, 0x97, 0xa9, 0x8e, 0x2e, 0xbf, 0xe9, 0xc8, 0xbe, 0xbf, 0x7d, - 0x2c, 0xd3, 0xca, 0x27, 0x84, 0x5b, 0xb1, 0x60, 0x1e, 0xfd, 0x75, 0x81, 0x0e, 0xb3, 0xfe, 0xe2, - 0xa2, 0xbf, 0x67, 0xa5, 0xfe, 0x8a, 0xb9, 0x3f, 0xe5, 0x22, 0xd8, 0xdc, 0xad, 0x19, 0xb0, 0x69, - 0x62, 0x85, 0x2e, 0x8c, 0xcd, 0x73, 0x41, 0xbd, 0x3e, 0xf5, 0xe4, 0x3c, 0x54, 0x15, 0xde, 0xce, - 0x43, 0x55, 0xd6, 0xb0, 0x9b, 0x59, 0xb8, 0xbc, 0xae, 0xbd, 0xfe, 0x72, 0xa5, 0xa1, 0xab, 0x95, - 0x86, 0xbe, 0xaf, 0x34, 0x74, 0xb9, 0xd6, 0x6a, 0x57, 0x6b, 0xad, 0xf6, 0x65, 0xad, 0xd5, 0xde, - 0x3d, 0xfd, 0x0b, 0xd6, 0x3c, 0xff, 0x88, 0x49, 0xfb, 0x47, 0x07, 0x99, 0x2f, 0x67, 0x3f, 0x03, - 0x00, 0x00, 0xff, 0xff, 0xd0, 0xdc, 0xf7, 0xcb, 0x35, 0x05, 0x00, 0x00, + // 576 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x94, 0xc1, 0x6e, 0xd3, 0x4c, + 0x10, 0xc7, 0xb3, 0x5f, 0x3e, 0x5a, 0xba, 0x11, 0x54, 0xb5, 0x82, 0xe4, 0x16, 0xc9, 0x0e, 0x96, + 0x40, 0xb9, 0xc4, 0x96, 0x5a, 0x0e, 0x08, 0x71, 0x8a, 0x22, 0xa1, 0x08, 0x22, 0x2a, 0xcb, 0x27, + 0x2e, 0x2b, 0xc7, 0x5e, 0x9c, 0x55, 0x62, 0xaf, 0xb5, 0x9e, 0x54, 0xc9, 0x33, 0x20, 0xa1, 0xde, + 0x78, 0x01, 0xee, 0xbc, 0x46, 0x8e, 0x3d, 0x22, 0x0e, 0x06, 0x25, 0x37, 0x8e, 0x7d, 0x02, 0xb4, + 0xb6, 0xd3, 0x38, 0xc4, 0x80, 0x50, 0x4f, 0x3b, 0x9e, 0xf9, 0xef, 0xf8, 0x37, 0xe3, 0x19, 0xe3, + 0xc7, 0x11, 0x9d, 0x82, 0xe0, 0x91, 0xe5, 0xd3, 0x99, 0x35, 0x61, 0x21, 0x03, 0xc2, 0x85, 0x4f, + 0x05, 0x01, 0xe1, 0x46, 0xde, 0x88, 0x9a, 0xb1, 0xe0, 0xc0, 0x95, 0x46, 0x21, 0x33, 0x7d, 0x3a, + 0x3b, 0xd1, 0x03, 0xce, 0x83, 0x09, 0xb5, 0xb2, 0xd0, 0x70, 0xfa, 0xce, 0x02, 0x16, 0xd2, 0x04, + 0xdc, 0x30, 0xce, 0xd5, 0x27, 0x7a, 0x39, 0x29, 0x08, 0xd7, 0xa7, 0x24, 0x76, 0x99, 0x20, 0xcc, + 0x2f, 0x04, 0xcd, 0x80, 0x07, 0x3c, 0x33, 0x2d, 0x69, 0x15, 0xde, 0xe3, 0xf2, 0xb5, 0xad, 0x0b, + 0xc6, 0x67, 0x84, 0x9b, 0xaf, 0x25, 0xdd, 0x1b, 0x09, 0xe7, 0xe4, 0x6c, 0xaf, 0xe8, 0x5c, 0x79, + 0x81, 0xef, 0x6d, 0xbd, 0x40, 0x45, 0x2d, 0xd4, 0x6e, 0x9c, 0xaa, 0x66, 0x09, 0xd8, 0x74, 0xa4, + 0xe2, 0xdc, 0x65, 0xa2, 0xdf, 0xb3, 0x1b, 0x70, 0xf3, 0xe0, 0x2b, 0xcf, 0xf0, 0x31, 0x30, 0x6f, + 0x4c, 0x58, 0xe4, 0xd3, 0x19, 0x01, 0x77, 0x2c, 0x0b, 0xe7, 0x24, 0x94, 0x86, 0xfa, 0x5f, 0x0b, + 0xb5, 0xeb, 0xf6, 0x03, 0x29, 0xe8, 0xcb, 0xb8, 0x23, 0xbd, 0x0e, 0x1f, 0xc8, 0x43, 0xd1, 0x71, + 0xa3, 0xe8, 0x10, 0x19, 0xd3, 0xb9, 0x5a, 0x6f, 0xa1, 0xf6, 0x81, 0x8d, 0xe1, 0x06, 0xcc, 0xf8, + 0xb0, 0x8f, 0x8f, 0x76, 0x88, 0x95, 0x33, 0x5c, 0x97, 0xf2, 0x1c, 0xf2, 0xd1, 0x16, 0x64, 0x55, + 0x79, 0xb6, 0x54, 0x2b, 0x1f, 0x11, 0x6e, 0x0a, 0x9a, 0x50, 0x71, 0x41, 0x93, 0x9c, 0x8d, 0xf8, + 0x34, 0xe2, 0x61, 0x46, 0x78, 0xd0, 0xa5, 0x8b, 0x54, 0xaf, 0x7d, 0x4d, 0xf5, 0x27, 0x01, 0x83, + 0xd1, 0x74, 0x68, 0x7a, 0x3c, 0xb4, 0x3c, 0x9e, 0x84, 0x3c, 0x29, 0x8e, 0x4e, 0xe2, 0x8f, 0x2d, + 0x98, 0xc7, 0x34, 0x31, 0xfb, 0x11, 0xfc, 0x48, 0xf5, 0xca, 0x6c, 0xd7, 0xa9, 0xfe, 0x70, 0xee, + 0x86, 0x93, 0xe7, 0x46, 0x55, 0xd4, 0xb0, 0x95, 0xb5, 0x3b, 0x6b, 0x40, 0x4f, 0x3a, 0xb7, 0xc9, + 0xa0, 0x44, 0x56, 0xbf, 0x35, 0x19, 0xfc, 0x91, 0x0c, 0x2a, 0xc9, 0x9c, 0x0d, 0xd9, 0x7b, 0x84, + 0x8f, 0x80, 0x83, 0x3b, 0xd9, 0x6a, 0xd8, 0xff, 0x19, 0x16, 0xf9, 0x67, 0xac, 0xdd, 0x54, 0xd7, + 0xa9, 0xae, 0xe6, 0x4c, 0x3b, 0x21, 0xc3, 0x3e, 0xcc, 0x7c, 0x83, 0x2a, 0x9a, 0x72, 0x93, 0xee, + 0xdc, 0x8e, 0x06, 0x7e, 0x4f, 0x03, 0xbb, 0x34, 0xa5, 0xde, 0x0c, 0xf0, 0x21, 0x9d, 0xc5, 0x4c, + 0xb8, 0xc0, 0x78, 0x44, 0xe4, 0xf2, 0xaa, 0x7b, 0xd9, 0x40, 0x9e, 0x98, 0xf9, 0x66, 0x9b, 0xeb, + 0xcd, 0x36, 0x9d, 0xf5, 0x66, 0x77, 0xef, 0x2e, 0x52, 0x1d, 0x5d, 0x7e, 0xd3, 0x91, 0x7d, 0x7f, + 0x73, 0x59, 0x86, 0x95, 0x4f, 0x08, 0x37, 0x63, 0xc1, 0x3c, 0xfa, 0xeb, 0x02, 0xed, 0x67, 0xf5, + 0x25, 0x45, 0x7d, 0x4f, 0x4b, 0xf5, 0x15, 0x73, 0xdf, 0xe1, 0x22, 0x58, 0xdb, 0xd6, 0xc5, 0xa9, + 0x35, 0x05, 0x36, 0x49, 0xac, 0xd0, 0x85, 0x91, 0x79, 0x2e, 0xa8, 0xd7, 0xa3, 0x9e, 0x1c, 0x89, + 0xaa, 0xdc, 0x9b, 0x91, 0xa8, 0x8a, 0x1a, 0xf6, 0x51, 0xe6, 0x2e, 0x6f, 0x6c, 0xf7, 0xe5, 0x62, + 0xa9, 0xa1, 0xab, 0xa5, 0x86, 0xbe, 0x2f, 0x35, 0x74, 0xb9, 0xd2, 0x6a, 0x57, 0x2b, 0xad, 0xf6, + 0x65, 0xa5, 0xd5, 0xde, 0x76, 0xfe, 0x4e, 0x36, 0xcb, 0x7f, 0x65, 0xf2, 0x23, 0x0c, 0xf7, 0xb2, + 0xee, 0x9c, 0xfd, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x03, 0x37, 0x4c, 0xc6, 0x3b, 0x05, 0x00, 0x00, } func (m *LimitOrderTrancheKey) Marshal() (dAtA []byte, err error) { diff --git a/x/dex/types/limit_order_tranche_key.go b/x/dex/types/limit_order_tranche_key.go index fc9b12ab3..92ec58408 100644 --- a/x/dex/types/limit_order_tranche_key.go +++ b/x/dex/types/limit_order_tranche_key.go @@ -1,7 +1,7 @@ package types import ( - math_utils "github.com/neutron-org/neutron/utils/math" + math_utils "github.com/neutron-org/neutron/v2/utils/math" ) var _ TickLiquidityKey = (*LimitOrderTrancheKey)(nil) diff --git a/x/dex/types/limit_order_tranche_user.pb.go b/x/dex/types/limit_order_tranche_user.pb.go index d04f0b231..3b532b668 100644 --- a/x/dex/types/limit_order_tranche_user.pb.go +++ b/x/dex/types/limit_order_tranche_user.pb.go @@ -113,37 +113,37 @@ func init() { } var fileDescriptor_67e5ffbd487ea05f = []byte{ - // 471 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x52, 0xcf, 0x6b, 0xd4, 0x40, - 0x18, 0xdd, 0x58, 0xdb, 0xda, 0x89, 0xbf, 0x88, 0x2d, 0x8e, 0x15, 0x92, 0x65, 0x0f, 0xb2, 0x14, - 0x9a, 0x40, 0xbd, 0x48, 0xf1, 0x54, 0x7b, 0x59, 0x54, 0x2a, 0x61, 0x8b, 0x20, 0xc8, 0x30, 0xcd, - 0x7c, 0xec, 0x0e, 0xbb, 0xc9, 0x84, 0x99, 0x59, 0x36, 0xf9, 0x0f, 0x3c, 0x7a, 0xf2, 0x6f, 0xea, - 0xb1, 0x47, 0xf1, 0x10, 0x64, 0xf7, 0xe6, 0xb1, 0x7f, 0x81, 0xcc, 0xe6, 0x07, 0x09, 0x3d, 0x89, - 0xa7, 0x7c, 0xdf, 0x7b, 0x8f, 0xf7, 0xbd, 0x09, 0x0f, 0x1d, 0x25, 0xb0, 0xd0, 0x52, 0x24, 0x01, - 0x83, 0x2c, 0x98, 0xf3, 0x98, 0x6b, 0x22, 0x24, 0x03, 0x49, 0xb4, 0xa4, 0x49, 0x34, 0x05, 0xb2, - 0x50, 0x20, 0xfd, 0x54, 0x0a, 0x2d, 0x1c, 0xbb, 0xd2, 0xfa, 0x0c, 0xb2, 0xc3, 0xfd, 0x89, 0x98, - 0x88, 0x0d, 0x1e, 0x98, 0xa9, 0x94, 0x1c, 0x7a, 0x6d, 0x3b, 0x2d, 0x29, 0x03, 0x92, 0x52, 0x2e, - 0x09, 0x67, 0x95, 0x60, 0xbf, 0x23, 0xc8, 0x4a, 0x74, 0xf0, 0x63, 0x1b, 0x1d, 0x7c, 0x30, 0xc7, - 0x2f, 0xcc, 0xed, 0x71, 0x79, 0xfa, 0x52, 0x81, 0x74, 0xde, 0xa2, 0x47, 0x1d, 0x1b, 0x6c, 0xf5, - 0xad, 0xa1, 0x7d, 0x82, 0xfd, 0x56, 0x16, 0x7f, 0x6c, 0x14, 0x9f, 0x28, 0x97, 0xa3, 0xf3, 0xd0, - 0xd6, 0xcd, 0xc2, 0x9c, 0x37, 0xe8, 0x85, 0xe6, 0xd1, 0x8c, 0xf0, 0x84, 0x41, 0x46, 0x34, 0x9d, - 0x99, 0x87, 0x09, 0x12, 0x9b, 0x01, 0xdf, 0xeb, 0x5b, 0xc3, 0xad, 0xf0, 0xc0, 0x08, 0x46, 0x86, - 0x1f, 0x1b, 0x74, 0x2c, 0x3e, 0x9a, 0x8f, 0xe3, 0x21, 0xbb, 0xfe, 0x03, 0x33, 0xc8, 0xf1, 0x56, - 0xdf, 0x1a, 0xee, 0x85, 0xa8, 0x82, 0xde, 0x43, 0xee, 0x60, 0xb4, 0x4b, 0x19, 0x93, 0xa0, 0x14, - 0xbe, 0xbf, 0x21, 0xeb, 0xd5, 0xc9, 0xd0, 0x43, 0x35, 0xa5, 0x12, 0x14, 0x11, 0xcb, 0x04, 0x18, - 0xde, 0x36, 0xf4, 0xd9, 0xe5, 0x75, 0xe1, 0xf5, 0x7e, 0x15, 0xde, 0xab, 0x09, 0xd7, 0xd3, 0xc5, - 0x95, 0x1f, 0x89, 0x38, 0x88, 0x84, 0x8a, 0x85, 0xaa, 0x3e, 0xc7, 0x8a, 0xcd, 0x02, 0x9d, 0xa7, - 0xa0, 0xfc, 0x51, 0xa2, 0xff, 0x14, 0x5e, 0xc7, 0xe5, 0xb6, 0xf0, 0x9e, 0xe5, 0x34, 0x9e, 0x9f, - 0x0e, 0xda, 0xe8, 0x20, 0xb4, 0xcb, 0xf5, 0xc2, 0x6c, 0xce, 0x37, 0x0b, 0x3d, 0xad, 0xe8, 0x25, - 0xd7, 0x53, 0x26, 0xe9, 0x32, 0xc1, 0x3b, 0x9b, 0xf3, 0x5f, 0xff, 0xf9, 0xfc, 0x1d, 0xa7, 0xdb, - 0xc2, 0x7b, 0xde, 0x89, 0xd0, 0x30, 0x83, 0xf0, 0x49, 0x09, 0x7d, 0xae, 0x91, 0x76, 0x94, 0x88, - 0x26, 0x11, 0xcc, 0xe7, 0xc0, 0xf0, 0xee, 0x7f, 0x46, 0x69, 0x9c, 0xee, 0x44, 0x69, 0x98, 0x26, - 0xca, 0xbb, 0x1a, 0x71, 0x4e, 0x11, 0xaa, 0x2a, 0x9d, 0xa7, 0x80, 0x1f, 0xf4, 0xad, 0xe1, 0xe3, - 0x93, 0x97, 0x9d, 0xfe, 0xb4, 0xaa, 0x97, 0xa7, 0x10, 0xee, 0x89, 0x7a, 0x3c, 0x3b, 0xbf, 0x5e, - 0xb9, 0xd6, 0xcd, 0xca, 0xb5, 0x7e, 0xaf, 0x5c, 0xeb, 0xfb, 0xda, 0xed, 0xdd, 0xac, 0xdd, 0xde, - 0xcf, 0xb5, 0xdb, 0xfb, 0x72, 0xd4, 0x4a, 0x5f, 0x79, 0x1d, 0x0b, 0x39, 0xa9, 0xe7, 0x20, 0x2b, - 0x1b, 0x6e, 0x5e, 0x71, 0xb5, 0xb3, 0x69, 0xf9, 0xeb, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x4e, - 0x33, 0x63, 0x0d, 0x6d, 0x03, 0x00, 0x00, + // 474 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x52, 0xcf, 0x8b, 0xd3, 0x40, + 0x18, 0x6d, 0x5c, 0x77, 0xd7, 0x9d, 0xfa, 0x8b, 0xb8, 0x8b, 0xe3, 0x0a, 0x49, 0xe9, 0x41, 0x8a, + 0xd0, 0x04, 0xea, 0x45, 0x16, 0x4f, 0xab, 0x20, 0x45, 0x65, 0x25, 0x74, 0x11, 0x04, 0x19, 0x66, + 0x33, 0x1f, 0xed, 0xd0, 0x26, 0x13, 0x66, 0xa6, 0x36, 0xf9, 0x0f, 0x3c, 0x7a, 0xf2, 0x6f, 0xda, + 0xe3, 0x1e, 0xc5, 0x43, 0x90, 0xf6, 0xe6, 0x71, 0xff, 0x02, 0x99, 0xe6, 0x07, 0x09, 0x7b, 0x12, + 0x4f, 0xf9, 0xbe, 0xf7, 0x1e, 0xef, 0x7b, 0x13, 0x1e, 0x7a, 0x1e, 0xc3, 0x52, 0x4b, 0x11, 0xfb, + 0x0c, 0x52, 0x7f, 0xc1, 0x23, 0xae, 0x89, 0x90, 0x0c, 0x24, 0xd1, 0x92, 0xc6, 0xe1, 0x0c, 0xc8, + 0x52, 0x81, 0xf4, 0x12, 0x29, 0xb4, 0xb0, 0xbb, 0xa5, 0xd6, 0x63, 0x90, 0x1e, 0x1f, 0x4e, 0xc5, + 0x54, 0x6c, 0x71, 0xdf, 0x4c, 0x85, 0xe4, 0xd8, 0x6d, 0xda, 0x69, 0x49, 0x19, 0x90, 0x84, 0x72, + 0x49, 0x38, 0x2b, 0x05, 0x87, 0x2d, 0x41, 0x5a, 0xa0, 0xfd, 0x1f, 0xbb, 0xe8, 0xe8, 0xbd, 0x39, + 0x7e, 0x66, 0x6e, 0x4f, 0x8a, 0xd3, 0xe7, 0x0a, 0xa4, 0xfd, 0x0a, 0xdd, 0x6b, 0xd9, 0x60, 0xab, + 0x67, 0x0d, 0xba, 0x23, 0xec, 0x35, 0xb2, 0x78, 0x13, 0xa3, 0xf8, 0x48, 0xb9, 0x1c, 0xbf, 0x09, + 0xba, 0xba, 0x5e, 0x98, 0xfd, 0x12, 0x3d, 0xd1, 0x3c, 0x9c, 0x13, 0x1e, 0x33, 0x48, 0x89, 0xa6, + 0x73, 0xf3, 0x30, 0x41, 0x22, 0x33, 0xe0, 0x5b, 0x3d, 0x6b, 0xb0, 0x13, 0x1c, 0x19, 0xc1, 0xd8, + 0xf0, 0x13, 0x83, 0x4e, 0xc4, 0x07, 0xf3, 0xb1, 0x5d, 0xd4, 0xad, 0xfe, 0xc0, 0x1c, 0x32, 0xbc, + 0xd3, 0xb3, 0x06, 0x07, 0x01, 0x2a, 0xa1, 0x77, 0x90, 0xd9, 0x18, 0xed, 0x53, 0xc6, 0x24, 0x28, + 0x85, 0x6f, 0x6f, 0xc9, 0x6a, 0xb5, 0x53, 0x74, 0x57, 0xcd, 0xa8, 0x04, 0x45, 0xc4, 0x2a, 0x06, + 0x86, 0x77, 0x0d, 0x7d, 0x7a, 0x7e, 0x99, 0xbb, 0x9d, 0x5f, 0xb9, 0xfb, 0x6c, 0xca, 0xf5, 0x6c, + 0x79, 0xe1, 0x85, 0x22, 0xf2, 0x43, 0xa1, 0x22, 0xa1, 0xca, 0xcf, 0x50, 0xb1, 0xb9, 0xaf, 0xb3, + 0x04, 0x94, 0x37, 0x8e, 0xf5, 0x9f, 0xdc, 0x6d, 0xb9, 0x5c, 0xe7, 0xee, 0xa3, 0x8c, 0x46, 0x8b, + 0x93, 0x7e, 0x13, 0xed, 0x07, 0xdd, 0x62, 0x3d, 0x33, 0x9b, 0xfd, 0xcd, 0x42, 0x0f, 0x4b, 0x7a, + 0xc5, 0xf5, 0x8c, 0x49, 0xba, 0x8a, 0xf1, 0xde, 0xf6, 0xfc, 0x97, 0x7f, 0x3e, 0x7f, 0xc3, 0xe9, + 0x3a, 0x77, 0x1f, 0xb7, 0x22, 0xd4, 0x4c, 0x3f, 0x78, 0x50, 0x40, 0x9f, 0x2a, 0xa4, 0x19, 0x25, + 0xa4, 0x71, 0x08, 0x8b, 0x05, 0x30, 0xbc, 0xff, 0x9f, 0x51, 0x6a, 0xa7, 0x1b, 0x51, 0x6a, 0xa6, + 0x8e, 0xf2, 0xba, 0x42, 0xec, 0x13, 0x84, 0xca, 0x4a, 0x67, 0x09, 0xe0, 0x3b, 0x3d, 0x6b, 0x70, + 0x7f, 0xf4, 0xb4, 0xd5, 0x9f, 0x46, 0xf5, 0xb2, 0x04, 0x82, 0x03, 0x51, 0x8d, 0xa7, 0x6f, 0x2f, + 0xd7, 0x8e, 0x75, 0xb5, 0x76, 0xac, 0xdf, 0x6b, 0xc7, 0xfa, 0xbe, 0x71, 0x3a, 0x57, 0x1b, 0xa7, + 0xf3, 0x73, 0xe3, 0x74, 0x3e, 0x0f, 0x1b, 0xe9, 0x4b, 0xaf, 0xa1, 0x90, 0xd3, 0x6a, 0xf6, 0xbf, + 0x8e, 0xfc, 0xb4, 0x28, 0xb9, 0x79, 0xc8, 0xc5, 0xde, 0xb6, 0xe8, 0x2f, 0xfe, 0x06, 0x00, 0x00, + 0xff, 0xff, 0x72, 0xd2, 0x85, 0x0b, 0x70, 0x03, 0x00, 0x00, } func (m *LimitOrderTrancheUser) Marshal() (dAtA []byte, err error) { diff --git a/x/dex/types/liquidity.go b/x/dex/types/liquidity.go index 200e35fa7..8733ac96f 100644 --- a/x/dex/types/liquidity.go +++ b/x/dex/types/liquidity.go @@ -3,7 +3,7 @@ package types import ( "cosmossdk.io/math" - math_utils "github.com/neutron-org/neutron/utils/math" + math_utils "github.com/neutron-org/neutron/v2/utils/math" ) type Liquidity interface { diff --git a/x/dex/types/message_cancel_limit_order_test.go b/x/dex/types/message_cancel_limit_order_test.go index c3728270d..3072a5c07 100644 --- a/x/dex/types/message_cancel_limit_order_test.go +++ b/x/dex/types/message_cancel_limit_order_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/testutil/common/sample" - . "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/testutil/common/sample" + . "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestMsgCancelLimitOrder_ValidateBasic(t *testing.T) { diff --git a/x/dex/types/message_deposit_test.go b/x/dex/types/message_deposit_test.go index c8383d8c8..702a565b8 100644 --- a/x/dex/types/message_deposit_test.go +++ b/x/dex/types/message_deposit_test.go @@ -6,8 +6,8 @@ import ( "cosmossdk.io/math" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/testutil/common/sample" - . "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/testutil/common/sample" + . "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestMsgDeposit_ValidateBasic(t *testing.T) { diff --git a/x/dex/types/message_multi_hop_swap.go b/x/dex/types/message_multi_hop_swap.go index 15b5727ff..1736814a2 100644 --- a/x/dex/types/message_multi_hop_swap.go +++ b/x/dex/types/message_multi_hop_swap.go @@ -5,7 +5,7 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - math_utils "github.com/neutron-org/neutron/utils/math" + math_utils "github.com/neutron-org/neutron/v2/utils/math" ) const TypeMsgMultiHopSwap = "multi_hop_swap" diff --git a/x/dex/types/message_multi_hop_swap_test.go b/x/dex/types/message_multi_hop_swap_test.go index 552ca806a..72ffd51e7 100644 --- a/x/dex/types/message_multi_hop_swap_test.go +++ b/x/dex/types/message_multi_hop_swap_test.go @@ -3,13 +3,13 @@ package types_test import ( "testing" - math_utils "github.com/neutron-org/neutron/utils/math" + math_utils "github.com/neutron-org/neutron/v2/utils/math" "cosmossdk.io/math" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/testutil/common/sample" - . "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/testutil/common/sample" + . "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestMsgMultiHopSwap_ValidateBasic(t *testing.T) { diff --git a/x/dex/types/message_place_limit_order_test.go b/x/dex/types/message_place_limit_order_test.go index 492323ce7..6921586f2 100644 --- a/x/dex/types/message_place_limit_order_test.go +++ b/x/dex/types/message_place_limit_order_test.go @@ -6,8 +6,8 @@ import ( "cosmossdk.io/math" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/testutil/common/sample" - . "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/testutil/common/sample" + . "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestMsgPlaceLimitOrder_ValidateBasic(t *testing.T) { diff --git a/x/dex/types/message_withdrawl_filled_limit_order_test.go b/x/dex/types/message_withdrawl_filled_limit_order_test.go index 4714bd54d..6433df06f 100644 --- a/x/dex/types/message_withdrawl_filled_limit_order_test.go +++ b/x/dex/types/message_withdrawl_filled_limit_order_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/testutil/common/sample" - . "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/testutil/common/sample" + . "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestMsgWithdrawFilledLimitOrder_ValidateBasic(t *testing.T) { diff --git a/x/dex/types/message_withdrawl_test.go b/x/dex/types/message_withdrawl_test.go index c33080b18..5f7c2ea79 100644 --- a/x/dex/types/message_withdrawl_test.go +++ b/x/dex/types/message_withdrawl_test.go @@ -6,8 +6,8 @@ import ( "cosmossdk.io/math" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/testutil/common/sample" - . "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/testutil/common/sample" + . "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestMsgWithdrawal_ValidateBasic(t *testing.T) { diff --git a/x/dex/types/pair_id.pb.go b/x/dex/types/pair_id.pb.go index cd092e4d4..93e6ee237 100644 --- a/x/dex/types/pair_id.pb.go +++ b/x/dex/types/pair_id.pb.go @@ -82,17 +82,18 @@ func init() { func init() { proto.RegisterFile("neutron/dex/pair_id.proto", fileDescriptor_7bd5bf8f218c5bfa) } var fileDescriptor_7bd5bf8f218c5bfa = []byte{ - // 158 bytes of a gzipped FileDescriptorProto + // 161 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcc, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x49, 0xad, 0xd0, 0x2f, 0x48, 0xcc, 0x2c, 0x8a, 0xcf, 0x4c, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x86, 0x4a, 0xe9, 0xa5, 0xa4, 0x56, 0x28, 0x59, 0x70, 0xb1, 0x05, 0x24, 0x66, 0x16, 0x79, 0xba, 0x08, 0x89, 0x71, 0xb1, 0x95, 0xe4, 0x67, 0xa7, 0xe6, 0x19, 0x48, 0x30, 0x2a, 0x30, 0x6a, 0x70, 0x06, 0x41, 0x79, 0x70, 0x71, 0x43, 0x09, 0x26, 0x24, - 0x71, 0x43, 0x27, 0x97, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, - 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xd2, 0x4a, + 0x71, 0x43, 0x27, 0xf7, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, + 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0xd2, 0x4d, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x87, 0xda, 0xa5, 0x9b, 0x5f, 0x94, - 0x0e, 0x63, 0xeb, 0x57, 0x80, 0x1d, 0x55, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x76, 0x93, - 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x69, 0x6e, 0x73, 0x3d, 0xb0, 0x00, 0x00, 0x00, + 0x0e, 0x63, 0xeb, 0x97, 0x19, 0xe9, 0x57, 0x80, 0xdd, 0x55, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, + 0x06, 0x76, 0x96, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x5a, 0xb1, 0x25, 0x24, 0xb3, 0x00, 0x00, + 0x00, } func (m *PairID) Marshal() (dAtA []byte, err error) { diff --git a/x/dex/types/params.go b/x/dex/types/params.go index b939716c6..d3f38f992 100644 --- a/x/dex/types/params.go +++ b/x/dex/types/params.go @@ -6,7 +6,7 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" "gopkg.in/yaml.v2" - math_utils "github.com/neutron-org/neutron/utils/math" + math_utils "github.com/neutron-org/neutron/v2/utils/math" ) var _ paramtypes.ParamSet = (*Params)(nil) diff --git a/x/dex/types/params.pb.go b/x/dex/types/params.pb.go index 569023bb5..1471b9e98 100644 --- a/x/dex/types/params.pb.go +++ b/x/dex/types/params.pb.go @@ -12,7 +12,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - github_com_neutron_org_neutron_utils_math "github.com/neutron-org/neutron/utils/math" + github_com_neutron_org_neutron_v2_utils_math "github.com/neutron-org/neutron/v2/utils/math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -28,8 +28,8 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package // Params defines the parameters for the module. type Params struct { - FeeTiers []uint64 `protobuf:"varint,1,rep,packed,name=fee_tiers,json=feeTiers,proto3" json:"fee_tiers,omitempty"` - MaxTrueTakerSpread github_com_neutron_org_neutron_utils_math.PrecDec `protobuf:"bytes,2,opt,name=max_true_taker_spread,json=maxTrueTakerSpread,proto3,customtype=github.com/neutron-org/neutron/utils/math.PrecDec" json:"max_true_taker_spread" yaml:"max_true_taker_spread"` + FeeTiers []uint64 `protobuf:"varint,1,rep,packed,name=fee_tiers,json=feeTiers,proto3" json:"fee_tiers,omitempty"` + MaxTrueTakerSpread github_com_neutron_org_neutron_v2_utils_math.PrecDec `protobuf:"bytes,2,opt,name=max_true_taker_spread,json=maxTrueTakerSpread,proto3,customtype=github.com/neutron-org/neutron/v2/utils/math.PrecDec" json:"max_true_taker_spread" yaml:"max_true_taker_spread"` } func (m *Params) Reset() { *m = Params{} } @@ -78,24 +78,25 @@ func init() { func init() { proto.RegisterFile("neutron/dex/params.proto", fileDescriptor_84a6bffcfc21009c) } var fileDescriptor_84a6bffcfc21009c = []byte{ - // 272 bytes of a gzipped FileDescriptorProto + // 275 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xc8, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x49, 0xad, 0xd0, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x86, 0xca, 0xe8, 0xa5, 0xa4, 0x56, 0x48, 0x89, 0xa4, 0xe7, - 0xa7, 0xe7, 0x83, 0xc5, 0xf5, 0x41, 0x2c, 0x88, 0x12, 0xa5, 0xcb, 0x8c, 0x5c, 0x6c, 0x01, 0x60, + 0xa7, 0xe7, 0x83, 0xc5, 0xf5, 0x41, 0x2c, 0x88, 0x12, 0xa5, 0x6b, 0x8c, 0x5c, 0x6c, 0x01, 0x60, 0x3d, 0x42, 0xd2, 0x5c, 0x9c, 0x69, 0xa9, 0xa9, 0xf1, 0x25, 0x99, 0xa9, 0x45, 0xc5, 0x12, 0x8c, - 0x0a, 0xcc, 0x1a, 0x2c, 0x41, 0x1c, 0x69, 0xa9, 0xa9, 0x21, 0x20, 0xbe, 0xd0, 0x52, 0x46, 0x2e, + 0x0a, 0xcc, 0x1a, 0x2c, 0x41, 0x1c, 0x69, 0xa9, 0xa9, 0x21, 0x20, 0xbe, 0xd0, 0x0a, 0x46, 0x2e, 0xd1, 0xdc, 0xc4, 0x8a, 0xf8, 0x92, 0xa2, 0xd2, 0xd4, 0xf8, 0x92, 0xc4, 0xec, 0xd4, 0xa2, 0xf8, - 0xe2, 0x82, 0xa2, 0xd4, 0xc4, 0x14, 0x09, 0x26, 0x05, 0x46, 0x0d, 0x4e, 0xa7, 0xa2, 0x13, 0xf7, - 0xe4, 0x19, 0x6e, 0xdd, 0x93, 0x37, 0x4c, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, - 0xd5, 0x87, 0xda, 0xae, 0x9b, 0x5f, 0x94, 0x0e, 0x63, 0xeb, 0x97, 0x96, 0x64, 0xe6, 0x14, 0xeb, - 0xe7, 0x26, 0x96, 0x64, 0xe8, 0x05, 0x14, 0xa5, 0x26, 0xbb, 0xa4, 0x26, 0xbf, 0xba, 0x27, 0x8f, - 0xdd, 0xe4, 0x4f, 0xf7, 0xe4, 0x65, 0x2a, 0x13, 0x73, 0x73, 0xac, 0x94, 0xb0, 0x4a, 0x2b, 0x05, - 0x09, 0xe5, 0x26, 0x56, 0x84, 0x14, 0x95, 0xa6, 0x86, 0x80, 0x44, 0x83, 0xc1, 0x82, 0x56, 0x2c, - 0x33, 0x16, 0xc8, 0x33, 0x38, 0xb9, 0x9c, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, - 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, - 0x94, 0x16, 0x01, 0xf7, 0x55, 0x80, 0x43, 0xb1, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x1c, - 0x44, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe4, 0xa1, 0x2f, 0xd0, 0x61, 0x01, 0x00, 0x00, + 0xe2, 0x82, 0xa2, 0xd4, 0xc4, 0x14, 0x09, 0x26, 0x05, 0x46, 0x0d, 0x4e, 0xa7, 0xd2, 0x13, 0xf7, + 0xe4, 0x19, 0x6e, 0xdd, 0x93, 0x37, 0x49, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, + 0xd5, 0x87, 0xda, 0xae, 0x9b, 0x5f, 0x94, 0x0e, 0x63, 0xeb, 0x97, 0x19, 0xe9, 0x97, 0x96, 0x64, + 0xe6, 0x14, 0xeb, 0xe7, 0x26, 0x96, 0x64, 0xe8, 0x05, 0x14, 0xa5, 0x26, 0xbb, 0xa4, 0x26, 0xbf, + 0xba, 0x27, 0x8f, 0xdd, 0xf0, 0x4f, 0xf7, 0xe4, 0x65, 0x2a, 0x13, 0x73, 0x73, 0xac, 0x94, 0xb0, + 0x4a, 0x2b, 0x05, 0x09, 0xe5, 0x26, 0x56, 0x84, 0x14, 0x95, 0xa6, 0x86, 0x80, 0x44, 0x83, 0xc1, + 0x82, 0x56, 0x2c, 0x33, 0x16, 0xc8, 0x33, 0x38, 0xb9, 0x9f, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, + 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, + 0xb1, 0x1c, 0x43, 0x94, 0x2e, 0x61, 0x27, 0x56, 0x80, 0xc3, 0xb2, 0xa4, 0xb2, 0x20, 0xb5, 0x38, + 0x89, 0x0d, 0x1c, 0x50, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x79, 0xe6, 0xa1, 0xfd, 0x67, + 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/dex/types/pool.go b/x/dex/types/pool.go index af9713b99..668d36100 100644 --- a/x/dex/types/pool.go +++ b/x/dex/types/pool.go @@ -4,8 +4,8 @@ import ( "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - math_utils "github.com/neutron-org/neutron/utils/math" - "github.com/neutron-org/neutron/x/dex/utils" + math_utils "github.com/neutron-org/neutron/v2/utils/math" + "github.com/neutron-org/neutron/v2/x/dex/utils" ) func NewPool( diff --git a/x/dex/types/pool.pb.go b/x/dex/types/pool.pb.go index e6a54d726..0aa5b65b0 100644 --- a/x/dex/types/pool.pb.go +++ b/x/dex/types/pool.pb.go @@ -91,7 +91,7 @@ func init() { func init() { proto.RegisterFile("neutron/dex/pool.proto", fileDescriptor_6ad7a9165eac1fde) } var fileDescriptor_6ad7a9165eac1fde = []byte{ - // 228 bytes of a gzipped FileDescriptorProto + // 231 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xcb, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x49, 0xad, 0xd0, 0x2f, 0xc8, 0xcf, 0xcf, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x86, 0x8a, 0xeb, 0xa5, 0xa4, 0x56, 0x48, 0x89, 0xa4, 0xe7, 0xa7, 0xe7, @@ -101,12 +101,12 @@ var fileDescriptor_6ad7a9165eac1fde = []byte{ 0x56, 0x5c, 0xdc, 0x39, 0xf9, 0xe5, 0xa9, 0x45, 0xf1, 0x25, 0x99, 0xc9, 0xd9, 0x06, 0x12, 0x4c, 0x0a, 0x8c, 0x1a, 0xdc, 0x46, 0x92, 0x7a, 0x48, 0x56, 0xea, 0x81, 0xf4, 0x05, 0x41, 0x8d, 0x0b, 0xe2, 0x02, 0xab, 0x0e, 0x01, 0x29, 0x06, 0xe9, 0x2d, 0x2d, 0x28, 0x80, 0xea, 0x35, 0x94, 0x60, - 0x26, 0xa8, 0x17, 0xac, 0x1a, 0xa4, 0xd7, 0xd0, 0xc9, 0xe5, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, + 0x26, 0xa8, 0x17, 0xac, 0x1a, 0xa4, 0xd7, 0xd0, 0xc9, 0xfd, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, - 0x8f, 0xe5, 0x18, 0xa2, 0xb4, 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, - 0xa1, 0x46, 0xe9, 0xe6, 0x17, 0xa5, 0xc3, 0xd8, 0xfa, 0x15, 0x60, 0x4f, 0x96, 0x54, 0x16, 0xa4, - 0x16, 0x27, 0xb1, 0x81, 0x7d, 0x67, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xdf, 0x6f, 0x46, 0xc2, - 0x3b, 0x01, 0x00, 0x00, + 0x8f, 0xe5, 0x18, 0xa2, 0x74, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, + 0xa1, 0x46, 0xe9, 0xe6, 0x17, 0xa5, 0xc3, 0xd8, 0xfa, 0x65, 0x46, 0xfa, 0x15, 0x60, 0x7f, 0x96, + 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x3d, 0x68, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x65, + 0xc6, 0x5e, 0xaa, 0x3e, 0x01, 0x00, 0x00, } func (m *Pool) Marshal() (dAtA []byte, err error) { diff --git a/x/dex/types/pool_denom_test.go b/x/dex/types/pool_denom_test.go index 57683a701..8be0a1d95 100644 --- a/x/dex/types/pool_denom_test.go +++ b/x/dex/types/pool_denom_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - . "github.com/neutron-org/neutron/x/dex/types" + . "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestValidatePoolDenom(t *testing.T) { diff --git a/x/dex/types/pool_liquidity.go b/x/dex/types/pool_liquidity.go index 402079717..5c460c1c4 100644 --- a/x/dex/types/pool_liquidity.go +++ b/x/dex/types/pool_liquidity.go @@ -3,7 +3,7 @@ package types import ( "cosmossdk.io/math" - math_utils "github.com/neutron-org/neutron/utils/math" + math_utils "github.com/neutron-org/neutron/v2/utils/math" ) type PoolLiquidity struct { diff --git a/x/dex/types/pool_metadata.pb.go b/x/dex/types/pool_metadata.pb.go index 8e18140ef..f4fbfb161 100644 --- a/x/dex/types/pool_metadata.pb.go +++ b/x/dex/types/pool_metadata.pb.go @@ -98,7 +98,7 @@ func init() { func init() { proto.RegisterFile("neutron/dex/pool_metadata.proto", fileDescriptor_c2ee8eaeac9c06d8) } var fileDescriptor_c2ee8eaeac9c06d8 = []byte{ - // 227 bytes of a gzipped FileDescriptorProto + // 230 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcf, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x49, 0xad, 0xd0, 0x2f, 0xc8, 0xcf, 0xcf, 0x89, 0xcf, 0x4d, 0x2d, 0x49, 0x4c, 0x49, 0x2c, 0x49, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x86, 0x2a, 0xd0, @@ -108,12 +108,12 @@ var fileDescriptor_c2ee8eaeac9c06d8 = []byte{ 0x99, 0x9c, 0x2d, 0xc1, 0xa4, 0xc0, 0xa8, 0xc1, 0x1c, 0x04, 0x66, 0x0b, 0x09, 0x70, 0x31, 0xa7, 0xa5, 0xa6, 0x4a, 0x30, 0x83, 0x15, 0x81, 0x98, 0x42, 0x3a, 0x5c, 0xec, 0x50, 0x63, 0x25, 0x58, 0x14, 0x18, 0x35, 0xb8, 0x8d, 0x84, 0xf5, 0x90, 0xec, 0xd7, 0x0b, 0x48, 0xcc, 0x2c, 0xf2, 0x74, - 0x09, 0x62, 0x03, 0xa9, 0xf1, 0x4c, 0x71, 0x72, 0x39, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, + 0x09, 0x62, 0x03, 0xa9, 0xf1, 0x4c, 0x71, 0x72, 0x3f, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, - 0x39, 0x86, 0x28, 0xad, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xa8, - 0x01, 0xba, 0xf9, 0x45, 0xe9, 0x30, 0xb6, 0x7e, 0x05, 0xd8, 0x07, 0x25, 0x95, 0x05, 0xa9, 0xc5, - 0x49, 0x6c, 0x60, 0x0f, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xe3, 0xe2, 0x08, 0xd4, 0x0b, - 0x01, 0x00, 0x00, + 0x39, 0x86, 0x28, 0xdd, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xa8, + 0x01, 0xba, 0xf9, 0x45, 0xe9, 0x30, 0xb6, 0x7e, 0x99, 0x91, 0x7e, 0x05, 0xd8, 0x13, 0x25, 0x95, + 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0x3f, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0x16, 0x50, + 0x66, 0x98, 0x0e, 0x01, 0x00, 0x00, } func (m *PoolMetadata) Marshal() (dAtA []byte, err error) { diff --git a/x/dex/types/pool_reserves.pb.go b/x/dex/types/pool_reserves.pb.go index 143a81d10..65151e33f 100644 --- a/x/dex/types/pool_reserves.pb.go +++ b/x/dex/types/pool_reserves.pb.go @@ -13,7 +13,7 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" proto "github.com/cosmos/gogoproto/proto" - github_com_neutron_org_neutron_utils_math "github.com/neutron-org/neutron/utils/math" + github_com_neutron_org_neutron_v2_utils_math "github.com/neutron-org/neutron/v2/utils/math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -88,10 +88,10 @@ func (m *PoolReservesKey) GetFee() uint64 { } type PoolReserves struct { - Key *PoolReservesKey `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` - ReservesMakerDenom github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,2,opt,name=reserves_maker_denom,json=reservesMakerDenom,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"reserves_maker_denom" yaml:"reserves_maker_denom"` - PriceTakerToMaker github_com_neutron_org_neutron_utils_math.PrecDec `protobuf:"bytes,3,opt,name=price_taker_to_maker,json=priceTakerToMaker,proto3,customtype=github.com/neutron-org/neutron/utils/math.PrecDec" json:"price_taker_to_maker" yaml:"price_taker_to_maker"` - PriceOppositeTakerToMaker github_com_neutron_org_neutron_utils_math.PrecDec `protobuf:"bytes,4,opt,name=price_opposite_taker_to_maker,json=priceOppositeTakerToMaker,proto3,customtype=github.com/neutron-org/neutron/utils/math.PrecDec" json:"price_opposite_taker_to_maker" yaml:"price_opposite_taker_to_maker"` + Key *PoolReservesKey `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"` + ReservesMakerDenom github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,2,opt,name=reserves_maker_denom,json=reservesMakerDenom,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"reserves_maker_denom" yaml:"reserves_maker_denom"` + PriceTakerToMaker github_com_neutron_org_neutron_v2_utils_math.PrecDec `protobuf:"bytes,3,opt,name=price_taker_to_maker,json=priceTakerToMaker,proto3,customtype=github.com/neutron-org/neutron/v2/utils/math.PrecDec" json:"price_taker_to_maker" yaml:"price_taker_to_maker"` + PriceOppositeTakerToMaker github_com_neutron_org_neutron_v2_utils_math.PrecDec `protobuf:"bytes,4,opt,name=price_opposite_taker_to_maker,json=priceOppositeTakerToMaker,proto3,customtype=github.com/neutron-org/neutron/v2/utils/math.PrecDec" json:"price_opposite_taker_to_maker" yaml:"price_opposite_taker_to_maker"` } func (m *PoolReserves) Reset() { *m = PoolReserves{} } @@ -142,36 +142,37 @@ func init() { func init() { proto.RegisterFile("neutron/dex/pool_reserves.proto", fileDescriptor_f0fe9f734c7ad538) } var fileDescriptor_f0fe9f734c7ad538 = []byte{ - // 464 bytes of a gzipped FileDescriptorProto + // 467 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x93, 0x41, 0x8b, 0xd3, 0x40, - 0x14, 0xc7, 0x3b, 0xa6, 0x08, 0x4e, 0x15, 0x35, 0x54, 0xe8, 0xae, 0x9a, 0x94, 0x20, 0x52, 0x84, - 0x4d, 0x50, 0x2f, 0x22, 0x9e, 0x96, 0x5e, 0x8a, 0x88, 0x25, 0xf4, 0xe4, 0x25, 0x64, 0x93, 0x67, - 0x77, 0x68, 0x93, 0x37, 0xcc, 0x4c, 0xa5, 0xbd, 0xfa, 0x09, 0xbc, 0x79, 0xf0, 0xe4, 0x77, 0x51, - 0xd8, 0xe3, 0x1e, 0xc5, 0x43, 0x90, 0xf6, 0xe6, 0x71, 0x3f, 0x81, 0xcc, 0x24, 0xd5, 0xb4, 0x46, - 0x3d, 0x78, 0x9a, 0x97, 0xff, 0xff, 0xcf, 0x9b, 0xdf, 0x9b, 0xcc, 0x50, 0x37, 0x87, 0x85, 0x12, - 0x98, 0x07, 0x29, 0x2c, 0x03, 0x8e, 0x38, 0x8f, 0x04, 0x48, 0x10, 0x6f, 0x40, 0xfa, 0x5c, 0xa0, - 0x42, 0xbb, 0x53, 0x05, 0xfc, 0x14, 0x96, 0x87, 0xdd, 0x29, 0x4e, 0xd1, 0xe8, 0x81, 0xae, 0xca, - 0xc8, 0xe1, 0x4e, 0x0f, 0x25, 0xe2, 0x14, 0x22, 0x1e, 0x33, 0x11, 0xb1, 0xb4, 0x0c, 0x78, 0x1f, - 0x08, 0xbd, 0x3e, 0x46, 0x9c, 0x87, 0x55, 0xeb, 0xe7, 0xb0, 0xb2, 0x9f, 0xd1, 0x6b, 0x3b, 0xd1, - 0x1e, 0xe9, 0x93, 0x41, 0xe7, 0x51, 0xcf, 0xaf, 0xed, 0xe7, 0x4f, 0x74, 0x62, 0x1c, 0x33, 0x31, - 0x1a, 0x86, 0x1d, 0xf5, 0xf3, 0x23, 0xb5, 0x9f, 0xd0, 0x03, 0xc5, 0x92, 0x59, 0xc4, 0xf2, 0x14, - 0x96, 0x91, 0x8a, 0x67, 0x20, 0x22, 0x85, 0x51, 0xa6, 0x8b, 0xde, 0xa5, 0x3e, 0x19, 0x58, 0xe1, - 0x2d, 0x1d, 0x18, 0x69, 0x7f, 0xa2, 0xd5, 0x09, 0xbe, 0xd0, 0x8b, 0x7d, 0x83, 0x5a, 0xaf, 0x01, - 0x7a, 0x56, 0x9f, 0x0c, 0xda, 0xa1, 0x2e, 0xbd, 0x4f, 0x6d, 0x7a, 0xb5, 0x4e, 0x67, 0xfb, 0xd4, - 0x9a, 0xc1, 0xaa, 0x02, 0xba, 0xb3, 0x03, 0xb4, 0x37, 0x45, 0xa8, 0x83, 0xf6, 0x7b, 0x42, 0xbb, - 0xdb, 0x53, 0x2b, 0x11, 0xa2, 0x14, 0x72, 0xcc, 0x0c, 0xc8, 0x95, 0x63, 0x38, 0x2b, 0xdc, 0xd6, - 0xd7, 0xc2, 0xbd, 0x3f, 0x65, 0xea, 0x74, 0x71, 0xe2, 0x27, 0x98, 0x05, 0x09, 0xca, 0x0c, 0x65, - 0xb5, 0x1c, 0xc9, 0x74, 0x16, 0xa8, 0x15, 0x07, 0xe9, 0x8f, 0x72, 0xf5, 0xbd, 0x70, 0x1b, 0xbb, - 0x5d, 0x14, 0xee, 0xed, 0x55, 0x9c, 0xcd, 0x9f, 0x7a, 0x4d, 0xae, 0x17, 0xda, 0x5b, 0xd9, 0xcc, - 0x39, 0xd4, 0xa2, 0xfd, 0x91, 0xd0, 0x2e, 0x17, 0x2c, 0x81, 0xfd, 0x23, 0xb2, 0x0c, 0x19, 0xaf, - 0xc8, 0x1e, 0xd6, 0xc8, 0xaa, 0x69, 0x8f, 0x50, 0x4c, 0xb7, 0x75, 0xb0, 0x50, 0x6c, 0x2e, 0x83, - 0x2c, 0x56, 0xa7, 0xfe, 0x58, 0x40, 0x32, 0x84, 0x44, 0x43, 0x36, 0x35, 0xfe, 0x05, 0xd9, 0xe4, - 0x7a, 0xe1, 0x4d, 0x23, 0xef, 0xfc, 0x90, 0xcf, 0x84, 0xde, 0x2d, 0xc3, 0xc8, 0x39, 0x4a, 0xa6, - 0x7e, 0x83, 0x6d, 0x1b, 0xd8, 0xb7, 0xe4, 0x7f, 0x68, 0xff, 0xbe, 0xc5, 0x45, 0xe1, 0xde, 0xab, - 0x63, 0xff, 0x21, 0xe6, 0x85, 0x07, 0xc6, 0x7f, 0x59, 0xd9, 0xf5, 0x39, 0x8e, 0x87, 0x67, 0x6b, - 0x87, 0x9c, 0xaf, 0x1d, 0xf2, 0x6d, 0xed, 0x90, 0x77, 0x1b, 0xa7, 0x75, 0xbe, 0x71, 0x5a, 0x5f, - 0x36, 0x4e, 0xeb, 0xd5, 0x83, 0x7f, 0x00, 0x2f, 0xcb, 0x87, 0xa3, 0x2f, 0xc0, 0xc9, 0x65, 0xf3, - 0x62, 0x1e, 0xff, 0x08, 0x00, 0x00, 0xff, 0xff, 0xc5, 0xf4, 0xdc, 0x1c, 0x98, 0x03, 0x00, 0x00, + 0x14, 0xc7, 0x3b, 0xa6, 0x08, 0x4e, 0x15, 0x35, 0x54, 0xe8, 0xae, 0x9a, 0x94, 0x20, 0xd2, 0x4b, + 0x13, 0x58, 0x3d, 0x88, 0x78, 0x5a, 0x0a, 0x52, 0x44, 0x2c, 0xa1, 0x27, 0x2f, 0x21, 0x9b, 0x79, + 0x76, 0x87, 0x36, 0x79, 0x61, 0x66, 0xba, 0xb4, 0x1f, 0xc0, 0xbb, 0x37, 0x0f, 0x5e, 0xfd, 0x30, + 0xc5, 0xd3, 0x1e, 0xc5, 0x43, 0x90, 0xf6, 0xe6, 0x71, 0x3f, 0x81, 0xcc, 0x24, 0xd5, 0x74, 0xad, + 0x7a, 0xd8, 0xd3, 0xbc, 0xfc, 0xff, 0x7f, 0xde, 0xfc, 0xde, 0x64, 0x86, 0xba, 0x19, 0xcc, 0x95, + 0xc0, 0x2c, 0x60, 0xb0, 0x08, 0x72, 0xc4, 0x59, 0x24, 0x40, 0x82, 0x38, 0x03, 0xe9, 0xe7, 0x02, + 0x15, 0xda, 0xad, 0x2a, 0xe0, 0x33, 0x58, 0x1c, 0xb6, 0x27, 0x38, 0x41, 0xa3, 0x07, 0xba, 0x2a, + 0x23, 0x87, 0x3b, 0x3d, 0x94, 0x88, 0x19, 0x44, 0x79, 0xcc, 0x45, 0xc4, 0x59, 0x19, 0xf0, 0x3e, + 0x11, 0x7a, 0x7b, 0x84, 0x38, 0x0b, 0xab, 0xd6, 0xaf, 0x60, 0x69, 0xbf, 0xa0, 0xb7, 0x76, 0xa2, + 0x1d, 0xd2, 0x25, 0xbd, 0xd6, 0x51, 0xc7, 0xaf, 0xed, 0xe7, 0x8f, 0x75, 0x62, 0x14, 0x73, 0x31, + 0x1c, 0x84, 0x2d, 0xf5, 0xeb, 0x83, 0xd9, 0xcf, 0xe8, 0x81, 0xe2, 0xc9, 0x34, 0xe2, 0x19, 0x83, + 0x45, 0xa4, 0xe2, 0x29, 0x88, 0x48, 0x61, 0x94, 0xea, 0xa2, 0x73, 0xad, 0x4b, 0x7a, 0x56, 0x78, + 0x4f, 0x07, 0x86, 0xda, 0x1f, 0x6b, 0x75, 0x8c, 0xaf, 0xf5, 0x62, 0xdf, 0xa1, 0xd6, 0x3b, 0x80, + 0x8e, 0xd5, 0x25, 0xbd, 0x66, 0xa8, 0x4b, 0xef, 0x4b, 0x93, 0xde, 0xac, 0xd3, 0xd9, 0x3e, 0xb5, + 0xa6, 0xb0, 0xac, 0x80, 0x1e, 0xec, 0x00, 0x5d, 0x9a, 0x22, 0xd4, 0x41, 0xfb, 0x23, 0xa1, 0xed, + 0xed, 0xa9, 0x95, 0x08, 0x11, 0x83, 0x0c, 0x53, 0x03, 0x72, 0xe3, 0x18, 0x56, 0x85, 0xdb, 0xf8, + 0x56, 0xb8, 0x8f, 0x27, 0x5c, 0x9d, 0xce, 0x4f, 0xfc, 0x04, 0xd3, 0x20, 0x41, 0x99, 0xa2, 0xac, + 0x96, 0xbe, 0x64, 0xd3, 0x40, 0x2d, 0x73, 0x90, 0xfe, 0x30, 0x53, 0x3f, 0x0a, 0x77, 0x6f, 0xb7, + 0x8b, 0xc2, 0xbd, 0xbf, 0x8c, 0xd3, 0xd9, 0x73, 0x6f, 0x9f, 0xeb, 0x85, 0xf6, 0x56, 0x36, 0x73, + 0x0e, 0xb4, 0x68, 0x7f, 0x26, 0xb4, 0x9d, 0x0b, 0x9e, 0xc0, 0xe5, 0x23, 0xb2, 0x0c, 0x99, 0xac, + 0xc8, 0x9e, 0xd6, 0xc8, 0xaa, 0x69, 0xfb, 0x28, 0x26, 0xdb, 0x3a, 0x38, 0x3b, 0x0a, 0xe6, 0x8a, + 0xcf, 0x64, 0x90, 0xc6, 0xea, 0xd4, 0x1f, 0x09, 0x48, 0x06, 0x90, 0x68, 0xce, 0x7d, 0xbd, 0x7f, + 0x73, 0xee, 0x73, 0xbd, 0xf0, 0xae, 0x91, 0x77, 0xfe, 0xc9, 0x8a, 0xd0, 0x87, 0x65, 0x18, 0xf3, + 0x1c, 0x25, 0x57, 0x7f, 0xf0, 0x36, 0x0d, 0xef, 0x7b, 0x72, 0x45, 0xe0, 0x7f, 0xef, 0x72, 0x51, + 0xb8, 0x8f, 0xea, 0xe4, 0x7f, 0x89, 0x79, 0xe1, 0x81, 0xf1, 0xdf, 0x54, 0x76, 0x7d, 0x94, 0xe3, + 0x97, 0xab, 0xb5, 0x43, 0xce, 0xd7, 0x0e, 0xf9, 0xbe, 0x76, 0xc8, 0x87, 0x8d, 0xd3, 0x38, 0xdf, + 0x38, 0x8d, 0xaf, 0x1b, 0xa7, 0xf1, 0xb6, 0xff, 0x7f, 0xe6, 0x45, 0xf9, 0x82, 0xf4, 0x4d, 0x38, + 0xb9, 0x6e, 0x9e, 0xce, 0x93, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x52, 0xcd, 0x34, 0x6a, 0xa1, + 0x03, 0x00, 0x00, } func (m *PoolReservesKey) Marshal() (dAtA []byte, err error) { diff --git a/x/dex/types/pool_reserves_key.go b/x/dex/types/pool_reserves_key.go index da445e3b3..231a83af6 100644 --- a/x/dex/types/pool_reserves_key.go +++ b/x/dex/types/pool_reserves_key.go @@ -3,8 +3,8 @@ package types import ( sdk "github.com/cosmos/cosmos-sdk/types" - math_utils "github.com/neutron-org/neutron/utils/math" - "github.com/neutron-org/neutron/x/dex/utils" + math_utils "github.com/neutron-org/neutron/v2/utils/math" + "github.com/neutron-org/neutron/v2/x/dex/utils" ) var _ TickLiquidityKey = (*PoolReservesKey)(nil) diff --git a/x/dex/types/pool_test.go b/x/dex/types/pool_test.go index cdddf859b..1cb1ff012 100644 --- a/x/dex/types/pool_test.go +++ b/x/dex/types/pool_test.go @@ -6,7 +6,7 @@ import ( "cosmossdk.io/math" "github.com/stretchr/testify/assert" - . "github.com/neutron-org/neutron/x/dex/types" + . "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestCalcGreatestMatchingRatioBothReservesNonZero(t *testing.T) { diff --git a/x/dex/types/price.go b/x/dex/types/price.go index aae2876fb..354f166e2 100644 --- a/x/dex/types/price.go +++ b/x/dex/types/price.go @@ -1,8 +1,8 @@ package types import ( - math_utils "github.com/neutron-org/neutron/utils/math" - "github.com/neutron-org/neutron/x/dex/utils" + math_utils "github.com/neutron-org/neutron/v2/utils/math" + "github.com/neutron-org/neutron/v2/x/dex/utils" ) // NOTE: 559_680 is the highest possible tick at which price can be calculated with a < 1% error diff --git a/x/dex/types/query.pb.go b/x/dex/types/query.pb.go index 011e37043..4f878ea24 100644 --- a/x/dex/types/query.pb.go +++ b/x/dex/types/query.pb.go @@ -24,7 +24,7 @@ import ( status "google.golang.org/grpc/status" _ "google.golang.org/protobuf/types/known/timestamppb" - github_com_neutron_org_neutron_utils_math "github.com/neutron-org/neutron/utils/math" + github_com_neutron_org_neutron_v2_utils_math "github.com/neutron-org/neutron/v2/utils/math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -1303,11 +1303,11 @@ func (m *QueryGetPoolReservesResponse) GetPoolReserves() *PoolReserves { } type QueryEstimateMultiHopSwapRequest struct { - Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` - Receiver string `protobuf:"bytes,2,opt,name=receiver,proto3" json:"receiver,omitempty"` - Routes []*MultiHopRoute `protobuf:"bytes,3,rep,name=routes,proto3" json:"routes,omitempty"` - AmountIn github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=amount_in,json=amountIn,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"amount_in" yaml:"amount_in"` - ExitLimitPrice github_com_neutron_org_neutron_utils_math.PrecDec `protobuf:"bytes,5,opt,name=exit_limit_price,json=exitLimitPrice,proto3,customtype=github.com/neutron-org/neutron/utils/math.PrecDec" json:"exit_limit_price" yaml:"exit_limit_price"` + Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` + Receiver string `protobuf:"bytes,2,opt,name=receiver,proto3" json:"receiver,omitempty"` + Routes []*MultiHopRoute `protobuf:"bytes,3,rep,name=routes,proto3" json:"routes,omitempty"` + AmountIn github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=amount_in,json=amountIn,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"amount_in" yaml:"amount_in"` + ExitLimitPrice github_com_neutron_org_neutron_v2_utils_math.PrecDec `protobuf:"bytes,5,opt,name=exit_limit_price,json=exitLimitPrice,proto3,customtype=github.com/neutron-org/neutron/v2/utils/math.PrecDec" json:"exit_limit_price" yaml:"exit_limit_price"` // If pickBestRoute == true then all routes are run and the route with the best price is chosen // otherwise, the first succesful route is used. PickBestRoute bool `protobuf:"varint,6,opt,name=pick_best_route,json=pickBestRoute,proto3" json:"pick_best_route,omitempty"` @@ -1924,145 +1924,145 @@ func init() { func init() { proto.RegisterFile("neutron/dex/query.proto", fileDescriptor_b6613ea5fce61e9c) } var fileDescriptor_b6613ea5fce61e9c = []byte{ - // 2194 bytes of a gzipped FileDescriptorProto + // 2199 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x5a, 0xcf, 0x6f, 0x1b, 0xc7, 0x15, 0xf6, 0x8a, 0xb2, 0x2c, 0x8d, 0x7e, 0x58, 0x1e, 0xc9, 0x15, 0x4d, 0xc9, 0xa4, 0xb4, 0x89, - 0x2d, 0xd9, 0x89, 0xb8, 0x96, 0x0a, 0x27, 0x45, 0xda, 0xa0, 0x15, 0xab, 0xc4, 0x61, 0x13, 0x43, + 0x2d, 0xd9, 0x89, 0xb8, 0x96, 0x5a, 0x27, 0x45, 0xda, 0xa0, 0x95, 0xaa, 0xc4, 0x61, 0x13, 0x43, 0xea, 0x56, 0x6d, 0x93, 0xa2, 0xc0, 0x62, 0x45, 0x8e, 0xa5, 0x85, 0x96, 0x3b, 0xeb, 0xdd, 0xa1, - 0x43, 0xc2, 0x70, 0x0b, 0xe4, 0x18, 0xf4, 0x10, 0x24, 0x45, 0x8b, 0xf6, 0x90, 0x1e, 0x8a, 0x1e, - 0x8b, 0xb6, 0x40, 0x81, 0x5c, 0x8a, 0x1e, 0x0a, 0x14, 0xc8, 0x21, 0x87, 0x00, 0xb9, 0x14, 0x2d, - 0xc0, 0x16, 0x76, 0x4f, 0xee, 0xa5, 0xd0, 0x5f, 0x50, 0xcc, 0xec, 0x5b, 0x72, 0x97, 0x9c, 0xe5, - 0x92, 0x36, 0x53, 0xe4, 0xa4, 0xdd, 0xd9, 0x37, 0xf3, 0xbe, 0xf7, 0xcd, 0x37, 0xf3, 0x66, 0x1e, - 0x85, 0x96, 0x1c, 0x52, 0x67, 0x1e, 0x75, 0xb4, 0x2a, 0x69, 0x68, 0x77, 0xeb, 0xc4, 0x6b, 0x16, - 0x5d, 0x8f, 0x32, 0x8a, 0xa7, 0xe1, 0x43, 0xb1, 0x4a, 0x1a, 0xb9, 0xc5, 0x23, 0x7a, 0x44, 0x45, - 0xbb, 0xc6, 0x9f, 0x02, 0x93, 0xdc, 0xca, 0x11, 0xa5, 0x47, 0x36, 0xd1, 0x4c, 0xd7, 0xd2, 0x4c, - 0xc7, 0xa1, 0xcc, 0x64, 0x16, 0x75, 0x7c, 0xf8, 0x7a, 0xbd, 0x42, 0xfd, 0x1a, 0xf5, 0xb5, 0x43, - 0xd3, 0x27, 0xc1, 0xc8, 0xda, 0xbd, 0xad, 0x43, 0xc2, 0xcc, 0x2d, 0xcd, 0x35, 0x8f, 0x2c, 0x47, - 0x18, 0x83, 0x6d, 0x36, 0x8a, 0xc2, 0x35, 0x3d, 0xb3, 0xd6, 0x1e, 0x25, 0xfa, 0xc5, 0xb6, 0x6a, - 0x16, 0x33, 0xa8, 0x57, 0x25, 0x9e, 0xc1, 0x3c, 0xd3, 0xa9, 0x1c, 0x13, 0xa3, 0xee, 0x13, 0x0f, - 0x6c, 0xaf, 0xa4, 0xd8, 0x82, 0xd9, 0x6a, 0xd4, 0xac, 0x4a, 0x5c, 0xea, 0x5b, 0xcc, 0xf0, 0x48, - 0x85, 0x7a, 0x55, 0x99, 0x05, 0xb3, 0x2a, 0x27, 0x86, 0x6d, 0xdd, 0xad, 0x5b, 0x55, 0x8b, 0x01, - 0x3b, 0xb9, 0x42, 0x0c, 0x30, 0xa5, 0xb6, 0xe1, 0x11, 0x9f, 0x78, 0xf7, 0x48, 0x88, 0x7b, 0x31, - 0x36, 0x44, 0x03, 0x5a, 0xf3, 0x51, 0x4e, 0x42, 0x36, 0x2a, 0xd4, 0x0a, 0x79, 0x28, 0x00, 0xa3, - 0xe2, 0xed, 0xb0, 0x7e, 0x47, 0x63, 0x56, 0x8d, 0xf8, 0xcc, 0xac, 0xb9, 0x60, 0xf0, 0xa5, 0x6e, - 0xbf, 0x89, 0x78, 0x6a, 0x84, 0x99, 0x55, 0x93, 0x99, 0x81, 0x81, 0xba, 0x88, 0xf0, 0xb7, 0xf9, - 0x1c, 0xec, 0x0b, 0x72, 0x75, 0x72, 0xb7, 0x4e, 0x7c, 0xa6, 0xbe, 0x86, 0x16, 0x62, 0xad, 0xbe, - 0x4b, 0x1d, 0x9f, 0xe0, 0x2d, 0x34, 0x11, 0x4c, 0x42, 0x56, 0x59, 0x55, 0x36, 0xa6, 0xb7, 0x17, - 0x8a, 0x11, 0x31, 0x14, 0x03, 0xe3, 0xd2, 0xf8, 0xc7, 0xad, 0xc2, 0x19, 0x1d, 0x0c, 0x55, 0x13, - 0x3d, 0x2b, 0x46, 0xba, 0x45, 0xd8, 0x1b, 0x9c, 0xf9, 0x3d, 0x4e, 0xfc, 0x41, 0xc0, 0xfb, 0x77, - 0x7d, 0xe2, 0x81, 0x47, 0x9c, 0x45, 0xe7, 0xcc, 0x6a, 0xd5, 0x23, 0x7e, 0x30, 0xf6, 0x94, 0x1e, - 0xbe, 0xe2, 0x02, 0x9a, 0x0e, 0xe7, 0xf4, 0x84, 0x34, 0xb3, 0x63, 0xe2, 0x2b, 0x82, 0xa6, 0xd7, - 0x49, 0x53, 0x7d, 0x57, 0x41, 0x57, 0x52, 0x7c, 0x00, 0x7e, 0x13, 0x65, 0x93, 0xa4, 0x02, 0x11, - 0xa9, 0xb1, 0x88, 0xa4, 0xa3, 0x89, 0x00, 0x15, 0xfd, 0xa2, 0x2d, 0xfb, 0xa8, 0x3a, 0x10, 0xef, - 0x8e, 0x6d, 0xf7, 0x8d, 0xf7, 0x55, 0x84, 0x3a, 0x6a, 0x07, 0xe7, 0x57, 0x8b, 0x81, 0x0c, 0x8a, - 0x5c, 0x06, 0xc5, 0x60, 0xd1, 0x81, 0x18, 0x8a, 0xfb, 0xe6, 0x11, 0x81, 0xbe, 0x7a, 0xa4, 0xa7, - 0xfa, 0x59, 0x18, 0x7c, 0xb2, 0xc3, 0x81, 0x82, 0xcf, 0x8c, 0x20, 0x78, 0x7c, 0x2b, 0x16, 0xd4, - 0x98, 0x08, 0x6a, 0x3d, 0x35, 0xa8, 0x00, 0x5f, 0x2c, 0xaa, 0x9f, 0x29, 0x68, 0x35, 0x71, 0x4a, - 0x43, 0x0a, 0x97, 0xd0, 0x39, 0xd7, 0xb4, 0x3c, 0xc3, 0xaa, 0x82, 0x64, 0x26, 0xf8, 0x6b, 0xb9, - 0x8a, 0x2f, 0x23, 0x24, 0x16, 0xa7, 0xe5, 0x54, 0x49, 0x43, 0xc0, 0xc8, 0xe8, 0x53, 0xbc, 0xa5, - 0xcc, 0x1b, 0xf0, 0x25, 0x34, 0xc9, 0xe8, 0x09, 0x71, 0x0c, 0xcb, 0xc9, 0x66, 0x02, 0xad, 0x89, - 0xf7, 0xb2, 0xd3, 0xad, 0xb5, 0xf1, 0x1e, 0xad, 0x35, 0xd1, 0x5a, 0x1f, 0x5c, 0xc0, 0xf4, 0x01, - 0x5a, 0x90, 0x30, 0x0d, 0x93, 0x9c, 0xef, 0x4f, 0x32, 0x10, 0x7c, 0xa1, 0x87, 0x60, 0xf5, 0xc3, - 0x90, 0x13, 0xd9, 0x4c, 0xa7, 0x72, 0x12, 0x0d, 0x7a, 0x2c, 0x1e, 0x74, 0x5c, 0x8a, 0x99, 0x27, - 0x96, 0xe2, 0x5f, 0x14, 0x20, 0x47, 0x0e, 0x30, 0x8d, 0x9c, 0xcc, 0x53, 0x90, 0x33, 0x3a, 0xe5, - 0xfd, 0x18, 0x2d, 0x87, 0x31, 0x70, 0x49, 0xef, 0x06, 0x69, 0xc0, 0x4f, 0xdf, 0xa6, 0x5e, 0x95, - 0x20, 0x78, 0x12, 0x16, 0x7f, 0xa3, 0xa0, 0x15, 0x39, 0x02, 0x20, 0xf0, 0x6b, 0x68, 0x12, 0x92, - 0x93, 0x0f, 0xac, 0xe5, 0x62, 0xac, 0x41, 0x07, 0x5d, 0x24, 0x2e, 0x60, 0xac, 0xdd, 0x63, 0x74, - 0x44, 0xbd, 0xa3, 0xa0, 0x7c, 0x14, 0x67, 0x67, 0xb2, 0xfe, 0x8f, 0x64, 0x7d, 0xa4, 0xa0, 0x42, - 0x22, 0x08, 0xe0, 0xeb, 0x75, 0x34, 0x13, 0x11, 0x9c, 0x3f, 0xf4, 0x5e, 0x37, 0xdd, 0x51, 0xdb, - 0x08, 0xe9, 0xfb, 0x65, 0x64, 0x9a, 0x0f, 0xac, 0xca, 0xc9, 0x1b, 0xe1, 0x41, 0xe2, 0x8b, 0xb0, - 0x92, 0xff, 0xa0, 0xa0, 0xcb, 0x09, 0xe0, 0x80, 0xd4, 0x5b, 0x68, 0x2e, 0x7e, 0xfe, 0x91, 0x4a, - 0x31, 0xd6, 0x17, 0xe8, 0x9c, 0x65, 0xd1, 0xc6, 0xd1, 0x11, 0xfa, 0xa1, 0x82, 0x36, 0xc2, 0xad, - 0xb9, 0xec, 0x98, 0x15, 0x66, 0xdd, 0x23, 0x23, 0xdd, 0x26, 0xe3, 0x59, 0x25, 0xd3, 0x9d, 0x55, - 0x52, 0x53, 0xc7, 0xfb, 0x0a, 0xba, 0x36, 0x00, 0x40, 0x20, 0x98, 0xa0, 0x15, 0x0b, 0x8c, 0x8c, - 0xa7, 0x4d, 0x26, 0x97, 0xac, 0x24, 0x77, 0xaa, 0x07, 0xa4, 0xed, 0xd8, 0x76, 0x2a, 0x69, 0xa3, - 0x3a, 0xb2, 0xfc, 0x23, 0x24, 0xa2, 0xbf, 0xd3, 0x81, 0x89, 0xc8, 0x8c, 0x80, 0x88, 0xd1, 0xe9, - 0xf0, 0x17, 0x4a, 0x27, 0x83, 0xec, 0x53, 0x6a, 0xeb, 0x70, 0xfe, 0xff, 0x22, 0xac, 0xeb, 0xdf, - 0x46, 0x36, 0x9d, 0x38, 0x36, 0x20, 0x7b, 0x17, 0xcd, 0xc6, 0x2e, 0x2d, 0xc0, 0xee, 0xa5, 0xf8, - 0x39, 0x3f, 0xd2, 0x13, 0x88, 0x9d, 0x71, 0x23, 0x6d, 0x23, 0xcd, 0x31, 0xcb, 0xe1, 0x92, 0x19, - 0x15, 0x97, 0x29, 0xcb, 0x78, 0x1e, 0x65, 0xee, 0x10, 0x22, 0x96, 0xef, 0xb8, 0xce, 0x1f, 0xd5, - 0x2a, 0x70, 0xd6, 0x83, 0x21, 0x99, 0x33, 0x65, 0x68, 0xce, 0xd4, 0x8f, 0x32, 0x70, 0xba, 0x7b, - 0xc5, 0x67, 0x56, 0xcd, 0x64, 0xe4, 0x76, 0xdd, 0x66, 0xd6, 0x6b, 0xd4, 0xfd, 0xce, 0xdb, 0xa6, - 0x1b, 0x49, 0xa8, 0x15, 0x8f, 0x98, 0x8c, 0x7a, 0x61, 0x42, 0x85, 0x57, 0x9c, 0x43, 0x93, 0x1e, - 0xa9, 0x10, 0xeb, 0x1e, 0xf1, 0x20, 0xe0, 0xf6, 0x3b, 0xde, 0x46, 0x13, 0x1e, 0xad, 0x33, 0xe2, - 0x67, 0x33, 0x92, 0x3d, 0x3a, 0xf4, 0xa3, 0x73, 0x13, 0x1d, 0x2c, 0xb1, 0x8d, 0xa6, 0xcc, 0x1a, - 0xad, 0x3b, 0x8c, 0x33, 0x28, 0xf6, 0xb2, 0xd2, 0x1e, 0xbf, 0xd7, 0xfd, 0xbd, 0x55, 0xb8, 0x7a, - 0x64, 0xb1, 0xe3, 0xfa, 0x61, 0xb1, 0x42, 0x6b, 0x1a, 0x5c, 0x5b, 0x83, 0x3f, 0x9b, 0x7e, 0xf5, - 0x44, 0x63, 0x4d, 0x97, 0xf8, 0xc5, 0xb2, 0xc3, 0x1e, 0xb7, 0x0a, 0x9d, 0x21, 0x4e, 0x5b, 0x85, - 0xf9, 0xa6, 0x59, 0xb3, 0x5f, 0x52, 0xdb, 0x4d, 0xaa, 0x3e, 0x19, 0x3c, 0x97, 0x1d, 0xfc, 0xbe, - 0x82, 0xe6, 0x49, 0xc3, 0x62, 0xb0, 0xc0, 0x5d, 0xcf, 0xaa, 0x90, 0xec, 0x59, 0xe1, 0xf5, 0x18, - 0xbc, 0x6e, 0x45, 0xbc, 0x02, 0xfc, 0x4d, 0xea, 0x1d, 0x85, 0xcf, 0x5a, 0x9d, 0x59, 0xb6, 0xaf, - 0xd5, 0x4c, 0x76, 0x5c, 0xdc, 0xf7, 0x48, 0x65, 0x97, 0x54, 0x1e, 0xb7, 0x0a, 0x3d, 0x83, 0x9e, - 0xb6, 0x0a, 0x4b, 0x01, 0x8e, 0xee, 0x2f, 0xaa, 0x3e, 0xc7, 0x9b, 0xc4, 0xc6, 0xb0, 0xcf, 0x1b, - 0xf0, 0x55, 0x74, 0xde, 0xe5, 0x42, 0x39, 0x24, 0x3e, 0x33, 0x04, 0x2d, 0xd9, 0x89, 0x55, 0x65, - 0x63, 0x52, 0x9f, 0xe5, 0xcd, 0x25, 0xbe, 0xb6, 0x78, 0x23, 0xbf, 0xab, 0xac, 0xf5, 0x99, 0x39, - 0x50, 0xc9, 0x5d, 0x34, 0xc9, 0xef, 0xf3, 0x06, 0xad, 0xb3, 0xb6, 0x40, 0xa2, 0x2b, 0x22, 0x5c, - 0x0b, 0xdf, 0xa4, 0x96, 0x53, 0xfa, 0x2a, 0x04, 0xbd, 0x3e, 0x00, 0xd5, 0xbc, 0xc3, 0xe3, 0x56, - 0xa1, 0x3d, 0xba, 0x7e, 0x8e, 0x3f, 0xed, 0xd5, 0x99, 0xfa, 0xa7, 0x71, 0xf4, 0x4c, 0x0c, 0xd8, - 0xbe, 0x6d, 0x56, 0x22, 0x5b, 0xdf, 0xd3, 0xa9, 0xaa, 0xcf, 0x2d, 0x6a, 0x19, 0x4d, 0x05, 0x9f, - 0x78, 0xb0, 0x41, 0x22, 0x0c, 0x6c, 0xf7, 0xea, 0x0c, 0x17, 0xd1, 0x62, 0x67, 0xfd, 0x19, 0x96, - 0x63, 0x30, 0x2a, 0xec, 0xce, 0x8a, 0x95, 0x38, 0xdf, 0x5e, 0x89, 0x65, 0xe7, 0x80, 0x72, 0xfb, - 0x98, 0x12, 0x27, 0x3e, 0x6f, 0x25, 0xbe, 0x84, 0x10, 0xa4, 0x97, 0xa6, 0x4b, 0xb2, 0xe7, 0x56, - 0x95, 0x8d, 0xb9, 0xed, 0xe5, 0xa4, 0xdc, 0xd2, 0x74, 0x89, 0x3e, 0x45, 0xc3, 0x47, 0x7c, 0x1b, - 0x9d, 0x27, 0x0d, 0xd7, 0xf2, 0xc4, 0xde, 0x65, 0x30, 0xab, 0x46, 0xb2, 0x93, 0x62, 0xa6, 0x73, - 0xc5, 0xa0, 0x7c, 0x53, 0x0c, 0xcb, 0x37, 0xc5, 0x83, 0xb0, 0x7c, 0x53, 0x9a, 0xe4, 0x7b, 0xc1, - 0x7b, 0xff, 0x2c, 0x28, 0x5c, 0x7f, 0x61, 0x67, 0xfe, 0x19, 0xff, 0x08, 0xcd, 0xd6, 0xcc, 0xc6, - 0x4e, 0x80, 0x92, 0x33, 0x34, 0x25, 0x82, 0x7f, 0x8b, 0x77, 0x18, 0x2a, 0xf8, 0xb9, 0x9a, 0xd9, - 0x30, 0xcc, 0xf6, 0x38, 0xa7, 0xad, 0xc2, 0xc5, 0x80, 0x81, 0x78, 0xbb, 0xaa, 0xcf, 0xb4, 0xfd, - 0x71, 0xf9, 0xfc, 0x37, 0x03, 0xa5, 0x8c, 0x44, 0xf9, 0x80, 0xb4, 0x7f, 0xae, 0xa0, 0x59, 0x46, - 0x99, 0x69, 0xf3, 0xd9, 0xe4, 0xe2, 0x4b, 0x17, 0xf8, 0x9b, 0xc3, 0x0b, 0x3c, 0xee, 0xe2, 0xb4, - 0x55, 0x58, 0x0c, 0x82, 0x88, 0x35, 0xab, 0xfa, 0xb4, 0x78, 0x2f, 0x3b, 0xbc, 0x17, 0xfe, 0x40, - 0x41, 0x33, 0xfe, 0xdb, 0xa6, 0xdb, 0x06, 0x36, 0x96, 0x06, 0xec, 0x7b, 0xc3, 0x03, 0x8b, 0x79, - 0x38, 0x6d, 0x15, 0x16, 0x02, 0x5c, 0xd1, 0x56, 0x55, 0x47, 0xfc, 0x15, 0x50, 0x71, 0xbe, 0xc4, - 0x57, 0x5a, 0x67, 0x01, 0xac, 0xcc, 0xe7, 0xc1, 0x57, 0xcc, 0x45, 0x87, 0xaf, 0x58, 0xb3, 0xaa, - 0x4f, 0xf3, 0xf7, 0xbd, 0x3a, 0xe3, 0xbd, 0xd4, 0x1f, 0xa2, 0xf9, 0xa0, 0xec, 0x27, 0x32, 0xd3, - 0xd3, 0x55, 0x59, 0x20, 0x91, 0x66, 0x3a, 0x89, 0x54, 0x43, 0x8b, 0xed, 0xd1, 0x4b, 0xcd, 0xf2, - 0x6e, 0xd4, 0x03, 0x4f, 0xa0, 0xe0, 0x61, 0x5c, 0x9f, 0xe0, 0xaf, 0xe5, 0xaa, 0xfa, 0x0d, 0x74, - 0x21, 0x02, 0x07, 0xd4, 0xf6, 0x1c, 0x1a, 0xe7, 0x9f, 0x41, 0x63, 0x17, 0x7a, 0xb2, 0x2c, 0x64, - 0x57, 0x61, 0xa4, 0x6e, 0xc6, 0xcf, 0x0f, 0xb7, 0xa1, 0xf6, 0x19, 0x7a, 0x9e, 0x43, 0x63, 0x6d, - 0xa7, 0x63, 0x56, 0xb5, 0x3b, 0xd5, 0x77, 0xcc, 0x3b, 0xa9, 0x7e, 0x3f, 0x5a, 0x43, 0x4d, 0x4c, - 0xf5, 0x61, 0x4f, 0x28, 0x86, 0xce, 0x44, 0xdb, 0x54, 0x12, 0x3f, 0x20, 0x76, 0x83, 0x1a, 0xd5, - 0x31, 0xbb, 0xfb, 0xb0, 0x27, 0x8b, 0xc6, 0xed, 0x8a, 0x26, 0x33, 0x50, 0x34, 0x6e, 0xa4, 0x6d, - 0x64, 0x87, 0xbd, 0xed, 0x4f, 0x96, 0xd0, 0x59, 0x81, 0x17, 0x1f, 0xa3, 0x89, 0xa0, 0x96, 0x8c, - 0x0b, 0x31, 0x2c, 0xbd, 0x85, 0xea, 0xdc, 0x6a, 0xb2, 0x41, 0xe0, 0x42, 0x5d, 0x7e, 0xe7, 0xb3, - 0x7f, 0x7f, 0x30, 0x76, 0x11, 0x2f, 0x68, 0xbd, 0xbf, 0x25, 0xe0, 0xbf, 0x2a, 0xe8, 0xa2, 0xf4, - 0xee, 0x8f, 0xb7, 0x7a, 0x07, 0x4e, 0x29, 0x61, 0xe7, 0xb6, 0x87, 0xe9, 0x02, 0xe8, 0x5e, 0x11, - 0xe8, 0xbe, 0x8e, 0x5f, 0xd6, 0x06, 0xf9, 0x3d, 0x43, 0xbb, 0x0f, 0x05, 0x94, 0x07, 0xda, 0xfd, - 0xc8, 0x65, 0xf3, 0x01, 0xfe, 0xbd, 0x82, 0xb2, 0x52, 0x47, 0x3b, 0xb6, 0x2d, 0x0b, 0x25, 0xa5, - 0x3a, 0x2d, 0x0b, 0x25, 0xad, 0xbe, 0xac, 0x6e, 0x8a, 0x50, 0xd6, 0xf1, 0x95, 0x81, 0x42, 0xe1, - 0x90, 0xd7, 0x92, 0x20, 0x97, 0x9a, 0x3b, 0x50, 0x28, 0x7a, 0x4e, 0x0a, 0x44, 0x5e, 0x6f, 0xca, - 0x3d, 0x3f, 0x98, 0x31, 0xe0, 0xbd, 0x21, 0xf0, 0x5e, 0xc7, 0x1b, 0x31, 0xbc, 0x82, 0xe6, 0x68, - 0xbd, 0xa8, 0xc3, 0x39, 0xfe, 0x44, 0x41, 0x17, 0x7a, 0x6f, 0x8e, 0x9b, 0x83, 0x4d, 0x7b, 0x08, - 0xb2, 0x38, 0xa8, 0x39, 0xc0, 0x7c, 0x53, 0xc0, 0xd4, 0xf1, 0x7e, 0x1a, 0xad, 0xda, 0x7d, 0xd8, - 0xa7, 0xb9, 0x38, 0xe0, 0x64, 0xc6, 0x1f, 0xdb, 0x7b, 0x74, 0xb7, 0x68, 0xfe, 0xa8, 0xa0, 0xc5, - 0x1e, 0xbf, 0x5c, 0x30, 0x9b, 0x83, 0xcd, 0x7e, 0x9f, 0x88, 0xfa, 0x55, 0x80, 0xd5, 0x97, 0x45, - 0x44, 0x2f, 0xe2, 0x9b, 0x4f, 0x14, 0x11, 0xfe, 0xa9, 0x82, 0xce, 0x47, 0x0b, 0xa3, 0x1c, 0xf1, - 0x46, 0xe2, 0xcc, 0x77, 0x15, 0x70, 0x73, 0xd7, 0x06, 0xb0, 0x04, 0x9c, 0xcf, 0x0b, 0x9c, 0x57, - 0xf1, 0xb3, 0xbd, 0x02, 0x09, 0xcb, 0xa9, 0x11, 0x71, 0xfc, 0x5a, 0x41, 0xf3, 0xb1, 0x7a, 0x17, - 0xc7, 0x25, 0xf7, 0x26, 0xab, 0xf7, 0xe5, 0xae, 0x0f, 0x62, 0x0a, 0xc8, 0xbe, 0x22, 0x90, 0x6d, - 0xe3, 0x1b, 0x5a, 0xf2, 0x0f, 0x92, 0x72, 0xf2, 0xfe, 0xa3, 0xa0, 0x4b, 0x89, 0x35, 0x17, 0x7c, - 0x53, 0xaa, 0xcd, 0xb4, 0xc2, 0x50, 0xee, 0x85, 0x61, 0xbb, 0x41, 0x18, 0x86, 0x08, 0xe3, 0x2d, - 0xfc, 0xfd, 0x58, 0x18, 0x77, 0x2c, 0xdb, 0x26, 0x55, 0x63, 0x14, 0x0a, 0xff, 0xb3, 0x82, 0x56, - 0x12, 0x61, 0xf0, 0xf9, 0xb9, 0x29, 0x25, 0xfd, 0x49, 0x02, 0x1e, 0xa4, 0x96, 0xa5, 0x6a, 0x22, - 0xe0, 0x6b, 0x78, 0x7d, 0xc0, 0x80, 0xf1, 0xaf, 0x14, 0x74, 0x3e, 0x5a, 0x3a, 0x48, 0xd6, 0xba, - 0xa4, 0x3c, 0x92, 0xa0, 0x75, 0x59, 0x11, 0x43, 0x7d, 0x51, 0x20, 0xdb, 0xc2, 0x9a, 0x96, 0xf8, - 0x03, 0xb6, 0x5c, 0x50, 0xbf, 0x53, 0xd0, 0x4c, 0x74, 0x44, 0x19, 0x3c, 0x79, 0xf5, 0x46, 0x06, - 0x2f, 0xa1, 0xc6, 0xa2, 0x7e, 0x4b, 0xc0, 0xdb, 0xc5, 0xa5, 0x21, 0xe1, 0x75, 0x89, 0xe3, 0x0e, - 0x21, 0x62, 0xa1, 0x2e, 0xca, 0xae, 0xea, 0xb2, 0x6d, 0xaf, 0x4f, 0x31, 0x46, 0xb6, 0xed, 0xf5, - 0xab, 0x00, 0x24, 0x6c, 0x27, 0x04, 0xba, 0x18, 0x35, 0xde, 0xc7, 0x38, 0xa6, 0xae, 0xc1, 0x4f, - 0xe4, 0x9c, 0xd7, 0xa5, 0x84, 0x8b, 0x17, 0xbe, 0x91, 0xec, 0x59, 0x7e, 0xc5, 0xcf, 0x6d, 0x0d, - 0xd1, 0xa3, 0xaf, 0x56, 0xdb, 0x70, 0x5d, 0xde, 0x2d, 0xaa, 0x59, 0xfc, 0x00, 0x8d, 0xf3, 0xb9, - 0xc3, 0x97, 0x25, 0x47, 0xb2, 0xce, 0x7d, 0x22, 0x97, 0x4f, 0xfa, 0x0c, 0x7e, 0x5f, 0x10, 0x7e, - 0x6f, 0xe0, 0x62, 0xcf, 0x54, 0xc7, 0x66, 0xb8, 0x67, 0x5a, 0x3d, 0x34, 0x19, 0x5e, 0x2c, 0xf0, - 0x9a, 0xdc, 0x47, 0xe4, 0xd2, 0x91, 0x0a, 0xe3, 0x19, 0x01, 0xe3, 0x32, 0x5e, 0x96, 0xc1, 0x08, - 0x6e, 0x2b, 0x0f, 0xf0, 0x4f, 0x40, 0xfc, 0xed, 0xc3, 0x70, 0xb2, 0xf8, 0xbb, 0x4e, 0xf9, 0x7d, - 0xc4, 0xdf, 0x7d, 0x4e, 0x57, 0xd7, 0x05, 0x94, 0x35, 0x5c, 0xd0, 0x12, 0xff, 0x99, 0x43, 0xbb, - 0xcf, 0xe1, 0xbc, 0x0b, 0xbb, 0x45, 0x38, 0x42, 0xff, 0xdd, 0x62, 0x00, 0x44, 0x09, 0x37, 0x07, - 0x55, 0x15, 0x88, 0x56, 0x70, 0x2e, 0x19, 0x51, 0x69, 0xf7, 0xe3, 0x87, 0x79, 0xe5, 0xd3, 0x87, - 0x79, 0xe5, 0x5f, 0x0f, 0xf3, 0xca, 0x7b, 0x8f, 0xf2, 0x67, 0x3e, 0x7d, 0x94, 0x3f, 0xf3, 0xb7, - 0x47, 0xf9, 0x33, 0x3f, 0xb8, 0x9e, 0x52, 0xca, 0x6b, 0x04, 0xd9, 0x8c, 0x5f, 0x66, 0x0f, 0x27, - 0x44, 0xc9, 0xe4, 0xcb, 0xff, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x6a, 0x1a, 0x15, 0xc0, 0x8f, 0x24, - 0x00, 0x00, + 0x42, 0xc2, 0x70, 0x0b, 0xe4, 0x18, 0xf4, 0x10, 0x34, 0xfd, 0x81, 0xf6, 0x90, 0x1e, 0x8a, 0x1e, + 0x8b, 0xb6, 0x40, 0x81, 0x02, 0x45, 0xd1, 0x43, 0x81, 0x02, 0x39, 0xe4, 0x10, 0x20, 0x97, 0xa2, + 0x05, 0xd8, 0xc2, 0xee, 0xc9, 0xbd, 0x14, 0xfa, 0x0b, 0x8a, 0x99, 0x7d, 0x4b, 0xee, 0x92, 0xb3, + 0x5c, 0xd2, 0x66, 0x02, 0x9f, 0xb4, 0x3b, 0xfb, 0x66, 0xde, 0xf7, 0xbe, 0xf9, 0x66, 0xde, 0xcc, + 0xa3, 0xd0, 0x82, 0x43, 0x6a, 0xcc, 0xa3, 0x8e, 0x56, 0x21, 0x75, 0xed, 0x6e, 0x8d, 0x78, 0x8d, + 0xa2, 0xeb, 0x51, 0x46, 0xf1, 0x24, 0x7c, 0x28, 0x56, 0x48, 0x3d, 0x37, 0x7f, 0x48, 0x0f, 0xa9, + 0x68, 0xd7, 0xf8, 0x53, 0x60, 0x92, 0x5b, 0x3a, 0xa4, 0xf4, 0xd0, 0x26, 0x9a, 0xe9, 0x5a, 0x9a, + 0xe9, 0x38, 0x94, 0x99, 0xcc, 0xa2, 0x8e, 0x0f, 0x5f, 0xaf, 0x97, 0xa9, 0x5f, 0xa5, 0xbe, 0x76, + 0x60, 0xfa, 0x24, 0x18, 0x59, 0x3b, 0xd9, 0x38, 0x20, 0xcc, 0xdc, 0xd0, 0x5c, 0xf3, 0xd0, 0x72, + 0x84, 0x31, 0xd8, 0x66, 0xa3, 0x28, 0x5c, 0xd3, 0x33, 0xab, 0xad, 0x51, 0xa2, 0x5f, 0x6c, 0xab, + 0x6a, 0x31, 0x83, 0x7a, 0x15, 0xe2, 0x19, 0xcc, 0x33, 0x9d, 0xf2, 0x11, 0x31, 0x6a, 0x3e, 0xf1, + 0xc0, 0xf6, 0x4a, 0x8a, 0x2d, 0x98, 0x2d, 0x47, 0xcd, 0x2a, 0xc4, 0xa5, 0xbe, 0xc5, 0x0c, 0x8f, + 0x94, 0xa9, 0x57, 0x91, 0x59, 0x30, 0xab, 0x7c, 0x6c, 0xd8, 0xd6, 0xdd, 0x9a, 0x55, 0xb1, 0x18, + 0xb0, 0x93, 0x2b, 0xc4, 0x00, 0x53, 0x6a, 0x1b, 0x1e, 0xf1, 0x89, 0x77, 0x42, 0x42, 0xdc, 0xf3, + 0xb1, 0x21, 0xea, 0xd0, 0x9a, 0x8f, 0x72, 0x12, 0xb2, 0x51, 0xa6, 0x56, 0xc8, 0x43, 0x01, 0x18, + 0x15, 0x6f, 0x07, 0xb5, 0x3b, 0x1a, 0xb3, 0xaa, 0xc4, 0x67, 0x66, 0xd5, 0x05, 0x83, 0xcf, 0x75, + 0xfa, 0x4d, 0xc4, 0x53, 0x25, 0xcc, 0xac, 0x98, 0xcc, 0x0c, 0x0c, 0xd4, 0x79, 0x84, 0xbf, 0xc1, + 0xe7, 0x60, 0x4f, 0x90, 0xab, 0x93, 0xbb, 0x35, 0xe2, 0x33, 0xf5, 0x35, 0x34, 0x17, 0x6b, 0xf5, + 0x5d, 0xea, 0xf8, 0x04, 0x6f, 0xa0, 0xb1, 0x60, 0x12, 0xb2, 0xca, 0xb2, 0xb2, 0x36, 0xb9, 0x39, + 0x57, 0x8c, 0x88, 0xa1, 0x18, 0x18, 0x6f, 0x8f, 0x7e, 0xd8, 0x2c, 0x9c, 0xd1, 0xc1, 0x50, 0x35, + 0xd1, 0xb3, 0x62, 0xa4, 0x5b, 0x84, 0xbd, 0xc1, 0x99, 0xdf, 0xe5, 0xc4, 0xef, 0x07, 0xbc, 0x7f, + 0xcb, 0x27, 0x1e, 0x78, 0xc4, 0x59, 0x74, 0xce, 0xac, 0x54, 0x3c, 0xe2, 0x07, 0x63, 0x4f, 0xe8, + 0xe1, 0x2b, 0x2e, 0xa0, 0xc9, 0x70, 0x4e, 0x8f, 0x49, 0x23, 0x3b, 0x22, 0xbe, 0x22, 0x68, 0x7a, + 0x9d, 0x34, 0xd4, 0x77, 0x15, 0x74, 0x25, 0xc5, 0x07, 0xe0, 0x37, 0x51, 0x36, 0x49, 0x2a, 0x10, + 0x91, 0x1a, 0x8b, 0x48, 0x3a, 0x9a, 0x08, 0x50, 0xd1, 0x2f, 0xda, 0xb2, 0x8f, 0xaa, 0x03, 0xf1, + 0x6e, 0xd9, 0x76, 0xcf, 0x78, 0x5f, 0x45, 0xa8, 0xad, 0x76, 0x70, 0x7e, 0xb5, 0x18, 0xc8, 0xa0, + 0xc8, 0x65, 0x50, 0x0c, 0x16, 0x1d, 0x88, 0xa1, 0xb8, 0x67, 0x1e, 0x12, 0xe8, 0xab, 0x47, 0x7a, + 0xaa, 0x9f, 0x84, 0xc1, 0x27, 0x3b, 0xec, 0x2b, 0xf8, 0xcc, 0x10, 0x82, 0xc7, 0xb7, 0x62, 0x41, + 0x8d, 0x88, 0xa0, 0x56, 0x53, 0x83, 0x0a, 0xf0, 0xc5, 0xa2, 0xfa, 0xa9, 0x82, 0x96, 0x13, 0xa7, + 0x34, 0xa4, 0x70, 0x01, 0x9d, 0x73, 0x4d, 0xcb, 0x33, 0xac, 0x0a, 0x48, 0x66, 0x8c, 0xbf, 0x96, + 0x2a, 0xf8, 0x32, 0x42, 0x62, 0x71, 0x5a, 0x4e, 0x85, 0xd4, 0x05, 0x8c, 0x8c, 0x3e, 0xc1, 0x5b, + 0x4a, 0xbc, 0x01, 0x5f, 0x42, 0xe3, 0x8c, 0x1e, 0x13, 0xc7, 0xb0, 0x9c, 0x6c, 0x26, 0xd0, 0x9a, + 0x78, 0x2f, 0x39, 0x9d, 0x5a, 0x1b, 0xed, 0xd2, 0x5a, 0x03, 0xad, 0xf4, 0xc0, 0x05, 0x4c, 0xef, + 0xa3, 0x39, 0x09, 0xd3, 0x30, 0xc9, 0xf9, 0xde, 0x24, 0x03, 0xc1, 0x17, 0xba, 0x08, 0x56, 0x3f, + 0x08, 0x39, 0x91, 0xcd, 0x74, 0x2a, 0x27, 0xd1, 0xa0, 0x47, 0xe2, 0x41, 0xc7, 0xa5, 0x98, 0x79, + 0x6c, 0x29, 0xfe, 0x55, 0x01, 0x72, 0xe4, 0x00, 0xd3, 0xc8, 0xc9, 0x3c, 0x01, 0x39, 0xc3, 0x53, + 0xde, 0x0f, 0xd0, 0x62, 0x18, 0x03, 0x97, 0xf4, 0x4e, 0x90, 0x06, 0xfc, 0xf4, 0x6d, 0xea, 0x55, + 0x09, 0x82, 0xc7, 0x61, 0xf1, 0xd7, 0x0a, 0x5a, 0x92, 0x23, 0x00, 0x02, 0xbf, 0x8c, 0xc6, 0x21, + 0x39, 0xf9, 0xc0, 0x5a, 0x2e, 0xc6, 0x1a, 0x74, 0xd0, 0x45, 0xe2, 0x02, 0xc6, 0x5a, 0x3d, 0x86, + 0x47, 0xd4, 0x3b, 0x0a, 0xca, 0x47, 0x71, 0xb6, 0x27, 0xeb, 0x33, 0x24, 0xeb, 0x8f, 0x0a, 0x2a, + 0x24, 0x82, 0x00, 0xbe, 0x5e, 0x47, 0x53, 0x11, 0xc1, 0xf9, 0x03, 0xef, 0x75, 0x93, 0x6d, 0xb5, + 0x0d, 0x91, 0xbe, 0x5f, 0x44, 0xa6, 0x79, 0xdf, 0x2a, 0x1f, 0xbf, 0x11, 0x1e, 0x24, 0x9e, 0x86, + 0x95, 0xfc, 0x7b, 0x05, 0x5d, 0x4e, 0x00, 0x07, 0xa4, 0xde, 0x42, 0x33, 0xf1, 0xf3, 0x8f, 0x54, + 0x8a, 0xb1, 0xbe, 0x40, 0xe7, 0x34, 0x8b, 0x36, 0x0e, 0x8f, 0xd0, 0x0f, 0x14, 0xb4, 0x16, 0x6e, + 0xcd, 0x25, 0xc7, 0x2c, 0x33, 0xeb, 0x84, 0x0c, 0x75, 0x9b, 0x8c, 0x67, 0x95, 0x4c, 0x67, 0x56, + 0x49, 0x4d, 0x1d, 0x3f, 0x52, 0xd0, 0xb5, 0x3e, 0x00, 0x02, 0xc1, 0x04, 0x2d, 0x59, 0x60, 0x64, + 0x3c, 0x69, 0x32, 0xb9, 0x64, 0x25, 0xb9, 0x53, 0x3d, 0x20, 0x6d, 0xcb, 0xb6, 0x53, 0x49, 0x1b, + 0xd6, 0x91, 0xe5, 0x9f, 0x21, 0x11, 0xbd, 0x9d, 0xf6, 0x4d, 0x44, 0x66, 0x08, 0x44, 0x0c, 0x4f, + 0x87, 0x3f, 0x57, 0xda, 0x19, 0x64, 0x8f, 0x52, 0x5b, 0x87, 0xf3, 0xff, 0xd3, 0xb0, 0xae, 0x7f, + 0x13, 0xd9, 0x74, 0xe2, 0xd8, 0x80, 0xec, 0x1d, 0x34, 0x1d, 0xbb, 0xb4, 0x00, 0xbb, 0x97, 0xe2, + 0xe7, 0xfc, 0x48, 0x4f, 0x20, 0x76, 0xca, 0x8d, 0xb4, 0x0d, 0x35, 0xc7, 0x2c, 0x86, 0x4b, 0x66, + 0x58, 0x5c, 0xa6, 0x2c, 0xe3, 0x59, 0x94, 0xb9, 0x43, 0x88, 0x58, 0xbe, 0xa3, 0x3a, 0x7f, 0x54, + 0x2b, 0xc0, 0x59, 0x17, 0x86, 0x64, 0xce, 0x94, 0x81, 0x39, 0x53, 0xff, 0x94, 0x81, 0xd3, 0xdd, + 0x2b, 0x3e, 0xb3, 0xaa, 0x26, 0x23, 0xb7, 0x6b, 0x36, 0xb3, 0x5e, 0xa3, 0xee, 0x37, 0xdf, 0x36, + 0xdd, 0x48, 0x42, 0x2d, 0x7b, 0xc4, 0x64, 0xd4, 0x0b, 0x13, 0x2a, 0xbc, 0xe2, 0x1c, 0x1a, 0xf7, + 0x48, 0x99, 0x58, 0x27, 0xc4, 0x83, 0x80, 0x5b, 0xef, 0x78, 0x13, 0x8d, 0x79, 0xb4, 0xc6, 0x88, + 0x9f, 0xcd, 0x48, 0xf6, 0xe8, 0xd0, 0x8f, 0xce, 0x4d, 0x74, 0xb0, 0xc4, 0x36, 0x9a, 0x30, 0xab, + 0xb4, 0xe6, 0x30, 0xce, 0xa0, 0xd8, 0xcb, 0xb6, 0x77, 0xf9, 0xbd, 0xee, 0x1f, 0xcd, 0xc2, 0xd5, + 0x43, 0x8b, 0x1d, 0xd5, 0x0e, 0x8a, 0x65, 0x5a, 0xd5, 0xe0, 0xda, 0x1a, 0xfc, 0x59, 0xf7, 0x2b, + 0xc7, 0x1a, 0x6b, 0xb8, 0xc4, 0x2f, 0x96, 0x1c, 0xf6, 0xa8, 0x59, 0x68, 0x0f, 0x71, 0xda, 0x2c, + 0xcc, 0x36, 0xcc, 0xaa, 0xfd, 0x92, 0xda, 0x6a, 0x52, 0xf5, 0xf1, 0xe0, 0xb9, 0xe4, 0xe0, 0x9f, + 0x28, 0x68, 0x96, 0xd4, 0x2d, 0x06, 0x0b, 0xdc, 0xf5, 0xac, 0x32, 0xc9, 0x9e, 0x15, 0x5e, 0x8f, + 0xc1, 0xeb, 0x17, 0x22, 0x5e, 0x01, 0xfe, 0x3a, 0xf5, 0x0e, 0xc3, 0x67, 0xed, 0x64, 0x53, 0xab, + 0x31, 0xcb, 0xf6, 0xb5, 0xaa, 0xc9, 0x8e, 0x8a, 0x7b, 0x1e, 0x29, 0xef, 0x90, 0xf2, 0xa3, 0x66, + 0xa1, 0x6b, 0xdc, 0xd3, 0x66, 0x61, 0x21, 0x80, 0xd2, 0xf9, 0x45, 0xd5, 0x67, 0x78, 0x93, 0xd8, + 0x1b, 0xf6, 0x78, 0x03, 0xbe, 0x8a, 0xce, 0xbb, 0x5c, 0x2b, 0x07, 0xc4, 0x67, 0x86, 0x60, 0x26, + 0x3b, 0xb6, 0xac, 0xac, 0x8d, 0xeb, 0xd3, 0xbc, 0x79, 0x9b, 0x2f, 0x2f, 0xde, 0xc8, 0xaf, 0x2b, + 0x2b, 0x3d, 0x26, 0x0f, 0x84, 0x72, 0x17, 0x8d, 0xf3, 0x2b, 0xbd, 0x41, 0x6b, 0xac, 0xa5, 0x91, + 0xe8, 0xa2, 0x08, 0x97, 0xc3, 0xd7, 0xa8, 0xe5, 0x6c, 0x7f, 0x09, 0xe2, 0x5e, 0xed, 0x83, 0x6d, + 0xde, 0xe1, 0x51, 0xb3, 0xd0, 0x1a, 0x5d, 0x3f, 0xc7, 0x9f, 0x76, 0x6b, 0x4c, 0xfd, 0xf3, 0x28, + 0x7a, 0x26, 0x06, 0x6c, 0xcf, 0x36, 0xcb, 0x91, 0xdd, 0xef, 0xc9, 0x84, 0xd5, 0xe3, 0x22, 0xb5, + 0x88, 0x26, 0x82, 0x4f, 0x3c, 0xd8, 0x20, 0x17, 0x06, 0xb6, 0xbb, 0x35, 0x86, 0x8b, 0x68, 0xbe, + 0xbd, 0x04, 0x0d, 0xcb, 0x31, 0x18, 0x15, 0x76, 0x67, 0xc5, 0x62, 0x9c, 0x6d, 0x2d, 0xc6, 0x92, + 0xb3, 0x4f, 0xb9, 0x7d, 0x4c, 0x8c, 0x63, 0x9f, 0xb6, 0x18, 0x5f, 0x42, 0x08, 0x32, 0x4c, 0xc3, + 0x25, 0xd9, 0x73, 0xcb, 0xca, 0xda, 0xcc, 0xe6, 0x62, 0x52, 0x7a, 0x69, 0xb8, 0x44, 0x9f, 0xa0, + 0xe1, 0x23, 0xbe, 0x8d, 0xce, 0x93, 0xba, 0x6b, 0x79, 0x62, 0xfb, 0x32, 0x98, 0x55, 0x25, 0xd9, + 0x71, 0x31, 0xd3, 0xb9, 0x62, 0x50, 0xc1, 0x29, 0x86, 0x15, 0x9c, 0xe2, 0x7e, 0x58, 0xc1, 0xd9, + 0x1e, 0xe7, 0xdb, 0xc1, 0x7b, 0xff, 0x2a, 0x28, 0x5c, 0x7f, 0x61, 0x67, 0xfe, 0x19, 0x7f, 0x1f, + 0x4d, 0x57, 0xcd, 0xfa, 0x56, 0x80, 0x92, 0x33, 0x34, 0x21, 0x82, 0x7f, 0x8b, 0x77, 0x18, 0x28, + 0xf8, 0x99, 0xaa, 0x59, 0x37, 0xcc, 0xd6, 0x38, 0xa7, 0xcd, 0xc2, 0xc5, 0x80, 0x81, 0x78, 0xbb, + 0xaa, 0x4f, 0xb5, 0xfc, 0x71, 0xf9, 0xfc, 0x2f, 0x03, 0xd5, 0x8c, 0x44, 0xf9, 0x80, 0xb4, 0x7f, + 0xa6, 0xa0, 0x69, 0x46, 0x99, 0x69, 0xf3, 0xd9, 0xe4, 0xe2, 0x4b, 0x17, 0xf8, 0x9b, 0x83, 0x0b, + 0x3c, 0xee, 0xe2, 0xb4, 0x59, 0x98, 0x0f, 0x82, 0x88, 0x35, 0xab, 0xfa, 0xa4, 0x78, 0x2f, 0x39, + 0xbc, 0x17, 0x7e, 0x5f, 0x41, 0x53, 0xfe, 0xdb, 0xa6, 0xdb, 0x02, 0x36, 0x92, 0x06, 0xec, 0xdb, + 0x83, 0x03, 0x8b, 0x79, 0x38, 0x6d, 0x16, 0xe6, 0x02, 0x5c, 0xd1, 0x56, 0x55, 0x47, 0xfc, 0x15, + 0x50, 0x71, 0xbe, 0xc4, 0x57, 0x5a, 0x63, 0x01, 0xac, 0xcc, 0xa7, 0xc1, 0x57, 0xcc, 0x45, 0x9b, + 0xaf, 0x58, 0xb3, 0xaa, 0x4f, 0xf2, 0xf7, 0xdd, 0x1a, 0xe3, 0xbd, 0xd4, 0xef, 0xa1, 0xd9, 0xa0, + 0xf2, 0x27, 0x92, 0xd3, 0x93, 0x15, 0x5a, 0x20, 0x97, 0x66, 0xda, 0xb9, 0x54, 0x43, 0xf3, 0xad, + 0xd1, 0xb7, 0x1b, 0xa5, 0x9d, 0xa8, 0x07, 0x9e, 0x43, 0xc1, 0xc3, 0xa8, 0x3e, 0xc6, 0x5f, 0x4b, + 0x15, 0xf5, 0xab, 0xe8, 0x42, 0x04, 0x0e, 0xa8, 0xed, 0x39, 0x34, 0xca, 0x3f, 0x83, 0xc6, 0x2e, + 0x74, 0x25, 0x5a, 0x48, 0xb0, 0xc2, 0x48, 0x5d, 0x8f, 0x1f, 0x21, 0x6e, 0x43, 0xf9, 0x33, 0xf4, + 0x3c, 0x83, 0x46, 0x5a, 0x4e, 0x47, 0xac, 0x4a, 0x67, 0xb6, 0x6f, 0x9b, 0xb7, 0xb3, 0xfd, 0x5e, + 0xb4, 0x8c, 0x9a, 0x98, 0xed, 0xc3, 0x9e, 0x50, 0x0f, 0x9d, 0x8a, 0xb6, 0xa9, 0x24, 0x7e, 0x46, + 0xec, 0x04, 0x35, 0xac, 0x93, 0x76, 0xe7, 0x79, 0x4f, 0x16, 0x8d, 0xdb, 0x11, 0x4d, 0xa6, 0xaf, + 0x68, 0xdc, 0x48, 0xdb, 0xd0, 0xce, 0x7b, 0x9b, 0x1f, 0x2d, 0xa0, 0xb3, 0x02, 0x2f, 0x3e, 0x42, + 0x63, 0x41, 0x39, 0x19, 0x17, 0x62, 0x58, 0xba, 0x6b, 0xd5, 0xb9, 0xe5, 0x64, 0x83, 0xc0, 0x85, + 0xba, 0xf8, 0xce, 0x27, 0xff, 0x79, 0x7f, 0xe4, 0x22, 0x9e, 0xd3, 0xba, 0x7f, 0x4e, 0xc0, 0x7f, + 0x53, 0xd0, 0x45, 0xe9, 0xf5, 0x1f, 0x6f, 0x74, 0x0f, 0x9c, 0x52, 0xc5, 0xce, 0x6d, 0x0e, 0xd2, + 0x05, 0xd0, 0xbd, 0x22, 0xd0, 0x7d, 0x05, 0xbf, 0xac, 0xf5, 0xf3, 0x93, 0x86, 0x76, 0x0f, 0x6a, + 0x28, 0xf7, 0xb5, 0x7b, 0x91, 0xfb, 0xe6, 0x7d, 0xfc, 0x3b, 0x05, 0x65, 0xa5, 0x8e, 0xb6, 0x6c, + 0x5b, 0x16, 0x4a, 0x4a, 0x81, 0x5a, 0x16, 0x4a, 0x5a, 0x89, 0x59, 0x5d, 0x17, 0xa1, 0xac, 0xe2, + 0x2b, 0x7d, 0x85, 0xc2, 0x21, 0xaf, 0x24, 0x41, 0xde, 0x6e, 0x6c, 0x41, 0xad, 0xe8, 0x39, 0x29, + 0x10, 0x79, 0xc9, 0x29, 0xf7, 0x7c, 0x7f, 0xc6, 0x80, 0xf7, 0x86, 0xc0, 0x7b, 0x1d, 0xaf, 0xc5, + 0xf0, 0x0a, 0x9a, 0xa3, 0x25, 0xa3, 0x36, 0xe7, 0xf8, 0x23, 0x05, 0x5d, 0xe8, 0xbe, 0x3c, 0xae, + 0xf7, 0x37, 0xed, 0x21, 0xc8, 0x62, 0xbf, 0xe6, 0x00, 0xf3, 0x4d, 0x01, 0x53, 0xc7, 0x7b, 0x69, + 0xb4, 0x6a, 0xf7, 0x60, 0x9f, 0xe6, 0xe2, 0x80, 0x93, 0x19, 0x7f, 0x6c, 0xed, 0xd1, 0x9d, 0xa2, + 0xf9, 0x83, 0x82, 0xe6, 0xbb, 0xfc, 0x72, 0xc1, 0xac, 0xf7, 0x37, 0xfb, 0x3d, 0x22, 0xea, 0x55, + 0x04, 0x56, 0x5f, 0x16, 0x11, 0xbd, 0x88, 0x6f, 0x3e, 0x56, 0x44, 0xf8, 0xc7, 0x0a, 0x3a, 0x1f, + 0xad, 0x8d, 0x72, 0xc4, 0x6b, 0x89, 0x33, 0xdf, 0x51, 0xc3, 0xcd, 0x5d, 0xeb, 0xc3, 0x12, 0x70, + 0x3e, 0x2f, 0x70, 0x5e, 0xc5, 0xcf, 0x76, 0x0b, 0x24, 0xac, 0xa8, 0x46, 0xc4, 0xf1, 0x2b, 0x05, + 0xcd, 0xc6, 0x4a, 0x5e, 0x1c, 0x97, 0xdc, 0x9b, 0xac, 0xe4, 0x97, 0xbb, 0xde, 0x8f, 0x29, 0x20, + 0xfb, 0xa2, 0x40, 0xb6, 0x89, 0x6f, 0x68, 0xc9, 0xbf, 0x49, 0xca, 0xc9, 0xfb, 0xaf, 0x82, 0x2e, + 0x25, 0x96, 0x5d, 0xf0, 0x4d, 0xa9, 0x36, 0xd3, 0x6a, 0x43, 0xb9, 0x17, 0x06, 0xed, 0x06, 0x61, + 0x18, 0x22, 0x8c, 0xb7, 0xf0, 0x77, 0x62, 0x61, 0xdc, 0xb1, 0x6c, 0x9b, 0x54, 0x8c, 0x61, 0x28, + 0xfc, 0x2f, 0x0a, 0x5a, 0x4a, 0x84, 0xc1, 0xe7, 0xe7, 0xa6, 0x94, 0xf4, 0xc7, 0x09, 0xb8, 0x9f, + 0x72, 0x96, 0xaa, 0x89, 0x80, 0xaf, 0xe1, 0xd5, 0x3e, 0x03, 0xc6, 0xbf, 0x54, 0xd0, 0xf9, 0x68, + 0xf5, 0x20, 0x59, 0xeb, 0x92, 0x0a, 0x49, 0x82, 0xd6, 0x65, 0x75, 0x0c, 0xf5, 0x45, 0x81, 0x6c, + 0x03, 0x6b, 0x5a, 0xe2, 0x6f, 0xd8, 0x72, 0x41, 0xfd, 0x56, 0x41, 0x53, 0xd1, 0x11, 0x65, 0xf0, + 0xe4, 0x05, 0x1c, 0x19, 0xbc, 0x84, 0x32, 0x8b, 0xfa, 0x75, 0x01, 0x6f, 0x07, 0x6f, 0x0f, 0x08, + 0xaf, 0x43, 0x1c, 0x77, 0x08, 0x11, 0x0b, 0x75, 0x5e, 0x76, 0x55, 0x97, 0x6d, 0x7b, 0x3d, 0xea, + 0x31, 0xb2, 0x6d, 0xaf, 0x57, 0x05, 0x20, 0x61, 0x3b, 0x21, 0xd0, 0xc5, 0xa8, 0xf2, 0x3e, 0xc6, + 0x11, 0x75, 0x0d, 0x7e, 0x22, 0xe7, 0xbc, 0x2e, 0x24, 0x5c, 0xbc, 0xf0, 0x8d, 0x64, 0xcf, 0xf2, + 0x2b, 0x7e, 0x6e, 0x63, 0x80, 0x1e, 0x3d, 0xb5, 0xda, 0x82, 0xeb, 0xf2, 0x6e, 0x51, 0xcd, 0xe2, + 0xfb, 0x68, 0x94, 0xcf, 0x1d, 0xbe, 0x2c, 0x39, 0x92, 0xb5, 0xef, 0x13, 0xb9, 0x7c, 0xd2, 0x67, + 0xf0, 0xfb, 0x82, 0xf0, 0x7b, 0x03, 0x17, 0xbb, 0xa6, 0x3a, 0x36, 0xc3, 0x5d, 0xd3, 0xea, 0xa1, + 0xf1, 0xf0, 0x62, 0x81, 0x57, 0xe4, 0x3e, 0x22, 0x97, 0x8e, 0x54, 0x18, 0xcf, 0x08, 0x18, 0x97, + 0xf1, 0xa2, 0x0c, 0x46, 0x70, 0x5b, 0xb9, 0x8f, 0x7f, 0x08, 0xe2, 0x6f, 0x1d, 0x86, 0x93, 0xc5, + 0xdf, 0x71, 0xca, 0xef, 0x21, 0xfe, 0xce, 0x73, 0xba, 0xba, 0x2a, 0xa0, 0xac, 0xe0, 0x82, 0x96, + 0xf8, 0xff, 0x1c, 0xda, 0x3d, 0x0e, 0xe7, 0x5d, 0xd8, 0x2d, 0xc2, 0x11, 0x7a, 0xef, 0x16, 0x7d, + 0x20, 0x4a, 0xb8, 0x39, 0xa8, 0xaa, 0x40, 0xb4, 0x84, 0x73, 0xc9, 0x88, 0xb6, 0x6f, 0x7d, 0xf8, + 0x20, 0xaf, 0x7c, 0xfc, 0x20, 0xaf, 0xfc, 0xfb, 0x41, 0x5e, 0x79, 0xef, 0x61, 0xfe, 0xcc, 0xc7, + 0x0f, 0xf3, 0x67, 0xfe, 0xfe, 0x30, 0x7f, 0xe6, 0xbb, 0xeb, 0xe9, 0xd5, 0xbc, 0x7a, 0x90, 0xd0, + 0xf8, 0x7d, 0xf6, 0x60, 0x4c, 0x54, 0x4d, 0x3e, 0xff, 0xff, 0x00, 0x00, 0x00, 0xff, 0xff, 0x87, + 0xec, 0xdd, 0xd8, 0x95, 0x24, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/dex/types/tick_liquidity.go b/x/dex/types/tick_liquidity.go index c9e7d944d..6d44272af 100644 --- a/x/dex/types/tick_liquidity.go +++ b/x/dex/types/tick_liquidity.go @@ -1,7 +1,7 @@ package types import ( - math_utils "github.com/neutron-org/neutron/utils/math" + math_utils "github.com/neutron-org/neutron/v2/utils/math" ) // NOTE: These methods should be avoided if possible. diff --git a/x/dex/types/tick_liquidity.pb.go b/x/dex/types/tick_liquidity.pb.go index ff20f9cfe..6f44c9464 100644 --- a/x/dex/types/tick_liquidity.pb.go +++ b/x/dex/types/tick_liquidity.pb.go @@ -116,7 +116,7 @@ func init() { func init() { proto.RegisterFile("neutron/dex/tick_liquidity.proto", fileDescriptor_fda22cbad7301397) } var fileDescriptor_fda22cbad7301397 = []byte{ - // 265 bytes of a gzipped FileDescriptorProto + // 268 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc8, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x49, 0xad, 0xd0, 0x2f, 0xc9, 0x4c, 0xce, 0x8e, 0xcf, 0xc9, 0x2c, 0x2c, 0xcd, 0x4c, 0xc9, 0x2c, 0xa9, 0xd4, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x86, 0xaa, @@ -128,12 +128,12 @@ var fileDescriptor_fda22cbad7301397 = []byte{ 0x46, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x49, 0x3d, 0x24, 0x47, 0xe9, 0x05, 0xe4, 0xe7, 0xe7, 0x04, 0x41, 0x15, 0x78, 0x30, 0x04, 0xf1, 0x14, 0x20, 0xf1, 0x85, 0x02, 0xb8, 0x84, 0xb1, 0xb8, 0x48, 0x82, 0x09, 0x6c, 0x8e, 0x1c, 0x8a, 0x39, 0x3e, 0x20, 0x75, 0xfe, 0x20, 0x65, 0x21, 0x10, 0x55, - 0x1e, 0x0c, 0x41, 0x82, 0x39, 0xe8, 0x82, 0x4e, 0xdc, 0x5c, 0x9c, 0xf0, 0x30, 0x72, 0x72, 0x39, + 0x1e, 0x0c, 0x41, 0x82, 0x39, 0xe8, 0x82, 0x4e, 0xdc, 0x5c, 0x9c, 0xf0, 0x30, 0x72, 0x72, 0x3f, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, - 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xad, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, - 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xa8, 0x2d, 0xba, 0xf9, 0x45, 0xe9, 0x30, 0xb6, 0x7e, 0x05, - 0x24, 0xc8, 0x2b, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xfe, 0x37, 0x06, 0x04, 0x00, 0x00, 0xff, - 0xff, 0xae, 0x6c, 0x72, 0x79, 0x8e, 0x01, 0x00, 0x00, + 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xdd, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, + 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xa8, 0x2d, 0xba, 0xf9, 0x45, 0xe9, 0x30, 0xb6, 0x7e, 0x99, + 0x91, 0x7e, 0x05, 0x24, 0xd4, 0x2b, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x41, 0x60, 0x0c, 0x08, + 0x00, 0x00, 0xff, 0xff, 0xcf, 0x63, 0xf4, 0xf5, 0x91, 0x01, 0x00, 0x00, } func (m *TickLiquidity) Marshal() (dAtA []byte, err error) { diff --git a/x/dex/types/tick_liquidity_key.go b/x/dex/types/tick_liquidity_key.go index 6ec6ab598..d53f12f71 100644 --- a/x/dex/types/tick_liquidity_key.go +++ b/x/dex/types/tick_liquidity_key.go @@ -1,6 +1,6 @@ package types -import math_utils "github.com/neutron-org/neutron/utils/math" +import math_utils "github.com/neutron-org/neutron/v2/utils/math" type TickLiquidityKey interface { KeyMarshal() []byte diff --git a/x/dex/types/tick_liquidity_test.go b/x/dex/types/tick_liquidity_test.go index 3c408bf2a..4898dd3c0 100644 --- a/x/dex/types/tick_liquidity_test.go +++ b/x/dex/types/tick_liquidity_test.go @@ -6,7 +6,7 @@ import ( "cosmossdk.io/math" "github.com/stretchr/testify/assert" - "github.com/neutron-org/neutron/x/dex/types" + "github.com/neutron-org/neutron/v2/x/dex/types" ) func TestHasTokenEmptyReserves(t *testing.T) { diff --git a/x/dex/types/trade_pair_id.go b/x/dex/types/trade_pair_id.go index 0c92d5e7b..2059d4841 100644 --- a/x/dex/types/trade_pair_id.go +++ b/x/dex/types/trade_pair_id.go @@ -3,7 +3,7 @@ package types import ( sdkerrors "cosmossdk.io/errors" - math_utils "github.com/neutron-org/neutron/utils/math" + math_utils "github.com/neutron-org/neutron/v2/utils/math" ) func NewTradePairID(takerDenom, makerDenom string) (*TradePairID, error) { diff --git a/x/dex/types/trade_pair_id.pb.go b/x/dex/types/trade_pair_id.pb.go index 855a1425f..11ceae36c 100644 --- a/x/dex/types/trade_pair_id.pb.go +++ b/x/dex/types/trade_pair_id.pb.go @@ -82,19 +82,19 @@ func init() { func init() { proto.RegisterFile("neutron/dex/trade_pair_id.proto", fileDescriptor_e0082302b8bd9607) } var fileDescriptor_e0082302b8bd9607 = []byte{ - // 179 bytes of a gzipped FileDescriptorProto + // 182 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcf, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x49, 0xad, 0xd0, 0x2f, 0x29, 0x4a, 0x4c, 0x49, 0x8d, 0x2f, 0x48, 0xcc, 0x2c, 0x8a, 0xcf, 0x4c, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x86, 0x2a, 0xd0, 0x4b, 0x49, 0xad, 0x50, 0xf2, 0xe7, 0xe2, 0x0e, 0x01, 0xa9, 0x09, 0x48, 0xcc, 0x2c, 0xf2, 0x74, 0x11, 0x92, 0xe7, 0xe2, 0xce, 0x4d, 0xcc, 0x4e, 0x2d, 0x8a, 0x4f, 0x49, 0xcd, 0xcb, 0xcf, 0x95, 0x60, 0x52, 0x60, 0xd4, 0xe0, 0x0c, 0xe2, 0x02, 0x0b, 0xb9, 0x80, 0x44, 0x40, 0x0a, 0x4a, 0x90, - 0x14, 0x30, 0x43, 0x14, 0x94, 0xc0, 0x15, 0x38, 0xb9, 0x9c, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, + 0x14, 0x30, 0x43, 0x14, 0x94, 0xc0, 0x15, 0x38, 0xb9, 0x9f, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, 0x2c, 0xc7, 0x70, 0xe3, - 0xb1, 0x1c, 0x43, 0x94, 0x56, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, - 0xd4, 0x09, 0xba, 0xf9, 0x45, 0xe9, 0x30, 0xb6, 0x7e, 0x05, 0xc4, 0xc5, 0x95, 0x05, 0xa9, 0xc5, - 0x49, 0x6c, 0x60, 0xa7, 0x1a, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xa5, 0xfa, 0x5d, 0x65, 0xcd, - 0x00, 0x00, 0x00, + 0xb1, 0x1c, 0x43, 0x94, 0x6e, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x3e, + 0xd4, 0x09, 0xba, 0xf9, 0x45, 0xe9, 0x30, 0xb6, 0x7e, 0x99, 0x91, 0x7e, 0x05, 0xc4, 0xd1, 0x95, + 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0xd7, 0x1a, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xf7, 0x9c, + 0x6b, 0x75, 0xd0, 0x00, 0x00, 0x00, } func (m *TradePairID) Marshal() (dAtA []byte, err error) { diff --git a/x/dex/types/tx.pb.go b/x/dex/types/tx.pb.go index 62754e07a..c763f7e8a 100644 --- a/x/dex/types/tx.pb.go +++ b/x/dex/types/tx.pb.go @@ -25,7 +25,7 @@ import ( status "google.golang.org/grpc/status" _ "google.golang.org/protobuf/types/known/timestamppb" - github_com_neutron_org_neutron_utils_math "github.com/neutron-org/neutron/utils/math" + github_com_neutron_org_neutron_v2_utils_math "github.com/neutron-org/neutron/v2/utils/math" ) // Reference imports to suppress errors if they are not otherwise used. @@ -737,11 +737,11 @@ func (m *MultiHopRoute) GetHops() []string { } type MsgMultiHopSwap struct { - Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` - Receiver string `protobuf:"bytes,2,opt,name=receiver,proto3" json:"receiver,omitempty"` - Routes []*MultiHopRoute `protobuf:"bytes,3,rep,name=routes,proto3" json:"routes,omitempty"` - AmountIn github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=amount_in,json=amountIn,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"amount_in" yaml:"amount_in"` - ExitLimitPrice github_com_neutron_org_neutron_utils_math.PrecDec `protobuf:"bytes,5,opt,name=exit_limit_price,json=exitLimitPrice,proto3,customtype=github.com/neutron-org/neutron/utils/math.PrecDec" json:"exit_limit_price" yaml:"exit_limit_price"` + Creator string `protobuf:"bytes,1,opt,name=creator,proto3" json:"creator,omitempty"` + Receiver string `protobuf:"bytes,2,opt,name=receiver,proto3" json:"receiver,omitempty"` + Routes []*MultiHopRoute `protobuf:"bytes,3,rep,name=routes,proto3" json:"routes,omitempty"` + AmountIn github_com_cosmos_cosmos_sdk_types.Int `protobuf:"bytes,4,opt,name=amount_in,json=amountIn,proto3,customtype=github.com/cosmos/cosmos-sdk/types.Int" json:"amount_in" yaml:"amount_in"` + ExitLimitPrice github_com_neutron_org_neutron_v2_utils_math.PrecDec `protobuf:"bytes,5,opt,name=exit_limit_price,json=exitLimitPrice,proto3,customtype=github.com/neutron-org/neutron/v2/utils/math.PrecDec" json:"exit_limit_price" yaml:"exit_limit_price"` // If pickBestRoute == true then all routes are run and the route with the best price is chosen // otherwise, the first succesful route is used. PickBestRoute bool `protobuf:"varint,6,opt,name=pick_best_route,json=pickBestRoute,proto3" json:"pick_best_route,omitempty"` @@ -962,101 +962,102 @@ func init() { func init() { proto.RegisterFile("neutron/dex/tx.proto", fileDescriptor_a489f6e187d5e074) } var fileDescriptor_a489f6e187d5e074 = []byte{ - // 1501 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0x4f, 0x6c, 0x1b, 0x45, - 0x17, 0xcf, 0xc6, 0xa9, 0xff, 0x4c, 0x12, 0xc7, 0x9d, 0xa4, 0x5f, 0x36, 0xee, 0xf7, 0xd9, 0xd6, - 0xf6, 0xa3, 0x35, 0x11, 0xb5, 0xeb, 0x20, 0x7a, 0x68, 0x4f, 0x76, 0x92, 0x82, 0xa9, 0x5d, 0x47, - 0x5b, 0x57, 0x40, 0x11, 0xac, 0xc6, 0xf6, 0xd4, 0x5e, 0xc5, 0xde, 0x59, 0x76, 0xc6, 0xa9, 0x73, - 0x02, 0x71, 0x41, 0x42, 0x1c, 0x2a, 0xae, 0xdc, 0x11, 0x48, 0x1c, 0x7a, 0xe0, 0xc4, 0x95, 0x4b, - 0xb9, 0x55, 0x9c, 0x10, 0x12, 0x06, 0xb5, 0x87, 0x4a, 0x3d, 0x46, 0xe2, 0x8e, 0x66, 0x76, 0xbc, - 0x5e, 0xaf, 0x9b, 0xa4, 0x69, 0x81, 0x4b, 0x3c, 0xfb, 0x7e, 0x6f, 0xde, 0x7b, 0xf3, 0x9b, 0xf7, - 0x67, 0x37, 0x60, 0xc5, 0xc2, 0x7d, 0xe6, 0x10, 0x2b, 0xdf, 0xc2, 0x83, 0x3c, 0x1b, 0xe4, 0x6c, - 0x87, 0x30, 0x02, 0xe7, 0xa5, 0x34, 0xd7, 0xc2, 0x83, 0xe4, 0x4a, 0x9b, 0xb4, 0x89, 0x90, 0xe7, - 0xf9, 0xca, 0x55, 0x49, 0xa6, 0x9a, 0x84, 0xf6, 0x08, 0xcd, 0x37, 0x10, 0xc5, 0xf9, 0xbd, 0x42, - 0x03, 0x33, 0x54, 0xc8, 0x37, 0x89, 0x69, 0x49, 0x3c, 0xdd, 0x26, 0xa4, 0xdd, 0xc5, 0x79, 0xf1, - 0xd4, 0xe8, 0xdf, 0xc9, 0x33, 0xb3, 0x87, 0x29, 0x43, 0x3d, 0x5b, 0x2a, 0x9c, 0x46, 0x3d, 0xd3, - 0x22, 0x79, 0xf1, 0x57, 0x8a, 0x54, 0x7f, 0x30, 0x36, 0x72, 0x50, 0x8f, 0x4a, 0x64, 0x55, 0x7a, - 0xeb, 0xd1, 0x76, 0x7e, 0xaf, 0xc0, 0x7f, 0x24, 0xb0, 0xe6, 0x02, 0x86, 0x1b, 0x9f, 0xfb, 0xe0, - 0x42, 0xda, 0x55, 0x10, 0xdf, 0xc2, 0x36, 0xa1, 0x26, 0xab, 0xd9, 0xcc, 0x24, 0x16, 0x85, 0xaf, - 0x82, 0x44, 0xcb, 0xa4, 0xa8, 0xd1, 0xc5, 0x06, 0xea, 0x33, 0x42, 0xef, 0x22, 0x5b, 0x55, 0x32, - 0x4a, 0x36, 0xaa, 0x2f, 0x49, 0x79, 0x51, 0x8a, 0xb5, 0x9f, 0x42, 0x00, 0x54, 0x69, 0x5b, 0x1a, - 0x80, 0x2a, 0x88, 0x34, 0x1d, 0x8c, 0x18, 0x71, 0xc4, 0x86, 0x98, 0x3e, 0x7a, 0x84, 0x49, 0x10, - 0x75, 0x70, 0x13, 0x9b, 0x7b, 0xd8, 0x51, 0x67, 0x05, 0xe4, 0x3d, 0xc3, 0x55, 0x10, 0x61, 0x64, - 0x17, 0x5b, 0x06, 0x52, 0x43, 0x02, 0x0a, 0x8b, 0xc7, 0xe2, 0x18, 0x68, 0xa8, 0x73, 0x3e, 0xa0, - 0x04, 0xbb, 0x20, 0x86, 0x7a, 0xa4, 0x6f, 0x31, 0x6a, 0x20, 0xf5, 0x54, 0x26, 0x94, 0x8d, 0x95, - 0x6a, 0x0f, 0x86, 0xe9, 0x99, 0x5f, 0x87, 0xe9, 0xf3, 0x6d, 0x93, 0x75, 0xfa, 0x8d, 0x5c, 0x93, - 0xf4, 0xe4, 0x39, 0xe5, 0xcf, 0x45, 0xda, 0xda, 0xcd, 0xb3, 0x7d, 0x1b, 0xd3, 0x5c, 0xd9, 0x62, - 0x4f, 0x87, 0xe9, 0xb1, 0x89, 0x83, 0x61, 0x3a, 0xb1, 0x8f, 0x7a, 0xdd, 0x2b, 0x9a, 0x27, 0xd2, - 0xf4, 0xa8, 0x5c, 0x17, 0xfd, 0xde, 0x1a, 0x6a, 0xf8, 0x65, 0xbd, 0x35, 0xa6, 0xbd, 0x35, 0xc6, - 0xde, 0x4a, 0xf0, 0x35, 0xb0, 0xcc, 0xcc, 0xe6, 0xae, 0x61, 0x5a, 0x2d, 0x3c, 0xc0, 0xd4, 0x40, - 0x06, 0x23, 0x46, 0x43, 0x8d, 0x64, 0x42, 0xd9, 0x90, 0xbe, 0xc4, 0xa1, 0xb2, 0x8b, 0x14, 0xeb, - 0xa4, 0x04, 0x21, 0x98, 0xbb, 0x83, 0x31, 0x55, 0xa3, 0x99, 0x50, 0x76, 0x4e, 0x17, 0x6b, 0xf8, - 0x06, 0x88, 0x10, 0xf7, 0x2a, 0xd5, 0x58, 0x26, 0x94, 0x9d, 0xdf, 0x38, 0x9b, 0xf3, 0x25, 0x6a, - 0x6e, 0xf2, 0xb6, 0xf5, 0x91, 0xae, 0xf6, 0xc3, 0x2c, 0x80, 0xe3, 0xbb, 0xd4, 0x31, 0xb5, 0x89, - 0x45, 0x31, 0xbc, 0xa7, 0x00, 0xe8, 0x60, 0x8a, 0x9d, 0x3d, 0x7c, 0xc9, 0x68, 0xb9, 0x20, 0x6e, - 0xa9, 0x8a, 0xe0, 0x01, 0x9d, 0x98, 0x87, 0x67, 0xd8, 0x3a, 0x18, 0xa6, 0xd7, 0x5c, 0x42, 0xa6, - 0x31, 0x4d, 0x3f, 0x3d, 0x12, 0x6e, 0x8d, 0x64, 0xfe, 0x90, 0x0a, 0xbe, 0x90, 0x66, 0x5f, 0x32, - 0xa4, 0xc2, 0x11, 0x21, 0x15, 0x9e, 0x15, 0x52, 0xc1, 0x0b, 0x49, 0xfb, 0x71, 0x16, 0x2c, 0x56, - 0x69, 0xfb, 0x1d, 0x93, 0x75, 0x5a, 0x0e, 0xba, 0x8b, 0xba, 0xff, 0x5a, 0x2d, 0x7c, 0xa6, 0x80, - 0x04, 0xed, 0x20, 0x07, 0x53, 0x9e, 0x28, 0x0e, 0xee, 0x91, 0x3d, 0x2c, 0x6b, 0xe2, 0x83, 0x13, - 0x53, 0x31, 0x65, 0xe9, 0x60, 0x98, 0x5e, 0x75, 0x89, 0x08, 0x22, 0x9a, 0x1e, 0x77, 0x45, 0x75, - 0xa2, 0x0b, 0xc1, 0x61, 0x99, 0x1b, 0x3e, 0x3a, 0x73, 0x23, 0xe3, 0xcc, 0xd5, 0x56, 0xc1, 0x99, - 0x09, 0x12, 0x47, 0x49, 0xa8, 0x7d, 0x37, 0x27, 0x72, 0x73, 0xa7, 0x8b, 0x9a, 0xb8, 0x62, 0xf6, - 0x4c, 0x56, 0x73, 0x5a, 0xd8, 0x79, 0x41, 0x8e, 0xd7, 0x40, 0xd4, 0xa5, 0xd2, 0xb4, 0x24, 0xc9, - 0x2e, 0xb5, 0x65, 0x0b, 0x9e, 0x05, 0x31, 0x17, 0x22, 0x7d, 0x26, 0x79, 0x76, 0x75, 0x6b, 0x7d, - 0x06, 0x73, 0x60, 0x65, 0x7c, 0x3e, 0xc3, 0xb4, 0xf8, 0xf1, 0xb8, 0xde, 0xa9, 0x8c, 0x92, 0x0d, - 0xe9, 0x09, 0xef, 0x80, 0x65, 0xab, 0x4e, 0xb8, 0xbe, 0xd7, 0x37, 0xb8, 0xa3, 0x08, 0x37, 0xf6, - 0xe2, 0x7d, 0xc3, 0x30, 0xad, 0x60, 0xdf, 0x30, 0x4c, 0xcb, 0xeb, 0x1b, 0x65, 0x0b, 0x5e, 0x01, - 0x80, 0x70, 0x52, 0x0c, 0xbe, 0x5b, 0x8d, 0x66, 0x94, 0x6c, 0x3c, 0x50, 0xf8, 0x63, 0xe2, 0xea, - 0xfb, 0x36, 0xd6, 0x63, 0x64, 0xb4, 0x84, 0x55, 0xb0, 0x84, 0x07, 0xb6, 0xe9, 0x20, 0xde, 0x09, - 0x0c, 0x3e, 0x82, 0xd4, 0x58, 0x46, 0xc9, 0xce, 0x6f, 0x24, 0x73, 0xee, 0x7c, 0xca, 0x8d, 0xe6, - 0x53, 0xae, 0x3e, 0x9a, 0x4f, 0xa5, 0xe8, 0x83, 0x61, 0x5a, 0xb9, 0xf7, 0x7b, 0x5a, 0xd1, 0xe3, - 0xe3, 0xcd, 0x1c, 0x86, 0x1f, 0x83, 0x78, 0x0f, 0x0d, 0x0c, 0x19, 0x26, 0xa7, 0x08, 0x88, 0xd3, - 0xbf, 0xc7, 0x77, 0x9c, 0xe8, 0xf4, 0x01, 0x3b, 0x07, 0xc3, 0xf4, 0x19, 0x97, 0x82, 0x49, 0xb9, - 0xa6, 0x2f, 0xf4, 0xd0, 0xa0, 0x28, 0x9e, 0x6b, 0x7d, 0xa6, 0xfd, 0x36, 0x0b, 0x92, 0xd3, 0xe9, - 0xe2, 0xb5, 0xb4, 0x14, 0x00, 0xcc, 0x41, 0x56, 0xb3, 0x83, 0xaf, 0xe3, 0x7d, 0x99, 0x39, 0x3e, - 0x09, 0xfc, 0x44, 0x01, 0x11, 0x3e, 0xa3, 0xf9, 0xbd, 0xcd, 0x0a, 0x1e, 0xd6, 0x72, 0x72, 0x66, - 0xf2, 0x39, 0x9e, 0x93, 0x73, 0x3c, 0xb7, 0x49, 0x4c, 0xab, 0x54, 0x91, 0x57, 0x7a, 0xe1, 0x39, - 0x0e, 0xc5, 0x37, 0x3c, 0x1d, 0xa6, 0x47, 0xc6, 0x0f, 0x86, 0xe9, 0xb8, 0x7b, 0x1c, 0x29, 0xd0, - 0xf4, 0x30, 0x5f, 0x95, 0x2d, 0xf8, 0x95, 0x02, 0xe2, 0x0c, 0xed, 0x62, 0xc7, 0x10, 0x10, 0xe7, - 0x30, 0x74, 0x5c, 0x24, 0xb7, 0x4f, 0x1e, 0x49, 0xc0, 0xc7, 0x98, 0xdf, 0x49, 0xb9, 0xa6, 0x2f, - 0x08, 0x01, 0xdf, 0xc5, 0xf9, 0x7d, 0x17, 0x9c, 0xf5, 0xd5, 0xe9, 0x35, 0xb3, 0xdb, 0xc5, 0xad, - 0xe7, 0x2a, 0xcb, 0x34, 0x98, 0x97, 0x3c, 0x1b, 0xbb, 0x78, 0x5f, 0x56, 0xa6, 0x8f, 0x7a, 0xed, - 0x15, 0x70, 0xee, 0x08, 0xcb, 0x5e, 0x3f, 0xd8, 0x01, 0xcb, 0x55, 0xda, 0xde, 0x44, 0x56, 0x13, - 0x77, 0xff, 0x1e, 0xc7, 0xff, 0x13, 0x47, 0x0a, 0x5a, 0xf4, 0x1c, 0x9e, 0x03, 0x8b, 0xd5, 0x7e, - 0x97, 0x99, 0x6f, 0x11, 0x5b, 0x27, 0x7d, 0x86, 0x79, 0xfb, 0xea, 0x10, 0x9b, 0xba, 0x73, 0x50, - 0x17, 0x6b, 0xed, 0xeb, 0x10, 0x58, 0xaa, 0xd2, 0xf6, 0x48, 0xf1, 0xe6, 0x5d, 0x64, 0xbf, 0x60, - 0x8b, 0xda, 0x00, 0x61, 0x87, 0xbb, 0xa1, 0x6a, 0x48, 0x4c, 0xf0, 0xe4, 0x44, 0x21, 0x4f, 0x44, - 0xa2, 0x4b, 0xcd, 0xc9, 0x76, 0x33, 0xf7, 0x4f, 0xb7, 0x9b, 0x2f, 0x15, 0x90, 0xc0, 0x03, 0x93, - 0x19, 0x5d, 0x4e, 0x96, 0x61, 0x3b, 0x66, 0x13, 0x8b, 0x4e, 0x18, 0x2b, 0x75, 0xa4, 0xd7, 0x82, - 0xcf, 0xab, 0x0c, 0xff, 0x22, 0x71, 0xda, 0xa3, 0x75, 0xbe, 0xcf, 0xcc, 0x2e, 0xcd, 0xf7, 0x10, - 0xeb, 0xe4, 0x76, 0x1c, 0xdc, 0xdc, 0xc2, 0x4d, 0x3e, 0x81, 0x82, 0x46, 0xc7, 0x13, 0x28, 0x88, - 0x68, 0xbc, 0xf1, 0x98, 0x4c, 0xdc, 0xd6, 0x0e, 0x17, 0xc0, 0xf3, 0x60, 0xc9, 0xe6, 0x1d, 0xba, - 0x81, 0x29, 0x33, 0x04, 0x2d, 0x6a, 0x58, 0xbc, 0xb8, 0x2e, 0x72, 0x71, 0x09, 0x53, 0x26, 0x28, - 0xd3, 0xbe, 0x50, 0xc0, 0x6a, 0xe0, 0xa2, 0xbc, 0xe6, 0xf0, 0x11, 0x88, 0x7a, 0x25, 0xa7, 0x1c, - 0x57, 0x72, 0x57, 0x4f, 0x5e, 0x72, 0x9e, 0x75, 0x5d, 0xb4, 0x01, 0x5e, 0x4e, 0xdf, 0x2a, 0x22, - 0x6f, 0x6e, 0xd9, 0x2d, 0xc4, 0xf0, 0x8e, 0x78, 0xa1, 0x87, 0x97, 0x41, 0x0c, 0xf5, 0x59, 0x87, - 0x38, 0x26, 0x93, 0x2d, 0xaa, 0xa4, 0xfe, 0xfc, 0xfd, 0xc5, 0x15, 0x19, 0x4a, 0xb1, 0xd5, 0x72, - 0x30, 0xa5, 0x37, 0x99, 0x63, 0x5a, 0x6d, 0x7d, 0xac, 0x0a, 0x2f, 0x83, 0xb0, 0xfb, 0x49, 0x20, - 0x3b, 0xd7, 0xf2, 0x44, 0xe6, 0xb8, 0xc6, 0x4b, 0x31, 0x1e, 0xf6, 0x37, 0x4f, 0xee, 0xaf, 0x2b, - 0xba, 0xd4, 0xbe, 0x72, 0xfe, 0xd3, 0x27, 0xf7, 0xd7, 0xc7, 0x76, 0x3e, 0x7f, 0x72, 0x7f, 0x7d, - 0x99, 0x7f, 0x5f, 0x04, 0xe2, 0xd2, 0xd6, 0x04, 0x73, 0x7e, 0xd1, 0x88, 0xb9, 0xf5, 0x01, 0x88, - 0x4f, 0x8e, 0x18, 0xf8, 0x1f, 0x00, 0xdf, 0xac, 0xd5, 0xb6, 0x8c, 0x7a, 0xb9, 0x62, 0x6c, 0x16, - 0x6f, 0x6c, 0x6e, 0x57, 0x2a, 0xdb, 0x5b, 0x89, 0x19, 0x98, 0x00, 0x0b, 0xd7, 0xca, 0x95, 0x8a, - 0x51, 0xd3, 0x8d, 0xeb, 0xe5, 0x4a, 0x25, 0xa1, 0xc0, 0x55, 0xb0, 0x5c, 0xae, 0x56, 0xb7, 0xb7, - 0xca, 0xc5, 0xfa, 0x36, 0x17, 0xbb, 0xda, 0x89, 0x59, 0xae, 0xfa, 0xf6, 0xad, 0x9b, 0x75, 0xa3, - 0x7c, 0xc3, 0xa8, 0x97, 0xab, 0xdb, 0x89, 0x10, 0x3c, 0x0d, 0x16, 0x3d, 0xa3, 0x42, 0x34, 0xb7, - 0xf1, 0xe7, 0x1c, 0x08, 0x55, 0x69, 0x1b, 0x6e, 0x82, 0xc8, 0xe8, 0x53, 0x64, 0x75, 0xb2, 0x62, - 0xbc, 0xf7, 0xda, 0x64, 0xfa, 0x10, 0xc0, 0x4b, 0x80, 0x0a, 0x00, 0xbe, 0xd7, 0xb8, 0x64, 0x50, - 0x7d, 0x8c, 0x25, 0xb5, 0xc3, 0x31, 0xcf, 0xda, 0xfb, 0x60, 0x29, 0xf8, 0xd6, 0x32, 0x15, 0x41, - 0x40, 0x21, 0x79, 0xe1, 0x18, 0x05, 0xcf, 0xf8, 0x1e, 0x50, 0x0f, 0x6d, 0xc2, 0xd9, 0xc3, 0x82, - 0x0b, 0x6a, 0x26, 0x2f, 0x3d, 0xaf, 0xa6, 0xe7, 0xf7, 0x43, 0x90, 0x98, 0xea, 0xbd, 0x99, 0xa0, - 0x95, 0xa0, 0x46, 0x32, 0x7b, 0x9c, 0x86, 0x67, 0x5f, 0x07, 0x0b, 0x13, 0x4d, 0xf4, 0xbf, 0xc1, - 0x9d, 0x7e, 0x34, 0xf9, 0xff, 0xa3, 0x50, 0xbf, 0xcd, 0x89, 0x02, 0x9b, 0xb2, 0xe9, 0x47, 0xa7, - 0x6d, 0x3e, 0x2b, 0xe3, 0x4b, 0x5b, 0x0f, 0x1e, 0xa5, 0x94, 0x87, 0x8f, 0x52, 0xca, 0x1f, 0x8f, - 0x52, 0xca, 0xbd, 0xc7, 0xa9, 0x99, 0x87, 0x8f, 0x53, 0x33, 0xbf, 0x3c, 0x4e, 0xcd, 0xdc, 0x5e, - 0x3f, 0xa6, 0xf7, 0x0d, 0xdc, 0xff, 0x24, 0xf0, 0xc6, 0xd0, 0x08, 0x8b, 0x97, 0xab, 0xd7, 0xff, - 0x0a, 0x00, 0x00, 0xff, 0xff, 0xe4, 0xfc, 0x40, 0x56, 0x65, 0x10, 0x00, 0x00, + // 1506 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x58, 0xcf, 0x6f, 0x1b, 0xc5, + 0x17, 0xcf, 0xc6, 0xa9, 0x7f, 0x4c, 0x12, 0xc7, 0x9d, 0xa4, 0xdf, 0x6c, 0xdc, 0xef, 0xd7, 0xb6, + 0xb6, 0x5f, 0x5a, 0x13, 0x11, 0xbb, 0x09, 0xd0, 0x43, 0x7b, 0xb2, 0x93, 0xb4, 0x98, 0xda, 0x75, + 0xb4, 0x75, 0x05, 0x14, 0xc1, 0x6a, 0x6c, 0x4f, 0x9d, 0x55, 0xec, 0x9d, 0x65, 0x67, 0xec, 0x3a, + 0x27, 0x10, 0x17, 0x24, 0xc4, 0xa1, 0x17, 0x4e, 0xfc, 0x03, 0x54, 0xe2, 0xd0, 0x03, 0x27, 0xae, + 0x5c, 0xca, 0xad, 0xe2, 0x84, 0x90, 0x30, 0xa8, 0x3d, 0x54, 0xea, 0x31, 0x12, 0x77, 0x34, 0xb3, + 0xe3, 0xf5, 0x7a, 0xdd, 0x24, 0x4d, 0x0b, 0x5c, 0xe2, 0xd9, 0xf7, 0x79, 0xf3, 0xde, 0x9b, 0xcf, + 0xbc, 0x1f, 0xbb, 0x01, 0x4b, 0x16, 0xee, 0x32, 0x87, 0x58, 0xf9, 0x26, 0xee, 0xe7, 0x59, 0x3f, + 0x67, 0x3b, 0x84, 0x11, 0x38, 0x2b, 0xa5, 0xb9, 0x26, 0xee, 0x27, 0x97, 0x5a, 0xa4, 0x45, 0x84, + 0x3c, 0xcf, 0x57, 0xae, 0x4a, 0x32, 0xd5, 0x20, 0xb4, 0x43, 0x68, 0xbe, 0x8e, 0x28, 0xce, 0xf7, + 0xd6, 0xeb, 0x98, 0xa1, 0xf5, 0x7c, 0x83, 0x98, 0x96, 0xc4, 0xd3, 0x2d, 0x42, 0x5a, 0x6d, 0x9c, + 0x17, 0x4f, 0xf5, 0xee, 0x9d, 0x3c, 0x33, 0x3b, 0x98, 0x32, 0xd4, 0xb1, 0xa5, 0xc2, 0x69, 0xd4, + 0x31, 0x2d, 0x92, 0x17, 0x7f, 0xa5, 0x48, 0xf5, 0x07, 0x63, 0x23, 0x07, 0x75, 0xa8, 0x44, 0x96, + 0xa5, 0xb7, 0x0e, 0x6d, 0xe5, 0x7b, 0xeb, 0xfc, 0x47, 0x02, 0x2b, 0x2e, 0x60, 0xb8, 0xf1, 0xb9, + 0x0f, 0x2e, 0xa4, 0x5d, 0x01, 0xf1, 0x2d, 0x6c, 0x13, 0x6a, 0xb2, 0xaa, 0xcd, 0x4c, 0x62, 0x51, + 0xf8, 0x3a, 0x48, 0x34, 0x4d, 0x8a, 0xea, 0x6d, 0x6c, 0xa0, 0x2e, 0x23, 0xf4, 0x2e, 0xb2, 0x55, + 0x25, 0xa3, 0x64, 0xa3, 0xfa, 0x82, 0x94, 0x17, 0xa4, 0x58, 0xfb, 0x29, 0x04, 0x40, 0x85, 0xb6, + 0xa4, 0x01, 0xa8, 0x82, 0x48, 0xc3, 0xc1, 0x88, 0x11, 0x47, 0x6c, 0x88, 0xe9, 0xc3, 0x47, 0x98, + 0x04, 0x51, 0x07, 0x37, 0xb0, 0xd9, 0xc3, 0x8e, 0x3a, 0x2d, 0x20, 0xef, 0x19, 0x2e, 0x83, 0x08, + 0x23, 0x7b, 0xd8, 0x32, 0x90, 0x1a, 0x12, 0x50, 0x58, 0x3c, 0x16, 0x46, 0x40, 0x5d, 0x9d, 0xf1, + 0x01, 0x45, 0xd8, 0x06, 0x31, 0xd4, 0x21, 0x5d, 0x8b, 0x51, 0x03, 0xa9, 0xa7, 0x32, 0xa1, 0x6c, + 0xac, 0x58, 0x7d, 0x38, 0x48, 0x4f, 0xfd, 0x3a, 0x48, 0x9f, 0x6f, 0x99, 0x6c, 0xb7, 0x5b, 0xcf, + 0x35, 0x48, 0x47, 0x9e, 0x53, 0xfe, 0xac, 0xd1, 0xe6, 0x5e, 0x9e, 0xed, 0xdb, 0x98, 0xe6, 0x4a, + 0x16, 0x7b, 0x36, 0x48, 0x8f, 0x4c, 0x1c, 0x0c, 0xd2, 0x89, 0x7d, 0xd4, 0x69, 0x5f, 0xd6, 0x3c, + 0x91, 0xa6, 0x47, 0xe5, 0xba, 0xe0, 0xf7, 0x56, 0x57, 0xc3, 0xaf, 0xea, 0xad, 0x3e, 0xe9, 0xad, + 0x3e, 0xf2, 0x56, 0x84, 0x6f, 0x80, 0x45, 0x66, 0x36, 0xf6, 0x0c, 0xd3, 0x6a, 0xe2, 0x3e, 0xa6, + 0x06, 0x32, 0x18, 0x31, 0xea, 0x6a, 0x24, 0x13, 0xca, 0x86, 0xf4, 0x05, 0x0e, 0x95, 0x5c, 0xa4, + 0x50, 0x23, 0x45, 0x08, 0xc1, 0xcc, 0x1d, 0x8c, 0xa9, 0x1a, 0xcd, 0x84, 0xb2, 0x33, 0xba, 0x58, + 0xc3, 0xb7, 0x41, 0x84, 0xb8, 0x57, 0xa9, 0xc6, 0x32, 0xa1, 0xec, 0xec, 0xc6, 0xd9, 0x9c, 0x2f, + 0x51, 0x73, 0xe3, 0xb7, 0xad, 0x0f, 0x75, 0xb5, 0x1f, 0xa6, 0x01, 0x1c, 0xdd, 0xa5, 0x8e, 0xa9, + 0x4d, 0x2c, 0x8a, 0xe1, 0x3d, 0x05, 0x40, 0x07, 0x53, 0xec, 0xf4, 0xf0, 0x45, 0xa3, 0xe9, 0x82, + 0xb8, 0xa9, 0x2a, 0x82, 0x07, 0x74, 0x62, 0x1e, 0x9e, 0x63, 0xeb, 0x60, 0x90, 0x5e, 0x71, 0x09, + 0x99, 0xc4, 0x34, 0xfd, 0xf4, 0x50, 0xb8, 0x35, 0x94, 0xf9, 0x43, 0x5a, 0xf7, 0x85, 0x34, 0xfd, + 0x8a, 0x21, 0xad, 0x1f, 0x11, 0xd2, 0xfa, 0xf3, 0x42, 0x5a, 0xf7, 0x42, 0xd2, 0x7e, 0x9c, 0x06, + 0xf3, 0x15, 0xda, 0x7a, 0xcf, 0x64, 0xbb, 0x4d, 0x07, 0xdd, 0x45, 0xed, 0x7f, 0xad, 0x16, 0xbe, + 0x50, 0x40, 0x82, 0xee, 0x22, 0x07, 0x53, 0x9e, 0x28, 0x0e, 0xee, 0x90, 0x1e, 0x96, 0x35, 0xf1, + 0xd1, 0x89, 0xa9, 0x98, 0xb0, 0x74, 0x30, 0x48, 0x2f, 0xbb, 0x44, 0x04, 0x11, 0x4d, 0x8f, 0xbb, + 0xa2, 0x1a, 0xd1, 0x85, 0xe0, 0xb0, 0xcc, 0x0d, 0x1f, 0x9d, 0xb9, 0x91, 0x51, 0xe6, 0x6a, 0xcb, + 0xe0, 0xcc, 0x18, 0x89, 0xc3, 0x24, 0xd4, 0xbe, 0x9b, 0x11, 0xb9, 0xb9, 0xd3, 0x46, 0x0d, 0x5c, + 0x36, 0x3b, 0x26, 0xab, 0x3a, 0x4d, 0xec, 0xbc, 0x24, 0xc7, 0x2b, 0x20, 0xea, 0x52, 0x69, 0x5a, + 0x92, 0x64, 0x97, 0xda, 0x92, 0x05, 0xcf, 0x82, 0x98, 0x0b, 0x91, 0x2e, 0x93, 0x3c, 0xbb, 0xba, + 0xd5, 0x2e, 0x83, 0x39, 0xb0, 0x34, 0x3a, 0x9f, 0x61, 0x5a, 0xfc, 0x78, 0x5c, 0xef, 0x54, 0x46, + 0xc9, 0x86, 0xf4, 0x84, 0x77, 0xc0, 0x92, 0x55, 0x23, 0x5c, 0xdf, 0xeb, 0x1b, 0xdc, 0x51, 0x84, + 0x1b, 0x7b, 0xf9, 0xbe, 0x61, 0x98, 0x56, 0xb0, 0x6f, 0x18, 0xa6, 0xe5, 0xf5, 0x8d, 0x92, 0x05, + 0x2f, 0x03, 0x40, 0x38, 0x29, 0x06, 0xdf, 0xad, 0x46, 0x33, 0x4a, 0x36, 0x1e, 0x28, 0xfc, 0x11, + 0x71, 0xb5, 0x7d, 0x1b, 0xeb, 0x31, 0x32, 0x5c, 0xc2, 0x0a, 0x58, 0xc0, 0x7d, 0xdb, 0x74, 0x10, + 0xef, 0x04, 0x06, 0x1f, 0x41, 0x6a, 0x2c, 0xa3, 0x64, 0x67, 0x37, 0x92, 0x39, 0x77, 0x3e, 0xe5, + 0x86, 0xf3, 0x29, 0x57, 0x1b, 0xce, 0xa7, 0x62, 0xf4, 0xe1, 0x20, 0xad, 0xdc, 0xfb, 0x3d, 0xad, + 0xe8, 0xf1, 0xd1, 0x66, 0x0e, 0xc3, 0x4f, 0x41, 0xbc, 0x83, 0xfa, 0x86, 0x0c, 0x93, 0x53, 0x04, + 0xc4, 0xe9, 0x3f, 0xe0, 0x3b, 0x4e, 0x74, 0xfa, 0x80, 0x9d, 0x83, 0x41, 0xfa, 0x8c, 0x4b, 0xc1, + 0xb8, 0x5c, 0xd3, 0xe7, 0x3a, 0xa8, 0x5f, 0x10, 0xcf, 0xd5, 0x2e, 0xd3, 0x7e, 0x9b, 0x06, 0xc9, + 0xc9, 0x74, 0xf1, 0x5a, 0x5a, 0x0a, 0x00, 0xe6, 0x20, 0xab, 0xb1, 0x8b, 0xaf, 0xe3, 0x7d, 0x99, + 0x39, 0x3e, 0x09, 0xfc, 0x4c, 0x01, 0x11, 0x3e, 0xa3, 0xf9, 0xbd, 0x4d, 0x0b, 0x1e, 0x56, 0x72, + 0x72, 0x66, 0xf2, 0x39, 0x9e, 0x93, 0x73, 0x3c, 0xb7, 0x49, 0x4c, 0xab, 0x58, 0x96, 0x57, 0x7a, + 0xe1, 0x05, 0x0e, 0xc5, 0x37, 0x3c, 0x1b, 0xa4, 0x87, 0xc6, 0x0f, 0x06, 0xe9, 0xb8, 0x7b, 0x1c, + 0x29, 0xd0, 0xf4, 0x30, 0x5f, 0x95, 0x2c, 0xf8, 0x8d, 0x02, 0xe2, 0x0c, 0xed, 0x61, 0xc7, 0x10, + 0x10, 0xe7, 0x30, 0x74, 0x5c, 0x24, 0xb7, 0x4f, 0x1e, 0x49, 0xc0, 0xc7, 0x88, 0xdf, 0x71, 0xb9, + 0xa6, 0xcf, 0x09, 0x01, 0xdf, 0xc5, 0xf9, 0x7d, 0x1f, 0x9c, 0xf5, 0xd5, 0xe9, 0x55, 0xb3, 0xdd, + 0xc6, 0xcd, 0x17, 0x2a, 0xcb, 0x34, 0x98, 0x95, 0x3c, 0x1b, 0x7b, 0x78, 0x5f, 0x56, 0xa6, 0x8f, + 0x7a, 0xed, 0x35, 0x70, 0xee, 0x08, 0xcb, 0x5e, 0x3f, 0xd8, 0x01, 0x8b, 0x15, 0xda, 0xda, 0x44, + 0x56, 0x03, 0xb7, 0xff, 0x1e, 0xc7, 0xff, 0x13, 0x47, 0x0a, 0x5a, 0xf4, 0x1c, 0x9e, 0x03, 0xf3, + 0x95, 0x6e, 0x9b, 0x99, 0xef, 0x10, 0x5b, 0x27, 0x5d, 0x86, 0x79, 0xfb, 0xda, 0x25, 0x36, 0x75, + 0xe7, 0xa0, 0x2e, 0xd6, 0xda, 0xfd, 0x10, 0x58, 0xa8, 0xd0, 0xd6, 0x50, 0xf1, 0xe6, 0x5d, 0x64, + 0xbf, 0x64, 0x8b, 0xda, 0x00, 0x61, 0x87, 0xbb, 0xa1, 0x6a, 0x48, 0x4c, 0xf0, 0xe4, 0x58, 0x21, + 0x8f, 0x45, 0xa2, 0x4b, 0xcd, 0xf1, 0x76, 0x33, 0xf3, 0x4f, 0xb7, 0x9b, 0xaf, 0x15, 0x90, 0xc0, + 0x7d, 0x93, 0x19, 0x6d, 0x4e, 0x96, 0x61, 0x3b, 0x66, 0x03, 0x8b, 0x4e, 0x18, 0x2b, 0xee, 0x49, + 0xaf, 0x6f, 0xf9, 0xbc, 0xca, 0xf0, 0xd7, 0x88, 0xd3, 0x1a, 0xae, 0xf3, 0xbd, 0x8d, 0x7c, 0x97, + 0x99, 0x6d, 0x9a, 0xef, 0x20, 0xb6, 0x9b, 0xdb, 0x71, 0x70, 0x63, 0x0b, 0x37, 0xf8, 0x10, 0x0a, + 0xda, 0x1d, 0x0d, 0xa1, 0x20, 0xa2, 0xf1, 0xde, 0x63, 0x32, 0x71, 0x61, 0x3b, 0x5c, 0x00, 0xcf, + 0x83, 0x05, 0x9b, 0x37, 0xe9, 0x3a, 0xa6, 0xcc, 0x10, 0xcc, 0xa8, 0x61, 0xf1, 0xee, 0x3a, 0xcf, + 0xc5, 0x45, 0x4c, 0x99, 0x60, 0x4d, 0xfb, 0x4a, 0x01, 0xcb, 0x81, 0xbb, 0xf2, 0xfa, 0xc3, 0x27, + 0x20, 0xea, 0x55, 0x9d, 0x72, 0x5c, 0xd5, 0x5d, 0x39, 0x79, 0xd5, 0x79, 0xd6, 0x75, 0xd1, 0x09, + 0x78, 0x45, 0xdd, 0x57, 0x44, 0xea, 0xdc, 0xb2, 0x9b, 0x88, 0xe1, 0x1d, 0xf1, 0x4e, 0x0f, 0x2f, + 0x81, 0x18, 0xea, 0xb2, 0x5d, 0xe2, 0x98, 0x4c, 0x76, 0xa9, 0xa2, 0xfa, 0xf3, 0xf7, 0x6b, 0x4b, + 0x32, 0x94, 0x42, 0xb3, 0xe9, 0x60, 0x4a, 0x6f, 0x32, 0xc7, 0xb4, 0x5a, 0xfa, 0x48, 0x15, 0x5e, + 0x02, 0x61, 0xf7, 0xab, 0x40, 0x36, 0xaf, 0xc5, 0xb1, 0xe4, 0x71, 0x8d, 0x17, 0x63, 0x3c, 0xec, + 0x6f, 0x9f, 0x3e, 0x58, 0x55, 0x74, 0xa9, 0x7d, 0xf9, 0xfc, 0xe7, 0x4f, 0x1f, 0xac, 0x8e, 0xec, + 0x7c, 0xf9, 0xf4, 0xc1, 0xea, 0x22, 0xff, 0xc4, 0x08, 0xc4, 0xa5, 0xad, 0x08, 0xe6, 0xfc, 0xa2, + 0x21, 0x73, 0xab, 0x7d, 0x10, 0x1f, 0x9f, 0x32, 0xf0, 0x3f, 0x00, 0x5e, 0xab, 0x56, 0xb7, 0x8c, + 0x5a, 0xa9, 0x6c, 0x6c, 0x16, 0x6e, 0x6c, 0x6e, 0x97, 0xcb, 0xdb, 0x5b, 0x89, 0x29, 0x98, 0x00, + 0x73, 0x57, 0x4b, 0xe5, 0xb2, 0x51, 0xd5, 0x8d, 0xeb, 0xa5, 0x72, 0x39, 0xa1, 0xc0, 0x65, 0xb0, + 0x58, 0xaa, 0x54, 0xb6, 0xb7, 0x4a, 0x85, 0xda, 0x36, 0x17, 0xbb, 0xda, 0x89, 0x69, 0xae, 0xfa, + 0xee, 0xad, 0x9b, 0x35, 0xa3, 0x74, 0xc3, 0xa8, 0x95, 0x2a, 0xdb, 0x89, 0x10, 0x3c, 0x0d, 0xe6, + 0x3d, 0xa3, 0x42, 0x34, 0xb3, 0xf1, 0xe7, 0x0c, 0x08, 0x55, 0x68, 0x0b, 0x6e, 0x82, 0xc8, 0xf0, + 0x6b, 0x64, 0x79, 0xbc, 0x68, 0xbc, 0x57, 0xdb, 0x64, 0xfa, 0x10, 0xc0, 0x4b, 0x80, 0x32, 0x00, + 0xbe, 0x37, 0xb9, 0x64, 0x50, 0x7d, 0x84, 0x25, 0xb5, 0xc3, 0x31, 0xcf, 0xda, 0x87, 0x60, 0x21, + 0xf8, 0xe2, 0x32, 0x11, 0x41, 0x40, 0x21, 0x79, 0xe1, 0x18, 0x05, 0xcf, 0x78, 0x0f, 0xa8, 0x87, + 0xf6, 0xe1, 0xec, 0x61, 0xc1, 0x05, 0x35, 0x93, 0x17, 0x5f, 0x54, 0xd3, 0xf3, 0xfb, 0x31, 0x48, + 0x4c, 0xb4, 0xdf, 0x4c, 0xd0, 0x4a, 0x50, 0x23, 0x99, 0x3d, 0x4e, 0xc3, 0xb3, 0xaf, 0x83, 0xb9, + 0xb1, 0x3e, 0xfa, 0xdf, 0xe0, 0x4e, 0x3f, 0x9a, 0xfc, 0xff, 0x51, 0xa8, 0xdf, 0xe6, 0x58, 0x81, + 0x4d, 0xd8, 0xf4, 0xa3, 0x93, 0x36, 0x9f, 0x97, 0xf1, 0xc5, 0x6b, 0x0f, 0x1f, 0xa7, 0x94, 0x47, + 0x8f, 0x53, 0xca, 0x1f, 0x8f, 0x53, 0xca, 0xbd, 0x27, 0xa9, 0xa9, 0x47, 0x4f, 0x52, 0x53, 0xbf, + 0x3c, 0x49, 0x4d, 0xdd, 0x5e, 0x3b, 0xbe, 0xfd, 0xf5, 0xdd, 0xff, 0x27, 0xf0, 0xde, 0x50, 0x0f, + 0x8b, 0x57, 0xac, 0x37, 0xff, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x77, 0x17, 0xfd, 0x39, 0x6b, 0x10, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/dex/utils/math.go b/x/dex/utils/math.go index 2682b64f4..a09e6935d 100644 --- a/x/dex/utils/math.go +++ b/x/dex/utils/math.go @@ -7,7 +7,7 @@ import ( sdkmath "cosmossdk.io/math" - math_utils "github.com/neutron-org/neutron/utils/math" + math_utils "github.com/neutron-org/neutron/v2/utils/math" ) // Return the base value for price, 1.0001 diff --git a/x/feeburner/client/cli/query.go b/x/feeburner/client/cli/query.go index 7ef22a8fd..af202edfd 100644 --- a/x/feeburner/client/cli/query.go +++ b/x/feeburner/client/cli/query.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" - "github.com/neutron-org/neutron/x/feeburner/types" + "github.com/neutron-org/neutron/v2/x/feeburner/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/feeburner/client/cli/query_params.go b/x/feeburner/client/cli/query_params.go index 899ea5427..351df4bcc 100644 --- a/x/feeburner/client/cli/query_params.go +++ b/x/feeburner/client/cli/query_params.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/feeburner/types" + "github.com/neutron-org/neutron/v2/x/feeburner/types" ) func CmdQueryParams() *cobra.Command { diff --git a/x/feeburner/client/cli/query_total_burned_neutrons_amount.go b/x/feeburner/client/cli/query_total_burned_neutrons_amount.go index 7837468f7..3f9e2aab9 100644 --- a/x/feeburner/client/cli/query_total_burned_neutrons_amount.go +++ b/x/feeburner/client/cli/query_total_burned_neutrons_amount.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/feeburner/types" + "github.com/neutron-org/neutron/v2/x/feeburner/types" ) func CmdQueryTotalBurnedNeutronsAmount() *cobra.Command { diff --git a/x/feeburner/genesis.go b/x/feeburner/genesis.go index 097b3076d..f77923995 100644 --- a/x/feeburner/genesis.go +++ b/x/feeburner/genesis.go @@ -3,8 +3,8 @@ package feeburner import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/feeburner/keeper" - "github.com/neutron-org/neutron/x/feeburner/types" + "github.com/neutron-org/neutron/v2/x/feeburner/keeper" + "github.com/neutron-org/neutron/v2/x/feeburner/types" ) // InitGenesis initializes the module's state from a provided genesis state. diff --git a/x/feeburner/genesis_test.go b/x/feeburner/genesis_test.go index 696d1c13d..43cf53207 100644 --- a/x/feeburner/genesis_test.go +++ b/x/feeburner/genesis_test.go @@ -3,14 +3,14 @@ package feeburner_test import ( "testing" - "github.com/neutron-org/neutron/app" + "github.com/neutron-org/neutron/v2/app" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/testutil/feeburner/keeper" - "github.com/neutron-org/neutron/testutil/feeburner/nullify" - "github.com/neutron-org/neutron/x/feeburner" - "github.com/neutron-org/neutron/x/feeburner/types" + "github.com/neutron-org/neutron/v2/testutil/feeburner/keeper" + "github.com/neutron-org/neutron/v2/testutil/feeburner/nullify" + "github.com/neutron-org/neutron/v2/x/feeburner" + "github.com/neutron-org/neutron/v2/x/feeburner/types" ) func TestGenesis(t *testing.T) { diff --git a/x/feeburner/keeper/grpc_query.go b/x/feeburner/keeper/grpc_query.go index 041f190d8..43be2a164 100644 --- a/x/feeburner/keeper/grpc_query.go +++ b/x/feeburner/keeper/grpc_query.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/feeburner/types" + "github.com/neutron-org/neutron/v2/x/feeburner/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/feeburner/keeper/grpc_query_params.go b/x/feeburner/keeper/grpc_query_params.go index d04184d80..b82c2f73d 100644 --- a/x/feeburner/keeper/grpc_query_params.go +++ b/x/feeburner/keeper/grpc_query_params.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/feeburner/types" + "github.com/neutron-org/neutron/v2/x/feeburner/types" ) func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error) { diff --git a/x/feeburner/keeper/grpc_query_params_test.go b/x/feeburner/keeper/grpc_query_params_test.go index 5e519fdba..68efed9d0 100644 --- a/x/feeburner/keeper/grpc_query_params_test.go +++ b/x/feeburner/keeper/grpc_query_params_test.go @@ -3,13 +3,13 @@ package keeper_test import ( "testing" - "github.com/neutron-org/neutron/app" + "github.com/neutron-org/neutron/v2/app" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - testkeeper "github.com/neutron-org/neutron/testutil/feeburner/keeper" - "github.com/neutron-org/neutron/x/feeburner/types" + testkeeper "github.com/neutron-org/neutron/v2/testutil/feeburner/keeper" + "github.com/neutron-org/neutron/v2/x/feeburner/types" ) func TestParamsQuery(t *testing.T) { diff --git a/x/feeburner/keeper/grpc_query_test.go b/x/feeburner/keeper/grpc_query_test.go index 79efd0216..68ff33095 100644 --- a/x/feeburner/keeper/grpc_query_test.go +++ b/x/feeburner/keeper/grpc_query_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - feekeeperutil "github.com/neutron-org/neutron/testutil/feeburner/keeper" - "github.com/neutron-org/neutron/x/feeburner/types" + feekeeperutil "github.com/neutron-org/neutron/v2/testutil/feeburner/keeper" + "github.com/neutron-org/neutron/v2/x/feeburner/types" ) func TestGrpcQuery_TotalBurnedNeutronsAmount(t *testing.T) { diff --git a/x/feeburner/keeper/keeper.go b/x/feeburner/keeper/keeper.go index e65220b29..25d8fa680 100644 --- a/x/feeburner/keeper/keeper.go +++ b/x/feeburner/keeper/keeper.go @@ -13,7 +13,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" consumertypes "github.com/cosmos/interchain-security/v3/x/ccv/consumer/types" - "github.com/neutron-org/neutron/x/feeburner/types" + "github.com/neutron-org/neutron/v2/x/feeburner/types" ) type ( diff --git a/x/feeburner/keeper/keeper_test.go b/x/feeburner/keeper/keeper_test.go index a77c9288f..40698fc99 100644 --- a/x/feeburner/keeper/keeper_test.go +++ b/x/feeburner/keeper/keeper_test.go @@ -11,11 +11,11 @@ import ( "github.com/golang/mock/gomock" "github.com/stretchr/testify/require" - mock_types "github.com/neutron-org/neutron/testutil/mocks/feeburner/types" - "github.com/neutron-org/neutron/x/feeburner/keeper" + mock_types "github.com/neutron-org/neutron/v2/testutil/mocks/feeburner/types" + "github.com/neutron-org/neutron/v2/x/feeburner/keeper" - feekeeperutil "github.com/neutron-org/neutron/testutil/feeburner/keeper" - feetypes "github.com/neutron-org/neutron/x/feeburner/types" + feekeeperutil "github.com/neutron-org/neutron/v2/testutil/feeburner/keeper" + feetypes "github.com/neutron-org/neutron/v2/x/feeburner/types" ) func TestKeeper_RecordBurnedFees(t *testing.T) { diff --git a/x/feeburner/keeper/msg_server.go b/x/feeburner/keeper/msg_server.go index 1a446da99..cd95e5d24 100644 --- a/x/feeburner/keeper/msg_server.go +++ b/x/feeburner/keeper/msg_server.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/neutron-org/neutron/x/feeburner/types" + "github.com/neutron-org/neutron/v2/x/feeburner/types" ) type msgServer struct { diff --git a/x/feeburner/keeper/params.go b/x/feeburner/keeper/params.go index 4dadf2258..18ab63695 100644 --- a/x/feeburner/keeper/params.go +++ b/x/feeburner/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/feeburner/types" + "github.com/neutron-org/neutron/v2/x/feeburner/types" ) // GetParams get all parameters as types.Params diff --git a/x/feeburner/keeper/params_test.go b/x/feeburner/keeper/params_test.go index e48cb6b1d..1ddb8702b 100644 --- a/x/feeburner/keeper/params_test.go +++ b/x/feeburner/keeper/params_test.go @@ -3,12 +3,12 @@ package keeper_test import ( "testing" - "github.com/neutron-org/neutron/app" + "github.com/neutron-org/neutron/v2/app" "github.com/stretchr/testify/require" - testkeeper "github.com/neutron-org/neutron/testutil/feeburner/keeper" - "github.com/neutron-org/neutron/x/feeburner/types" + testkeeper "github.com/neutron-org/neutron/v2/testutil/feeburner/keeper" + "github.com/neutron-org/neutron/v2/x/feeburner/types" ) func TestGetParams(t *testing.T) { diff --git a/x/feeburner/module.go b/x/feeburner/module.go index 29ec04c41..51c1424ea 100644 --- a/x/feeburner/module.go +++ b/x/feeburner/module.go @@ -20,9 +20,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/neutron-org/neutron/x/feeburner/client/cli" - "github.com/neutron-org/neutron/x/feeburner/keeper" - "github.com/neutron-org/neutron/x/feeburner/types" + "github.com/neutron-org/neutron/v2/x/feeburner/client/cli" + "github.com/neutron-org/neutron/v2/x/feeburner/keeper" + "github.com/neutron-org/neutron/v2/x/feeburner/types" ) var ( diff --git a/x/feeburner/module_simulation.go b/x/feeburner/module_simulation.go index e2fa0a93f..16180bd75 100644 --- a/x/feeburner/module_simulation.go +++ b/x/feeburner/module_simulation.go @@ -8,9 +8,9 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/neutron-org/neutron/testutil/feeburner/sample" - feeburnersimulation "github.com/neutron-org/neutron/x/feeburner/simulation" - "github.com/neutron-org/neutron/x/feeburner/types" + "github.com/neutron-org/neutron/v2/testutil/feeburner/sample" + feeburnersimulation "github.com/neutron-org/neutron/v2/x/feeburner/simulation" + "github.com/neutron-org/neutron/v2/x/feeburner/types" ) // avoid unused import issue diff --git a/x/feeburner/types/genesis.pb.go b/x/feeburner/types/genesis.pb.go index 27a2cabb3..b3c6093ae 100644 --- a/x/feeburner/types/genesis.pb.go +++ b/x/feeburner/types/genesis.pb.go @@ -84,7 +84,7 @@ func init() { func init() { proto.RegisterFile("neutron/feeburner/genesis.proto", fileDescriptor_bdeb93808577407e) } var fileDescriptor_bdeb93808577407e = []byte{ - // 251 bytes of a gzipped FileDescriptorProto + // 254 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcf, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x4b, 0x4d, 0x4d, 0x2a, 0x2d, 0xca, 0x4b, 0x2d, 0xd2, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x84, 0x2a, 0xd0, @@ -96,11 +96,11 @@ var fileDescriptor_bdeb93808577407e = []byte{ 0x87, 0xe1, 0x40, 0xbd, 0x00, 0xb0, 0x02, 0x27, 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, 0xa0, 0xca, 0x85, 0x8a, 0xb9, 0x64, 0xf0, 0xd9, 0x27, 0xc1, 0x04, 0x36, 0x4e, 0x07, 0x8b, 0x71, 0x21, 0x20, 0x6d, 0x4e, 0x60, 0x5d, 0x7e, 0x50, 0x4d, 0x8e, 0x60, 0x3d, 0x50, 0x1b, 0x24, 0x4b, 0x70, 0x2a, - 0xf0, 0x3a, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, - 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0x83, 0xf4, 0xcc, 0x92, + 0xf0, 0x3d, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, + 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xe3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xa8, 0x95, 0xba, 0xf9, 0x45, 0xe9, 0x30, 0xb6, - 0x7e, 0x05, 0x72, 0x38, 0x55, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x43, 0xc4, 0x18, 0x10, 0x00, - 0x00, 0xff, 0xff, 0xeb, 0x01, 0xdc, 0x99, 0xb3, 0x01, 0x00, 0x00, + 0x7e, 0x99, 0x91, 0x7e, 0x05, 0x72, 0x50, 0x55, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x03, 0xc5, + 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x95, 0xab, 0xfe, 0x3f, 0xb6, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/feeburner/types/genesis_test.go b/x/feeburner/types/genesis_test.go index 86d267d06..41876a6db 100644 --- a/x/feeburner/types/genesis_test.go +++ b/x/feeburner/types/genesis_test.go @@ -3,14 +3,14 @@ package types_test import ( "testing" - "github.com/neutron-org/neutron/app" + "github.com/neutron-org/neutron/v2/app" "github.com/stretchr/testify/require" - keepertest "github.com/neutron-org/neutron/testutil/feeburner/keeper" - "github.com/neutron-org/neutron/testutil/feeburner/nullify" - "github.com/neutron-org/neutron/x/feeburner" - "github.com/neutron-org/neutron/x/feeburner/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/feeburner/keeper" + "github.com/neutron-org/neutron/v2/testutil/feeburner/nullify" + "github.com/neutron-org/neutron/v2/x/feeburner" + "github.com/neutron-org/neutron/v2/x/feeburner/types" ) func TestGenesis(t *testing.T) { diff --git a/x/feeburner/types/params.go b/x/feeburner/types/params.go index 1f33fb180..efa0fdc16 100644 --- a/x/feeburner/types/params.go +++ b/x/feeburner/types/params.go @@ -7,7 +7,7 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" "gopkg.in/yaml.v2" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app/params" ) var _ paramtypes.ParamSet = (*Params)(nil) diff --git a/x/feeburner/types/params.pb.go b/x/feeburner/types/params.pb.go index 7161153b2..2129bdf42 100644 --- a/x/feeburner/types/params.pb.go +++ b/x/feeburner/types/params.pb.go @@ -95,7 +95,7 @@ func init() { func init() { proto.RegisterFile("neutron/feeburner/params.proto", fileDescriptor_be38a6978544057e) } var fileDescriptor_be38a6978544057e = []byte{ - // 228 bytes of a gzipped FileDescriptorProto + // 231 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xcb, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x4b, 0x4d, 0x4d, 0x2a, 0x2d, 0xca, 0x4b, 0x2d, 0xd2, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x84, 0xca, 0xeb, 0xc1, @@ -105,12 +105,12 @@ var fileDescriptor_be38a6978544057e = []byte{ 0xce, 0xc5, 0x5f, 0x94, 0x5a, 0x9c, 0x5a, 0x54, 0x96, 0x1a, 0x9f, 0x98, 0x92, 0x52, 0x94, 0x5a, 0x5c, 0x2c, 0xc1, 0x04, 0x56, 0xc6, 0x07, 0x15, 0x76, 0x84, 0x88, 0x0a, 0x69, 0x72, 0x09, 0x94, 0x14, 0xa5, 0x26, 0x16, 0x97, 0x16, 0x55, 0xc2, 0x55, 0x32, 0x83, 0x55, 0xf2, 0xc3, 0xc4, 0xa1, - 0x4a, 0xad, 0x58, 0x66, 0x2c, 0x90, 0x67, 0x70, 0xf2, 0x3a, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, + 0x4a, 0xad, 0x58, 0x66, 0x2c, 0x90, 0x67, 0x70, 0xf2, 0x3d, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, - 0x63, 0x39, 0x86, 0x28, 0x83, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, - 0xa8, 0x63, 0x74, 0xf3, 0x8b, 0xd2, 0x61, 0x6c, 0xfd, 0x0a, 0xa4, 0x50, 0x28, 0xa9, 0x2c, 0x48, - 0x2d, 0x4e, 0x62, 0x03, 0x7b, 0xce, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xc4, 0x89, 0x9d, 0x54, - 0x27, 0x01, 0x00, 0x00, + 0x63, 0x39, 0x86, 0x28, 0xe3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, + 0xa8, 0x63, 0x74, 0xf3, 0x8b, 0xd2, 0x61, 0x6c, 0xfd, 0x32, 0x23, 0xfd, 0x0a, 0xa4, 0x80, 0x28, + 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0xfb, 0xcf, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xc0, + 0xc9, 0x6e, 0xfe, 0x2a, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/feeburner/types/query.pb.go b/x/feeburner/types/query.pb.go index f99671bc7..840ff18da 100644 --- a/x/feeburner/types/query.pb.go +++ b/x/feeburner/types/query.pb.go @@ -210,33 +210,33 @@ func init() { func init() { proto.RegisterFile("neutron/feeburner/query.proto", fileDescriptor_f540485c4b79b2ac) } var fileDescriptor_f540485c4b79b2ac = []byte{ - // 405 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x92, 0x31, 0x4f, 0xdb, 0x40, - 0x1c, 0xc5, 0xed, 0xa8, 0xcd, 0x70, 0x9d, 0x7a, 0xcd, 0x50, 0xbb, 0xa9, 0xdb, 0x5a, 0x4a, 0x5a, - 0x55, 0xad, 0xaf, 0x49, 0x2b, 0xa5, 0x8c, 0x64, 0x64, 0x88, 0x20, 0x62, 0x62, 0x89, 0xce, 0xe1, - 0x30, 0x96, 0xe2, 0xfb, 0x3b, 0xbe, 0x33, 0x22, 0x8c, 0x7c, 0x02, 0x24, 0x66, 0xbe, 0x4f, 0x98, - 0x88, 0xc4, 0xc2, 0x84, 0x50, 0xc2, 0x07, 0x41, 0x39, 0x5f, 0x22, 0x90, 0x63, 0x22, 0xd8, 0x6c, - 0xbf, 0x77, 0xef, 0xfd, 0xfe, 0x7f, 0x1f, 0xfa, 0xcc, 0x59, 0x2a, 0x13, 0xe0, 0xe4, 0x80, 0x31, - 0x3f, 0x4d, 0x38, 0x4b, 0xc8, 0x30, 0x65, 0xc9, 0xc8, 0x8b, 0x13, 0x90, 0x80, 0xdf, 0x6b, 0xd9, - 0x5b, 0xca, 0x76, 0x25, 0x80, 0x00, 0x94, 0x4a, 0xe6, 0x4f, 0x99, 0xd1, 0xae, 0x06, 0x00, 0xc1, - 0x80, 0x11, 0x1a, 0x87, 0x84, 0x72, 0x0e, 0x92, 0xca, 0x10, 0xb8, 0xd0, 0xea, 0xcf, 0x3e, 0x88, - 0x08, 0x04, 0xf1, 0xa9, 0x60, 0x59, 0x3e, 0x39, 0x6a, 0xf8, 0x4c, 0xd2, 0x06, 0x89, 0x69, 0x10, - 0x72, 0x65, 0xd6, 0x5e, 0x27, 0x4f, 0x14, 0xd3, 0x84, 0x46, 0x8b, 0xac, 0x7f, 0x79, 0x5d, 0x82, - 0xa4, 0x83, 0x9e, 0x7a, 0xd9, 0xef, 0x69, 0x59, 0xf4, 0x68, 0x04, 0x29, 0x97, 0xd9, 0x29, 0xb7, - 0x82, 0xf0, 0xce, 0xbc, 0x77, 0x5b, 0x45, 0x75, 0xd9, 0x30, 0x65, 0x42, 0xba, 0x1d, 0xf4, 0xe1, - 0xc9, 0x57, 0x11, 0x03, 0x17, 0x0c, 0xb7, 0x50, 0x39, 0xab, 0xfc, 0x68, 0x7e, 0x35, 0x7f, 0xbc, - 0x6b, 0x5a, 0x5e, 0x6e, 0x0d, 0x5e, 0x76, 0xa4, 0xfd, 0x66, 0x7c, 0xfb, 0xc5, 0xe8, 0x6a, 0xbb, - 0xfb, 0x1d, 0xd5, 0x54, 0xde, 0xee, 0x1c, 0xa8, 0xad, 0x78, 0x3a, 0x1a, 0x67, 0x53, 0xd1, 0x2c, - 0x8a, 0x2f, 0x4c, 0x54, 0x5f, 0xe7, 0xd4, 0x30, 0x02, 0x55, 0x9f, 0x9b, 0x4f, 0x23, 0xfe, 0x5a, - 0x81, 0x58, 0x98, 0xad, 0xa9, 0x2d, 0x59, 0x64, 0x68, 0x5e, 0x95, 0xd0, 0x5b, 0xc5, 0x87, 0x4f, - 0x50, 0x39, 0x1b, 0x15, 0xd7, 0x56, 0x54, 0xe4, 0x77, 0x6a, 0xd7, 0xd7, 0xd9, 0xb2, 0xb9, 0xdc, - 0x6f, 0xa7, 0xd7, 0xf7, 0xe7, 0xa5, 0x4f, 0xd8, 0x22, 0x45, 0x3f, 0x1c, 0x5f, 0x9a, 0xc8, 0x2a, - 0x1c, 0x02, 0xff, 0x2f, 0x2a, 0x5a, 0xb7, 0x7d, 0x7b, 0xe3, 0x15, 0x27, 0x35, 0x75, 0x4b, 0x51, - 0x37, 0x30, 0x21, 0x2f, 0xbb, 0x86, 0xed, 0xad, 0xf1, 0xd4, 0x31, 0x27, 0x53, 0xc7, 0xbc, 0x9b, - 0x3a, 0xe6, 0xd9, 0xcc, 0x31, 0x26, 0x33, 0xc7, 0xb8, 0x99, 0x39, 0xc6, 0xde, 0x9f, 0x20, 0x94, - 0x87, 0xa9, 0xef, 0xf5, 0x21, 0x5a, 0x84, 0xfe, 0x86, 0x24, 0x58, 0x16, 0x1c, 0x3f, 0xae, 0x18, - 0xc5, 0x4c, 0xf8, 0x65, 0x75, 0xa7, 0xff, 0x3e, 0x04, 0x00, 0x00, 0xff, 0xff, 0xfb, 0x35, 0xd5, - 0x1b, 0xbd, 0x03, 0x00, 0x00, + // 407 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x92, 0x31, 0x6f, 0xda, 0x40, + 0x1c, 0xc5, 0x6d, 0xd4, 0x32, 0x5c, 0xa7, 0x5e, 0x19, 0x6a, 0x97, 0xba, 0xad, 0x25, 0x68, 0x55, + 0xb5, 0x3e, 0x01, 0x95, 0x68, 0xc7, 0xb2, 0x17, 0x35, 0x28, 0x53, 0x16, 0x74, 0x26, 0x17, 0xc7, + 0x12, 0xbe, 0xbf, 0xf1, 0x9d, 0x51, 0xc8, 0x98, 0x4f, 0x10, 0x29, 0x73, 0xbe, 0x0f, 0x99, 0x82, + 0x94, 0x25, 0x53, 0x14, 0x41, 0x3e, 0x48, 0xc4, 0xf9, 0x40, 0x89, 0x8c, 0x83, 0x92, 0xcd, 0xf6, + 0x7b, 0xf7, 0xde, 0xef, 0xff, 0xf7, 0xa1, 0x8f, 0x9c, 0xa5, 0x32, 0x01, 0x4e, 0x0e, 0x18, 0xf3, + 0xd3, 0x84, 0xb3, 0x84, 0x8c, 0x52, 0x96, 0x4c, 0xbc, 0x38, 0x01, 0x09, 0xf8, 0xad, 0x96, 0xbd, + 0xb5, 0x6c, 0x57, 0x02, 0x08, 0x40, 0xa9, 0x64, 0xf9, 0x94, 0x19, 0xed, 0x6a, 0x00, 0x10, 0x0c, + 0x19, 0xa1, 0x71, 0x48, 0x28, 0xe7, 0x20, 0xa9, 0x0c, 0x81, 0x0b, 0xad, 0x7e, 0x1f, 0x80, 0x88, + 0x40, 0x10, 0x9f, 0x0a, 0x96, 0xe5, 0x93, 0x71, 0xc3, 0x67, 0x92, 0x36, 0x48, 0x4c, 0x83, 0x90, + 0x2b, 0xb3, 0xf6, 0x3a, 0x79, 0xa2, 0x98, 0x26, 0x34, 0x5a, 0x65, 0xfd, 0xca, 0xeb, 0x12, 0x24, + 0x1d, 0xf6, 0xd5, 0xcb, 0x7e, 0x5f, 0xcb, 0xa2, 0x4f, 0x23, 0x48, 0xb9, 0xcc, 0x4e, 0xb9, 0x15, + 0x84, 0x77, 0x96, 0xbd, 0xff, 0x55, 0x54, 0x8f, 0x8d, 0x52, 0x26, 0xa4, 0xdb, 0x45, 0xef, 0x1e, + 0x7d, 0x15, 0x31, 0x70, 0xc1, 0x70, 0x1b, 0x95, 0xb3, 0xca, 0xf7, 0xe6, 0x67, 0xf3, 0xdb, 0x9b, + 0xa6, 0xe5, 0xe5, 0xd6, 0xe0, 0x65, 0x47, 0x3a, 0xaf, 0xa6, 0x37, 0x9f, 0x8c, 0x9e, 0xb6, 0xbb, + 0x5f, 0x51, 0x4d, 0xe5, 0xed, 0x2e, 0x81, 0x3a, 0x8a, 0xa7, 0xab, 0x71, 0xfe, 0x2a, 0x9a, 0x55, + 0xf1, 0xb9, 0x89, 0xea, 0xdb, 0x9c, 0x1a, 0x46, 0xa0, 0xea, 0x53, 0xf3, 0x69, 0xc4, 0x1f, 0x1b, + 0x10, 0x0b, 0xb3, 0x35, 0xb5, 0x25, 0x8b, 0x0c, 0xcd, 0xcb, 0x12, 0x7a, 0xad, 0xf8, 0xf0, 0x31, + 0x2a, 0x67, 0xa3, 0xe2, 0xda, 0x86, 0x8a, 0xfc, 0x4e, 0xed, 0xfa, 0x36, 0x5b, 0x36, 0x97, 0xfb, + 0xe5, 0xe4, 0xea, 0xee, 0xac, 0xf4, 0x01, 0x5b, 0xa4, 0xe8, 0x87, 0xe3, 0x0b, 0x13, 0x59, 0x85, + 0x43, 0xe0, 0xdf, 0x45, 0x45, 0xdb, 0xb6, 0x6f, 0xff, 0x79, 0xc1, 0x49, 0x4d, 0xdd, 0x56, 0xd4, + 0x0d, 0x4c, 0xc8, 0xf3, 0xae, 0x61, 0xe7, 0xdf, 0x74, 0xee, 0x98, 0xb3, 0xb9, 0x63, 0xde, 0xce, + 0x1d, 0xf3, 0x74, 0xe1, 0x18, 0xb3, 0x85, 0x63, 0x5c, 0x2f, 0x1c, 0x63, 0xaf, 0x15, 0x84, 0xf2, + 0x30, 0xf5, 0xbd, 0x01, 0x44, 0xab, 0xd0, 0x9f, 0x90, 0x04, 0xeb, 0x82, 0x71, 0x93, 0x1c, 0x3d, + 0x6c, 0x99, 0xc4, 0x4c, 0xf8, 0x65, 0x75, 0xad, 0x5b, 0xf7, 0x01, 0x00, 0x00, 0xff, 0xff, 0x34, + 0x43, 0x2e, 0xe1, 0xc0, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/feeburner/types/total_burned_neutrons_amount.pb.go b/x/feeburner/types/total_burned_neutrons_amount.pb.go index cbfcb8388..5061cb1b3 100644 --- a/x/feeburner/types/total_burned_neutrons_amount.pb.go +++ b/x/feeburner/types/total_burned_neutrons_amount.pb.go @@ -79,7 +79,7 @@ func init() { } var fileDescriptor_dfe0eb8ae8e764c8 = []byte{ - // 247 bytes of a gzipped FileDescriptorProto + // 250 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x32, 0xc9, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x4b, 0x4d, 0x4d, 0x2a, 0x2d, 0xca, 0x4b, 0x2d, 0xd2, 0x2f, 0xc9, 0x2f, 0x49, 0xcc, 0x89, 0x07, 0x73, 0x52, 0xe2, 0xa1, 0xd2, 0xc5, 0xf1, 0x89, 0xb9, 0xf9, 0xa5, @@ -90,12 +90,12 @@ var fileDescriptor_dfe0eb8ae8e764c8 = []byte{ 0xdb, 0xe6, 0x07, 0xb5, 0xcc, 0x11, 0x6c, 0x97, 0x90, 0x13, 0x17, 0x0b, 0xc8, 0x00, 0x09, 0x46, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x49, 0x3d, 0x88, 0x0d, 0x7a, 0x20, 0x1b, 0xf4, 0xa0, 0x36, 0xe8, 0x39, 0xe7, 0x67, 0xe6, 0x39, 0x09, 0x9f, 0xb8, 0x27, 0xcf, 0xf0, 0xe9, 0x9e, 0x3c, 0x77, 0x65, - 0x62, 0x6e, 0x8e, 0x95, 0x12, 0x48, 0x93, 0x52, 0x10, 0x58, 0xaf, 0x93, 0xd7, 0x89, 0x47, 0x72, + 0x62, 0x6e, 0x8e, 0x95, 0x12, 0x48, 0x93, 0x52, 0x10, 0x58, 0xaf, 0x93, 0xef, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, 0x85, 0xc7, - 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x19, 0xa4, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, - 0xe7, 0xe7, 0xea, 0x43, 0xbd, 0xa3, 0x9b, 0x5f, 0x94, 0x0e, 0x63, 0xeb, 0x57, 0x20, 0x07, 0x49, - 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0xcd, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7a, - 0xfe, 0xd6, 0xe6, 0x34, 0x01, 0x00, 0x00, + 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x19, 0xa7, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, + 0xe7, 0xe7, 0xea, 0x43, 0xbd, 0xa3, 0x9b, 0x5f, 0x94, 0x0e, 0x63, 0xeb, 0x97, 0x19, 0xe9, 0x57, + 0x20, 0x87, 0x4a, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0xd9, 0xc6, 0x80, 0x00, 0x00, 0x00, + 0xff, 0xff, 0x41, 0x6d, 0xde, 0xb0, 0x37, 0x01, 0x00, 0x00, } func (m *TotalBurnedNeutronsAmount) Marshal() (dAtA []byte, err error) { diff --git a/x/feeburner/types/tx.pb.go b/x/feeburner/types/tx.pb.go index bd7c19eed..65e478bf7 100644 --- a/x/feeburner/types/tx.pb.go +++ b/x/feeburner/types/tx.pb.go @@ -139,7 +139,7 @@ func init() { func init() { proto.RegisterFile("neutron/feeburner/tx.proto", fileDescriptor_49e6591b4db80f7f) } var fileDescriptor_49e6591b4db80f7f = []byte{ - // 337 bytes of a gzipped FileDescriptorProto + // 340 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xca, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x4b, 0x4d, 0x4d, 0x2a, 0x2d, 0xca, 0x4b, 0x2d, 0xd2, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x84, 0xca, 0xe9, 0xc1, 0xe5, 0xa4, 0xe4, 0x30, @@ -156,12 +156,12 @@ var fileDescriptor_49e6591b4db80f7f = []byte{ 0xd0, 0x42, 0x98, 0xd6, 0xf5, 0x7c, 0x83, 0x96, 0x24, 0x22, 0x44, 0xd0, 0xdc, 0xa8, 0x24, 0xc9, 0x25, 0x8e, 0x26, 0x14, 0x94, 0x5a, 0x5c, 0x90, 0x9f, 0x57, 0x9c, 0x6a, 0x94, 0xca, 0xc5, 0xec, 0x5b, 0x9c, 0x2e, 0x14, 0xc7, 0xc5, 0x83, 0xe2, 0x2b, 0x25, 0x2c, 0xae, 0x41, 0x33, 0x42, 0x4a, - 0x8b, 0xb0, 0x1a, 0x98, 0x35, 0x4e, 0x5e, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, + 0x8b, 0xb0, 0x1a, 0x98, 0x35, 0x4e, 0xbe, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, - 0x10, 0x65, 0x90, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x0f, 0x35, 0x4f, - 0x37, 0xbf, 0x28, 0x1d, 0xc6, 0xd6, 0xaf, 0x40, 0x4e, 0x18, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, - 0xe0, 0xc8, 0x30, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xdf, 0x4a, 0xc2, 0x1e, 0x3a, 0x02, 0x00, - 0x00, + 0x10, 0x65, 0x9c, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x0f, 0x35, 0x4f, + 0x37, 0xbf, 0x28, 0x1d, 0xc6, 0xd6, 0x2f, 0x33, 0xd2, 0xaf, 0x40, 0x4e, 0x1b, 0x95, 0x05, 0xa9, + 0xc5, 0x49, 0x6c, 0xe0, 0xf8, 0x30, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xf3, 0x4d, 0x1e, 0xf5, + 0x3d, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/feerefunder/client/cli/query.go b/x/feerefunder/client/cli/query.go index 1bb2b0437..70c1f4e69 100644 --- a/x/feerefunder/client/cli/query.go +++ b/x/feerefunder/client/cli/query.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" - "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/feerefunder/client/cli/query_params.go b/x/feerefunder/client/cli/query_params.go index c3c4452a7..f5d52e2b1 100644 --- a/x/feerefunder/client/cli/query_params.go +++ b/x/feerefunder/client/cli/query_params.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) func CmdQueryParams() *cobra.Command { diff --git a/x/feerefunder/client/cli/query_test.go b/x/feerefunder/client/cli/query_test.go index f28231dc8..dda30931a 100644 --- a/x/feerefunder/client/cli/query_test.go +++ b/x/feerefunder/client/cli/query_test.go @@ -3,15 +3,15 @@ package cli_test import ( "testing" - "github.com/neutron-org/neutron/app" + "github.com/neutron-org/neutron/v2/app" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/testutil/contractmanager/network" - "github.com/neutron-org/neutron/x/feerefunder/client/cli" - "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/testutil/contractmanager/network" + "github.com/neutron-org/neutron/v2/x/feerefunder/client/cli" + "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) func feeRefunderNetwork(t *testing.T, feeInfo types.Fee) *network.Network { diff --git a/x/feerefunder/genesis.go b/x/feerefunder/genesis.go index 32eeb56ee..f1e3b171b 100644 --- a/x/feerefunder/genesis.go +++ b/x/feerefunder/genesis.go @@ -3,8 +3,8 @@ package feerefunder import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/feerefunder/keeper" - "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/feerefunder/keeper" + "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) // InitGenesis initializes the module's state from a provided genesis state. diff --git a/x/feerefunder/genesis_test.go b/x/feerefunder/genesis_test.go index a2b84ee3e..4dd2c27ed 100644 --- a/x/feerefunder/genesis_test.go +++ b/x/feerefunder/genesis_test.go @@ -3,15 +3,15 @@ package feerefunder_test import ( "testing" - "github.com/neutron-org/neutron/app/params" - "github.com/neutron-org/neutron/testutil/feerefunder/keeper" + "github.com/neutron-org/neutron/v2/app/params" + "github.com/neutron-org/neutron/v2/testutil/feerefunder/keeper" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/testutil/interchainqueries/nullify" - "github.com/neutron-org/neutron/x/feerefunder" - "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/testutil/interchainqueries/nullify" + "github.com/neutron-org/neutron/v2/x/feerefunder" + "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) const TestContractAddressNeutron = "neutron14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9s5c2epq" diff --git a/x/feerefunder/keeper/export_test.go b/x/feerefunder/keeper/export_test.go index 78b1026ac..544c1151f 100644 --- a/x/feerefunder/keeper/export_test.go +++ b/x/feerefunder/keeper/export_test.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) func (k Keeper) CheckFees(ctx sdk.Context, fees types.Fee) error { diff --git a/x/feerefunder/keeper/grpc_query.go b/x/feerefunder/keeper/grpc_query.go index 5029bbf28..b9c88d329 100644 --- a/x/feerefunder/keeper/grpc_query.go +++ b/x/feerefunder/keeper/grpc_query.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/feerefunder/keeper/grpc_query_params.go b/x/feerefunder/keeper/grpc_query_params.go index 3e23090d2..ef4424055 100644 --- a/x/feerefunder/keeper/grpc_query_params.go +++ b/x/feerefunder/keeper/grpc_query_params.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error) { diff --git a/x/feerefunder/keeper/grpc_query_params_test.go b/x/feerefunder/keeper/grpc_query_params_test.go index 4f185f9ea..56c6c0d0d 100644 --- a/x/feerefunder/keeper/grpc_query_params_test.go +++ b/x/feerefunder/keeper/grpc_query_params_test.go @@ -3,12 +3,12 @@ package keeper_test import ( "testing" - testkeeper "github.com/neutron-org/neutron/testutil/feerefunder/keeper" + testkeeper "github.com/neutron-org/neutron/v2/testutil/feerefunder/keeper" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) func TestParamsQuery(t *testing.T) { diff --git a/x/feerefunder/keeper/keeper.go b/x/feerefunder/keeper/keeper.go index e0ab9b9d5..67bae795f 100644 --- a/x/feerefunder/keeper/keeper.go +++ b/x/feerefunder/keeper/keeper.go @@ -14,7 +14,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) type ( diff --git a/x/feerefunder/keeper/keeper_test.go b/x/feerefunder/keeper/keeper_test.go index cbdfa056c..ed529baf9 100644 --- a/x/feerefunder/keeper/keeper_test.go +++ b/x/feerefunder/keeper/keeper_test.go @@ -8,9 +8,9 @@ import ( "github.com/golang/mock/gomock" "github.com/stretchr/testify/assert" - "github.com/neutron-org/neutron/testutil" - testutil_keeper "github.com/neutron-org/neutron/testutil/feerefunder/keeper" - mock_types "github.com/neutron-org/neutron/testutil/mocks/feerefunder/types" + "github.com/neutron-org/neutron/v2/testutil" + testutil_keeper "github.com/neutron-org/neutron/v2/testutil/feerefunder/keeper" + mock_types "github.com/neutron-org/neutron/v2/testutil/mocks/feerefunder/types" cosmoserrors "cosmossdk.io/errors" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" @@ -19,7 +19,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/feerefunder/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" ) diff --git a/x/feerefunder/keeper/msg_server.go b/x/feerefunder/keeper/msg_server.go index 9bbb4cff9..bfbb3569a 100644 --- a/x/feerefunder/keeper/msg_server.go +++ b/x/feerefunder/keeper/msg_server.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) type msgServer struct { diff --git a/x/feerefunder/keeper/params.go b/x/feerefunder/keeper/params.go index ce942596e..5b6efcea9 100644 --- a/x/feerefunder/keeper/params.go +++ b/x/feerefunder/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) // GetParams get all parameters as types.Params diff --git a/x/feerefunder/keeper/params_test.go b/x/feerefunder/keeper/params_test.go index 357e75a86..19ad79a2a 100644 --- a/x/feerefunder/keeper/params_test.go +++ b/x/feerefunder/keeper/params_test.go @@ -3,11 +3,11 @@ package keeper_test import ( "testing" - testkeeper "github.com/neutron-org/neutron/testutil/feerefunder/keeper" + testkeeper "github.com/neutron-org/neutron/v2/testutil/feerefunder/keeper" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) func TestGetParams(t *testing.T) { diff --git a/x/feerefunder/module.go b/x/feerefunder/module.go index 7f7d22730..e908cbd2d 100644 --- a/x/feerefunder/module.go +++ b/x/feerefunder/module.go @@ -21,9 +21,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/neutron-org/neutron/x/feerefunder/client/cli" - "github.com/neutron-org/neutron/x/feerefunder/keeper" - "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/feerefunder/client/cli" + "github.com/neutron-org/neutron/v2/x/feerefunder/keeper" + "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) var ( diff --git a/x/feerefunder/types/fee.pb.go b/x/feerefunder/types/fee.pb.go index 0871de5fe..5a4d0b750 100644 --- a/x/feerefunder/types/fee.pb.go +++ b/x/feerefunder/types/fee.pb.go @@ -158,31 +158,31 @@ func init() { func init() { proto.RegisterFile("neutron/feerefunder/fee.proto", fileDescriptor_08c389f5f82f1076) } var fileDescriptor_08c389f5f82f1076 = []byte{ - // 380 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0xcf, 0x6a, 0xea, 0x40, - 0x14, 0xc6, 0x33, 0x7a, 0xf1, 0xcf, 0x08, 0xf7, 0x42, 0xee, 0x85, 0x6b, 0x05, 0xa3, 0x64, 0x95, - 0x8d, 0x19, 0xb4, 0xbb, 0x2e, 0xb5, 0x08, 0x42, 0x17, 0xc5, 0x65, 0x17, 0x95, 0x64, 0x72, 0x8c, - 0x21, 0x66, 0xc6, 0x26, 0x13, 0xa9, 0xdb, 0x3e, 0x41, 0x9f, 0xa3, 0x4f, 0xe2, 0xd2, 0x65, 0x57, - 0xb6, 0xe8, 0x1b, 0x74, 0x5f, 0x28, 0x93, 0x8c, 0xc5, 0xae, 0xc4, 0x55, 0xce, 0x9c, 0x8f, 0xef, - 0xfb, 0x7d, 0x81, 0x83, 0x9b, 0x0c, 0x52, 0x11, 0x73, 0x46, 0xa6, 0x00, 0x31, 0x4c, 0x53, 0xe6, - 0x41, 0x2c, 0x67, 0x7b, 0x11, 0x73, 0xc1, 0xf5, 0xbf, 0x4a, 0xb6, 0x8f, 0xe4, 0x86, 0x41, 0x79, - 0x12, 0xf1, 0x84, 0xb8, 0x4e, 0x02, 0x64, 0xd9, 0x75, 0x41, 0x38, 0x5d, 0x42, 0x79, 0xc0, 0x72, - 0x53, 0xe3, 0x9f, 0xcf, 0x7d, 0x9e, 0x8d, 0x44, 0x4e, 0xf9, 0xd6, 0xfc, 0x2c, 0xe0, 0xe2, 0x10, - 0x40, 0x5f, 0xe1, 0x4a, 0x0c, 0x74, 0x39, 0x99, 0x02, 0xd4, 0x51, 0xbb, 0x68, 0xd5, 0x7a, 0x17, - 0x76, 0x1e, 0x68, 0xcb, 0x40, 0x5b, 0x05, 0xda, 0x03, 0x1e, 0xb0, 0xfe, 0x60, 0xbd, 0x6d, 0x69, - 0x1f, 0xdb, 0xd6, 0x9f, 0x95, 0x13, 0xcd, 0xaf, 0xcc, 0x83, 0xd1, 0x7c, 0x79, 0x6b, 0x59, 0x7e, - 0x20, 0x66, 0xa9, 0x6b, 0x53, 0x1e, 0x11, 0x55, 0x28, 0xff, 0x74, 0x12, 0x2f, 0x24, 0x62, 0xb5, - 0x80, 0x24, 0xcb, 0x48, 0xc6, 0x65, 0x69, 0x93, 0xe8, 0x25, 0x2e, 0x3b, 0x34, 0xcc, 0xc8, 0x85, - 0x53, 0xe4, 0xbe, 0x22, 0xff, 0xce, 0xc9, 0xca, 0x77, 0x1e, 0xb8, 0xe4, 0xd0, 0x50, 0x72, 0x9f, - 0x10, 0xae, 0x89, 0x20, 0x02, 0x9e, 0x8a, 0x0c, 0x5e, 0x3c, 0x05, 0x1f, 0x2a, 0xb8, 0x9e, 0xc3, - 0x8f, 0xbc, 0xe7, 0x15, 0xc0, 0xca, 0x39, 0x04, 0x30, 0xef, 0x71, 0xe5, 0xd6, 0xa1, 0x21, 0x88, - 0xd1, 0xb5, 0xde, 0xc4, 0x98, 0xce, 0x1c, 0xc6, 0x60, 0x3e, 0x09, 0xbc, 0x3a, 0x6a, 0x23, 0xab, - 0x3a, 0xae, 0xaa, 0xcd, 0xc8, 0xd3, 0xff, 0xe3, 0xf2, 0x82, 0xc7, 0x42, 0x6a, 0x85, 0x4c, 0x2b, - 0xc9, 0xe7, 0xc8, 0xd3, 0x1b, 0xb8, 0x92, 0xc0, 0x43, 0x0a, 0x8c, 0xca, 0x9f, 0x40, 0xd6, 0xaf, - 0xf1, 0xf7, 0xbb, 0x7f, 0xb3, 0xde, 0x19, 0x68, 0xb3, 0x33, 0xd0, 0xfb, 0xce, 0x40, 0xcf, 0x7b, - 0x43, 0xdb, 0xec, 0x0d, 0xed, 0x75, 0x6f, 0x68, 0x77, 0xbd, 0xa3, 0xbe, 0xea, 0x9e, 0x3a, 0x3c, - 0xf6, 0x0f, 0x33, 0x79, 0xfc, 0x71, 0x7c, 0x59, 0x7f, 0xb7, 0x94, 0x1d, 0xcd, 0xe5, 0x57, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x73, 0x51, 0x88, 0xb3, 0xa0, 0x02, 0x00, 0x00, + // 384 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0x4f, 0x6b, 0xe2, 0x40, + 0x18, 0xc6, 0x33, 0xba, 0xf8, 0x67, 0x84, 0x5d, 0xc8, 0x2e, 0xac, 0x2b, 0x18, 0x25, 0xa7, 0x5c, + 0xcc, 0xa0, 0xcb, 0x5e, 0xf6, 0xa8, 0x8b, 0xe0, 0x69, 0x8b, 0xc7, 0x1e, 0x2a, 0xc9, 0xe4, 0x35, + 0x86, 0x98, 0x19, 0x9b, 0x4c, 0x42, 0xbd, 0xf6, 0x13, 0xf4, 0x73, 0xf4, 0x93, 0x78, 0xf4, 0xd8, + 0x93, 0x2d, 0xfa, 0x0d, 0x7a, 0x2f, 0x94, 0x49, 0xc6, 0x62, 0x4f, 0xe2, 0x69, 0x9e, 0x99, 0x87, + 0xe7, 0xf9, 0xbd, 0x03, 0x2f, 0x6e, 0x33, 0x48, 0x45, 0xcc, 0x19, 0x99, 0x03, 0xc4, 0x30, 0x4f, + 0x99, 0x07, 0xb1, 0xd4, 0xf6, 0x2a, 0xe6, 0x82, 0xeb, 0xdf, 0x95, 0x6d, 0x9f, 0xd8, 0x2d, 0x83, + 0xf2, 0x24, 0xe2, 0x09, 0x71, 0x9d, 0x04, 0x48, 0xd6, 0x77, 0x41, 0x38, 0x7d, 0x42, 0x79, 0xc0, + 0x8a, 0x50, 0xeb, 0x87, 0xcf, 0x7d, 0x9e, 0x4b, 0x22, 0x55, 0xf1, 0x6a, 0xbe, 0x95, 0x70, 0x79, + 0x0c, 0xa0, 0xaf, 0x71, 0x2d, 0x06, 0x9a, 0xcd, 0xe6, 0x00, 0x4d, 0xd4, 0x2d, 0x5b, 0x8d, 0xc1, + 0x2f, 0xbb, 0x28, 0xb4, 0x65, 0xa1, 0xad, 0x0a, 0xed, 0x11, 0x0f, 0xd8, 0x70, 0xb4, 0xd9, 0x75, + 0xb4, 0xd7, 0x5d, 0xe7, 0xdb, 0xda, 0x89, 0x96, 0x7f, 0xcd, 0x63, 0xd0, 0x7c, 0x7c, 0xee, 0x58, + 0x7e, 0x20, 0x16, 0xa9, 0x6b, 0x53, 0x1e, 0x11, 0x35, 0x50, 0x71, 0xf4, 0x12, 0x2f, 0x24, 0x62, + 0xbd, 0x82, 0x24, 0xef, 0x48, 0xa6, 0x55, 0x19, 0x93, 0xe8, 0x0c, 0x57, 0x1d, 0x1a, 0xe6, 0xe4, + 0xd2, 0x39, 0xf2, 0x50, 0x91, 0xbf, 0x16, 0x64, 0x95, 0xbb, 0x0c, 0x5c, 0x71, 0x68, 0x28, 0xb9, + 0xf7, 0x08, 0x37, 0x44, 0x10, 0x01, 0x4f, 0x45, 0x0e, 0x2f, 0x9f, 0x83, 0x8f, 0x15, 0x5c, 0x2f, + 0xe0, 0x27, 0xd9, 0xcb, 0x06, 0xc0, 0x2a, 0x39, 0x06, 0x30, 0x6f, 0x70, 0xed, 0xca, 0xa1, 0x21, + 0x88, 0xc9, 0x3f, 0xbd, 0x8d, 0x31, 0x5d, 0x38, 0x8c, 0xc1, 0x72, 0x16, 0x78, 0x4d, 0xd4, 0x45, + 0x56, 0x7d, 0x5a, 0x57, 0x2f, 0x13, 0x4f, 0xff, 0x89, 0xab, 0x2b, 0x1e, 0x0b, 0xe9, 0x95, 0x72, + 0xaf, 0x22, 0xaf, 0x13, 0x4f, 0x6f, 0xe1, 0x5a, 0x02, 0xb7, 0x29, 0x30, 0x2a, 0x3f, 0x81, 0xac, + 0x2f, 0xd3, 0x8f, 0xfb, 0xf0, 0xff, 0x66, 0x6f, 0xa0, 0xed, 0xde, 0x40, 0x2f, 0x7b, 0x03, 0x3d, + 0x1c, 0x0c, 0x6d, 0x7b, 0x30, 0xb4, 0xa7, 0x83, 0xa1, 0x5d, 0xff, 0x39, 0x99, 0x57, 0xed, 0x53, + 0x8f, 0xc7, 0xfe, 0x51, 0x93, 0x6c, 0x40, 0xee, 0x3e, 0xed, 0x5f, 0xfe, 0x05, 0xb7, 0x92, 0xef, + 0xcd, 0xef, 0xf7, 0x00, 0x00, 0x00, 0xff, 0xff, 0x64, 0x4c, 0xb2, 0xec, 0xa3, 0x02, 0x00, 0x00, } func (m *Fee) Marshal() (dAtA []byte, err error) { diff --git a/x/feerefunder/types/genesis.pb.go b/x/feerefunder/types/genesis.pb.go index 4dbe77e54..dcbb8105b 100644 --- a/x/feerefunder/types/genesis.pb.go +++ b/x/feerefunder/types/genesis.pb.go @@ -145,27 +145,27 @@ func init() { func init() { proto.RegisterFile("neutron/feerefunder/genesis.proto", fileDescriptor_43aedfe31f06653d) } var fileDescriptor_43aedfe31f06653d = []byte{ - // 313 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x90, 0xc1, 0x4a, 0xf3, 0x40, - 0x10, 0xc7, 0xb3, 0xed, 0xf7, 0x55, 0xbb, 0xf5, 0xb4, 0xf6, 0x10, 0xaa, 0x5d, 0x6b, 0x4f, 0xbd, - 0x98, 0x48, 0x3d, 0x79, 0x52, 0x8a, 0x28, 0x01, 0x0f, 0x52, 0x6f, 0x5e, 0x4a, 0xda, 0xcc, 0xc6, - 0x20, 0xdd, 0x0d, 0x9b, 0x0d, 0xd8, 0x57, 0xf0, 0x24, 0xf8, 0x52, 0x3d, 0xf6, 0xe8, 0x49, 0x24, - 0x79, 0x11, 0xc9, 0xee, 0x16, 0x14, 0xd2, 0xdb, 0x0c, 0xf3, 0xfb, 0xcd, 0xfc, 0x19, 0x7c, 0xca, - 0x21, 0x57, 0x52, 0x70, 0x9f, 0x01, 0x48, 0x60, 0x39, 0x8f, 0x40, 0xfa, 0x31, 0x70, 0xc8, 0x92, - 0xcc, 0x4b, 0xa5, 0x50, 0x82, 0x1c, 0x5a, 0xc4, 0xfb, 0x85, 0xf4, 0xba, 0xb1, 0x88, 0x85, 0x9e, - 0xfb, 0x55, 0x65, 0xd0, 0xde, 0xa0, 0x6e, 0x5b, 0x1a, 0xca, 0x70, 0x69, 0x97, 0xf5, 0xfa, 0x75, - 0x04, 0x03, 0x30, 0xe3, 0xe1, 0x1b, 0xc2, 0x07, 0x77, 0xe6, 0xfa, 0xa3, 0x0a, 0x15, 0x90, 0x4b, - 0xdc, 0x32, 0xbe, 0x8b, 0x06, 0x68, 0xd4, 0x19, 0x1f, 0x79, 0x35, 0x69, 0xbc, 0x07, 0x8d, 0x4c, - 0xfe, 0xad, 0xbf, 0x4e, 0x9c, 0xa9, 0x15, 0xc8, 0x15, 0x6e, 0x33, 0x80, 0x59, 0xc2, 0x99, 0xc8, - 0xdc, 0xc6, 0xa0, 0x39, 0xea, 0x8c, 0x8f, 0x6b, 0xed, 0x5b, 0x80, 0x80, 0x33, 0x61, 0xf5, 0x7d, - 0x66, 0xda, 0x6c, 0xf8, 0x81, 0xf0, 0x9e, 0x9d, 0x91, 0x2e, 0xfe, 0x9f, 0x86, 0x2b, 0x90, 0x3a, - 0x46, 0x7b, 0x6a, 0x1a, 0x72, 0x8d, 0xdb, 0x69, 0xb8, 0x78, 0x01, 0x35, 0x4b, 0x22, 0xb7, 0xa1, - 0x03, 0xf6, 0x77, 0x04, 0xac, 0xa8, 0xe0, 0x66, 0x7b, 0xc3, 0x58, 0x41, 0x44, 0xce, 0x71, 0x93, - 0x01, 0xb8, 0x4d, 0xed, 0xba, 0xbb, 0xe2, 0x59, 0xad, 0x42, 0x27, 0xf7, 0xeb, 0x82, 0xa2, 0x4d, - 0x41, 0xd1, 0x77, 0x41, 0xd1, 0x7b, 0x49, 0x9d, 0x4d, 0x49, 0x9d, 0xcf, 0x92, 0x3a, 0x4f, 0xe3, - 0x38, 0x51, 0xcf, 0xf9, 0xdc, 0x5b, 0x88, 0xa5, 0x6f, 0x17, 0x9d, 0x09, 0x19, 0x6f, 0x6b, 0xff, - 0xf5, 0xcf, 0xd3, 0xd5, 0x2a, 0x85, 0x6c, 0xde, 0xd2, 0x7f, 0xbf, 0xf8, 0x09, 0x00, 0x00, 0xff, - 0xff, 0x64, 0x48, 0xa9, 0x7f, 0x08, 0x02, 0x00, 0x00, + // 316 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x90, 0xb1, 0x4e, 0x32, 0x41, + 0x10, 0xc7, 0x6f, 0xe1, 0xfb, 0x50, 0x16, 0xab, 0x95, 0xe2, 0x82, 0xb2, 0x22, 0x15, 0x8d, 0xb7, + 0x06, 0x63, 0x61, 0xa5, 0x21, 0x46, 0x43, 0xa5, 0xc1, 0xce, 0x86, 0x1c, 0x30, 0x7b, 0x5e, 0x0c, + 0xbb, 0x97, 0xbd, 0xc5, 0xc8, 0x2b, 0x58, 0x99, 0xf8, 0x52, 0x94, 0x94, 0x56, 0xc6, 0xdc, 0xbd, + 0x88, 0xb9, 0xdd, 0x25, 0xd1, 0xe4, 0xe8, 0x66, 0x32, 0xbf, 0xdf, 0xcc, 0x3f, 0x83, 0x8f, 0x05, + 0x2c, 0xb4, 0x92, 0x82, 0x71, 0x00, 0x05, 0x7c, 0x21, 0x66, 0xa0, 0x58, 0x04, 0x02, 0xd2, 0x38, + 0x0d, 0x12, 0x25, 0xb5, 0x24, 0xfb, 0x0e, 0x09, 0x7e, 0x21, 0xad, 0x66, 0x24, 0x23, 0x69, 0xe6, + 0xac, 0xa8, 0x2c, 0xda, 0xea, 0x94, 0x6d, 0x4b, 0x42, 0x15, 0xce, 0xdd, 0xb2, 0x56, 0xbb, 0x8c, + 0xe0, 0x00, 0x76, 0xdc, 0x7d, 0x43, 0x78, 0xef, 0xd6, 0x5e, 0x7f, 0xd0, 0xa1, 0x06, 0x72, 0x81, + 0x6b, 0xd6, 0xf7, 0x51, 0x07, 0xf5, 0x1a, 0xfd, 0x83, 0xa0, 0x24, 0x4d, 0x70, 0x6f, 0x90, 0xc1, + 0xbf, 0xd5, 0xd7, 0x91, 0x37, 0x72, 0x02, 0xb9, 0xc4, 0x75, 0x0e, 0x30, 0x8e, 0x05, 0x97, 0xa9, + 0x5f, 0xe9, 0x54, 0x7b, 0x8d, 0xfe, 0x61, 0xa9, 0x7d, 0x03, 0x30, 0x14, 0x5c, 0x3a, 0x7d, 0x97, + 0xdb, 0x36, 0xed, 0x7e, 0x20, 0xbc, 0xe3, 0x66, 0xa4, 0x89, 0xff, 0x27, 0xe1, 0x12, 0x94, 0x89, + 0x51, 0x1f, 0xd9, 0x86, 0x5c, 0xe1, 0x7a, 0x12, 0x4e, 0x9f, 0x41, 0x8f, 0xe3, 0x99, 0x5f, 0x31, + 0x01, 0xdb, 0x5b, 0x02, 0x16, 0xd4, 0xf0, 0x7a, 0x73, 0xc3, 0x5a, 0xc3, 0x19, 0x39, 0xc5, 0x55, + 0x0e, 0xe0, 0x57, 0x8d, 0xeb, 0x6f, 0x8b, 0xe7, 0xb4, 0x02, 0x1d, 0xdc, 0xad, 0x32, 0x8a, 0xd6, + 0x19, 0x45, 0xdf, 0x19, 0x45, 0xef, 0x39, 0xf5, 0xd6, 0x39, 0xf5, 0x3e, 0x73, 0xea, 0x3d, 0x9e, + 0x47, 0xb1, 0x7e, 0x5a, 0x4c, 0x82, 0xa9, 0x9c, 0x33, 0xb7, 0xe8, 0x44, 0xaa, 0x68, 0x53, 0xb3, + 0x97, 0x3e, 0x7b, 0xfd, 0xf3, 0x77, 0xbd, 0x4c, 0x20, 0x9d, 0xd4, 0xcc, 0xeb, 0xcf, 0x7e, 0x02, + 0x00, 0x00, 0xff, 0xff, 0x1b, 0x40, 0xb2, 0x22, 0x0b, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/feerefunder/types/genesis_test.go b/x/feerefunder/types/genesis_test.go index 746a8007b..88857c2bf 100644 --- a/x/feerefunder/types/genesis_test.go +++ b/x/feerefunder/types/genesis_test.go @@ -5,13 +5,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app/params" - "github.com/neutron-org/neutron/app" + "github.com/neutron-org/neutron/v2/app" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) const ( diff --git a/x/feerefunder/types/params.go b/x/feerefunder/types/params.go index 76b6bac55..ae10fc4c5 100644 --- a/x/feerefunder/types/params.go +++ b/x/feerefunder/types/params.go @@ -7,7 +7,7 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" "gopkg.in/yaml.v2" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app/params" ) var _ paramtypes.ParamSet = (*Params)(nil) diff --git a/x/feerefunder/types/params.pb.go b/x/feerefunder/types/params.pb.go index f6272fb1e..02e277521 100644 --- a/x/feerefunder/types/params.pb.go +++ b/x/feerefunder/types/params.pb.go @@ -75,7 +75,7 @@ func init() { func init() { proto.RegisterFile("neutron/feerefunder/params.proto", fileDescriptor_2dae67276ca81c89) } var fileDescriptor_2dae67276ca81c89 = []byte{ - // 204 bytes of a gzipped FileDescriptorProto + // 207 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc8, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x4b, 0x4d, 0x2d, 0x4a, 0x4d, 0x2b, 0xcd, 0x4b, 0x49, 0x2d, 0xd2, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x86, 0xaa, @@ -84,11 +84,11 @@ var fileDescriptor_2dae67276ca81c89 = []byte{ 0x2c, 0x64, 0xce, 0xc5, 0x9e, 0x9b, 0x99, 0x17, 0x9f, 0x96, 0x9a, 0x2a, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0x6d, 0x24, 0xa1, 0x87, 0xc5, 0x16, 0x3d, 0xb7, 0xd4, 0x54, 0x27, 0x96, 0x13, 0xf7, 0xe4, 0x19, 0x82, 0xd8, 0x72, 0x33, 0xf3, 0xdc, 0x52, 0x53, 0xad, 0x58, 0x66, 0x2c, 0x90, 0x67, 0x70, - 0xf2, 0x39, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, - 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xa3, 0xf4, 0xcc, 0x92, + 0xf2, 0x3f, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, + 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xd3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xa8, 0x89, 0xba, 0xf9, 0x45, 0xe9, 0x30, 0xb6, - 0x7e, 0x05, 0x8a, 0xd3, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xae, 0x33, 0x06, 0x04, - 0x00, 0x00, 0xff, 0xff, 0xdb, 0x4c, 0x34, 0x0f, 0x0b, 0x01, 0x00, 0x00, + 0x7e, 0x99, 0x91, 0x7e, 0x05, 0x8a, 0xeb, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x0e, + 0x34, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xbb, 0xd3, 0x62, 0x06, 0x0e, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/feerefunder/types/query.pb.go b/x/feerefunder/types/query.pb.go index d23764d25..334249dd1 100644 --- a/x/feerefunder/types/query.pb.go +++ b/x/feerefunder/types/query.pb.go @@ -228,35 +228,35 @@ func init() { func init() { proto.RegisterFile("neutron/feerefunder/query.proto", fileDescriptor_c20b5686ec46d4e6) } var fileDescriptor_c20b5686ec46d4e6 = []byte{ - // 439 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0xb1, 0x6f, 0xd4, 0x30, - 0x14, 0xc6, 0xcf, 0x47, 0xb9, 0x6b, 0x8d, 0x04, 0x92, 0x5b, 0x89, 0x2a, 0x94, 0xf4, 0x08, 0xa0, - 0x3b, 0x90, 0x1a, 0xab, 0xc7, 0x80, 0x58, 0x3b, 0x20, 0x1d, 0x62, 0x28, 0x19, 0x59, 0x2a, 0x27, - 0x79, 0x71, 0x23, 0xf5, 0xfc, 0x52, 0xdb, 0x41, 0x74, 0x85, 0x95, 0x01, 0x89, 0x95, 0x3f, 0xa8, - 0x63, 0x25, 0x16, 0x26, 0x84, 0xee, 0xf8, 0x43, 0x50, 0x1c, 0xb7, 0xa2, 0x22, 0x6d, 0x37, 0xdb, - 0xef, 0xfb, 0xbe, 0xf7, 0x7b, 0x2f, 0xa1, 0xdb, 0x0a, 0x6a, 0xab, 0x51, 0xf1, 0x02, 0x40, 0x43, - 0x51, 0xab, 0x1c, 0x34, 0x3f, 0xae, 0x41, 0x9f, 0xc4, 0x95, 0x46, 0x8b, 0x6c, 0xdd, 0x0b, 0xe2, - 0x7f, 0x04, 0xc1, 0x86, 0x44, 0x89, 0xae, 0xce, 0x9b, 0x53, 0x2b, 0x0d, 0xb6, 0x24, 0xa2, 0x3c, - 0x02, 0x2e, 0xaa, 0x92, 0x0b, 0xa5, 0xd0, 0x0a, 0x5b, 0xa2, 0x32, 0xbe, 0xfa, 0x3c, 0x43, 0x33, - 0x47, 0xc3, 0x53, 0x61, 0xa0, 0xed, 0xc0, 0x3f, 0xec, 0xa6, 0x60, 0xc5, 0x2e, 0xaf, 0x84, 0x2c, - 0x95, 0x13, 0x7b, 0xed, 0xa8, 0x8b, 0xaa, 0x12, 0x5a, 0xcc, 0xcf, 0xd3, 0x1e, 0x75, 0x29, 0x24, - 0x28, 0x30, 0xa5, 0x97, 0x44, 0x1b, 0x94, 0xbd, 0x6b, 0xda, 0xec, 0x3b, 0x5f, 0x02, 0xc7, 0x35, - 0x18, 0x1b, 0xed, 0xd3, 0xf5, 0x4b, 0xaf, 0xa6, 0x42, 0x65, 0x80, 0xbd, 0xa2, 0x83, 0x36, 0x7f, - 0x93, 0x8c, 0xc8, 0xe4, 0xce, 0xf4, 0x41, 0xdc, 0x31, 0x77, 0xdc, 0x9a, 0xf6, 0x56, 0x4e, 0x7f, - 0x6d, 0xf7, 0x12, 0x6f, 0x88, 0x72, 0x7a, 0xf7, 0x35, 0xc0, 0x4c, 0x15, 0xe8, 0x7b, 0xb0, 0x87, - 0x94, 0x66, 0x87, 0x42, 0x29, 0x38, 0x3a, 0x28, 0x73, 0x17, 0xb8, 0x96, 0xac, 0xf9, 0x97, 0x59, - 0xce, 0xee, 0xd3, 0x61, 0x85, 0xda, 0x36, 0xb5, 0xbe, 0xab, 0x0d, 0x9a, 0xeb, 0x2c, 0x67, 0x01, - 0x5d, 0x35, 0x4d, 0x84, 0xca, 0x60, 0xf3, 0xd6, 0x88, 0x4c, 0x56, 0x92, 0x8b, 0x7b, 0xf4, 0x86, - 0xde, 0xbb, 0xe8, 0xe2, 0x99, 0x5f, 0xd2, 0xd5, 0x02, 0xe0, 0xa0, 0x54, 0x05, 0x7a, 0xea, 0xad, - 0x4e, 0xea, 0x73, 0xdf, 0xb0, 0x68, 0x0f, 0xd3, 0xef, 0x7d, 0x7a, 0xdb, 0x2d, 0x81, 0x7d, 0x21, - 0x74, 0xd0, 0x0e, 0xc5, 0xc6, 0x9d, 0xde, 0xff, 0x37, 0x18, 0x4c, 0x6e, 0x16, 0xb6, 0x80, 0x11, - 0xff, 0xf4, 0xe3, 0xcf, 0xb7, 0xfe, 0x33, 0x36, 0xe6, 0xde, 0xb1, 0x83, 0x5a, 0xf2, 0xab, 0xbf, - 0x2d, 0xfb, 0x4c, 0xe8, 0xd0, 0xd3, 0xb2, 0xc7, 0xd7, 0xce, 0xe2, 0x59, 0x9e, 0x5c, 0x2f, 0xf2, - 0x1c, 0x3b, 0x8e, 0x63, 0xcc, 0x9e, 0xde, 0xc8, 0xd1, 0xec, 0x72, 0xef, 0xed, 0xe9, 0x22, 0x24, - 0x67, 0x8b, 0x90, 0xfc, 0x5e, 0x84, 0xe4, 0xeb, 0x32, 0xec, 0x9d, 0x2d, 0xc3, 0xde, 0xcf, 0x65, - 0xd8, 0x7b, 0x3f, 0x95, 0xa5, 0x3d, 0xac, 0xd3, 0x38, 0xc3, 0x79, 0x67, 0xd4, 0xc7, 0x4b, 0x61, - 0xf6, 0xa4, 0x02, 0x93, 0x0e, 0xdc, 0xdf, 0xf8, 0xe2, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xeb, - 0xca, 0xf3, 0x58, 0x6a, 0x03, 0x00, 0x00, + // 442 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x84, 0x92, 0xc1, 0x6b, 0xd4, 0x40, + 0x14, 0xc6, 0x77, 0xd6, 0xba, 0xdb, 0x8e, 0xa0, 0x30, 0x2d, 0x58, 0xd6, 0x9a, 0xae, 0x51, 0xd9, + 0x55, 0x68, 0x86, 0xae, 0x88, 0x78, 0xed, 0x41, 0x58, 0x2f, 0xd6, 0x1c, 0xbd, 0x94, 0x49, 0xf2, + 0x32, 0x0d, 0x74, 0xe7, 0xa5, 0x33, 0x93, 0x62, 0xaf, 0x7a, 0xf5, 0x20, 0x78, 0xf5, 0x0f, 0xea, + 0xb1, 0xe0, 0xc5, 0x93, 0xc8, 0xae, 0x7f, 0x88, 0x64, 0x32, 0x2d, 0x16, 0xd3, 0xee, 0x6d, 0x66, + 0xde, 0xf7, 0x7d, 0xef, 0xf7, 0x5e, 0x42, 0xb7, 0x15, 0x54, 0x56, 0xa3, 0xe2, 0x39, 0x80, 0x86, + 0xbc, 0x52, 0x19, 0x68, 0x7e, 0x5c, 0x81, 0x3e, 0x8d, 0x4a, 0x8d, 0x16, 0xd9, 0xba, 0x17, 0x44, + 0xff, 0x08, 0x06, 0x1b, 0x12, 0x25, 0xba, 0x3a, 0xaf, 0x4f, 0x8d, 0x74, 0xb0, 0x25, 0x11, 0xe5, + 0x11, 0x70, 0x51, 0x16, 0x5c, 0x28, 0x85, 0x56, 0xd8, 0x02, 0x95, 0xf1, 0xd5, 0xe7, 0x29, 0x9a, + 0x19, 0x1a, 0x9e, 0x08, 0x03, 0x4d, 0x07, 0x7e, 0xb2, 0x9b, 0x80, 0x15, 0xbb, 0xbc, 0x14, 0xb2, + 0x50, 0x4e, 0xec, 0xb5, 0xc3, 0x36, 0xaa, 0x52, 0x68, 0x31, 0xbb, 0x48, 0x7b, 0xd4, 0xa6, 0x90, + 0xa0, 0xc0, 0x14, 0x5e, 0x12, 0x6e, 0x50, 0xf6, 0xbe, 0x6e, 0xb3, 0xef, 0x7c, 0x31, 0x1c, 0x57, + 0x60, 0x6c, 0xb8, 0x4f, 0xd7, 0xaf, 0xbc, 0x9a, 0x12, 0x95, 0x01, 0xf6, 0x9a, 0xf6, 0x9a, 0xfc, + 0x4d, 0x32, 0x24, 0xe3, 0x3b, 0x93, 0x07, 0x51, 0xcb, 0xdc, 0x51, 0x63, 0xda, 0x5b, 0x39, 0xfb, + 0xb5, 0xdd, 0x89, 0xbd, 0x21, 0xcc, 0xe8, 0xdd, 0x37, 0x00, 0x53, 0x95, 0xa3, 0xef, 0xc1, 0x1e, + 0x52, 0x9a, 0x1e, 0x0a, 0xa5, 0xe0, 0xe8, 0xa0, 0xc8, 0x5c, 0xe0, 0x5a, 0xbc, 0xe6, 0x5f, 0xa6, + 0x19, 0xbb, 0x4f, 0xfb, 0x25, 0x6a, 0x5b, 0xd7, 0xba, 0xae, 0xd6, 0xab, 0xaf, 0xd3, 0x8c, 0x0d, + 0xe8, 0xaa, 0xa9, 0x23, 0x54, 0x0a, 0x9b, 0xb7, 0x86, 0x64, 0xbc, 0x12, 0x5f, 0xde, 0xc3, 0xb7, + 0xf4, 0xde, 0x65, 0x17, 0xcf, 0xfc, 0x8a, 0xae, 0xe6, 0x00, 0x07, 0x85, 0xca, 0xd1, 0x53, 0x6f, + 0xb5, 0x52, 0x5f, 0xf8, 0xfa, 0x79, 0x73, 0x98, 0x7c, 0xef, 0xd2, 0xdb, 0x6e, 0x09, 0xec, 0x0b, + 0xa1, 0xbd, 0x66, 0x28, 0x36, 0x6a, 0xf5, 0xfe, 0xbf, 0xc1, 0xc1, 0x78, 0xb9, 0xb0, 0x01, 0x0c, + 0xf9, 0xa7, 0x1f, 0x7f, 0xbe, 0x75, 0x9f, 0xb1, 0x11, 0xf7, 0x8e, 0x1d, 0xd4, 0x92, 0x5f, 0xff, + 0x6d, 0xd9, 0x67, 0x42, 0xfb, 0x9e, 0x96, 0x3d, 0xbe, 0x71, 0x16, 0xcf, 0xf2, 0xe4, 0x66, 0x91, + 0xe7, 0xd8, 0x71, 0x1c, 0x23, 0xf6, 0x74, 0x29, 0x47, 0xbd, 0xcb, 0xbd, 0x77, 0x67, 0xf3, 0x80, + 0x9c, 0xcf, 0x03, 0xf2, 0x7b, 0x1e, 0x90, 0xaf, 0x8b, 0xa0, 0x73, 0xbe, 0x08, 0x3a, 0x3f, 0x17, + 0x41, 0xe7, 0xc3, 0x4b, 0x59, 0xd8, 0xc3, 0x2a, 0x89, 0x52, 0x9c, 0xb5, 0x46, 0x9d, 0x4c, 0xf8, + 0xc7, 0x2b, 0x79, 0xf6, 0xb4, 0x04, 0x93, 0xf4, 0xdc, 0x0f, 0xf9, 0xe2, 0x6f, 0x00, 0x00, 0x00, + 0xff, 0xff, 0xa2, 0x5e, 0xd0, 0x4a, 0x6d, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/feerefunder/types/tx.pb.go b/x/feerefunder/types/tx.pb.go index 4a02f92dc..8611fb689 100644 --- a/x/feerefunder/types/tx.pb.go +++ b/x/feerefunder/types/tx.pb.go @@ -139,7 +139,7 @@ func init() { func init() { proto.RegisterFile("neutron/feerefunder/tx.proto", fileDescriptor_2e613aff856d34ed) } var fileDescriptor_2e613aff856d34ed = []byte{ - // 340 bytes of a gzipped FileDescriptorProto + // 343 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0xc9, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0x4f, 0x4b, 0x4d, 0x2d, 0x4a, 0x4d, 0x2b, 0xcd, 0x4b, 0x49, 0x2d, 0xd2, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x86, 0xca, 0xea, 0x21, 0xc9, 0x4a, @@ -156,12 +156,12 @@ var fileDescriptor_2e613aff856d34ed = []byte{ 0xf4, 0x7c, 0x83, 0x16, 0xc2, 0xbc, 0xae, 0xe7, 0x1b, 0xb4, 0xa4, 0x91, 0x43, 0x05, 0xcd, 0x9d, 0x4a, 0x92, 0x5c, 0xe2, 0x68, 0x42, 0x41, 0xa9, 0xc5, 0x05, 0xf9, 0x79, 0xc5, 0xa9, 0x46, 0x99, 0x5c, 0xcc, 0xbe, 0xc5, 0xe9, 0x42, 0x49, 0x5c, 0x3c, 0x28, 0x3e, 0x53, 0xc1, 0xea, 0x22, 0x34, - 0x43, 0xa4, 0x74, 0x88, 0x51, 0x05, 0xb3, 0xca, 0xc9, 0xe7, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, + 0x43, 0xa4, 0x74, 0x88, 0x51, 0x05, 0xb3, 0xca, 0xc9, 0xff, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, - 0x8f, 0xe5, 0x18, 0xa2, 0x8c, 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, - 0xa1, 0x26, 0xea, 0xe6, 0x17, 0xa5, 0xc3, 0xd8, 0xfa, 0x15, 0xa8, 0xc9, 0xa4, 0xb2, 0x20, 0xb5, - 0x38, 0x89, 0x0d, 0x1c, 0x2d, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xfd, 0xa2, 0x2c, 0x8a, - 0x4a, 0x02, 0x00, 0x00, + 0x8f, 0xe5, 0x18, 0xa2, 0x4c, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, + 0xa1, 0x26, 0xea, 0xe6, 0x17, 0xa5, 0xc3, 0xd8, 0xfa, 0x65, 0x46, 0xfa, 0x15, 0xa8, 0x29, 0xa5, + 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x1c, 0x33, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x58, + 0xaf, 0x33, 0xe9, 0x4d, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/ibc-hooks/client/cli/query.go b/x/ibc-hooks/client/cli/query.go index c695830fc..951bae7bd 100644 --- a/x/ibc-hooks/client/cli/query.go +++ b/x/ibc-hooks/client/cli/query.go @@ -4,11 +4,11 @@ import ( "fmt" "strings" - "github.com/neutron-org/neutron/x/ibc-hooks/utils" + "github.com/neutron-org/neutron/v2/x/ibc-hooks/utils" "github.com/cosmos/cosmos-sdk/client" - "github.com/neutron-org/neutron/x/ibc-hooks/types" + "github.com/neutron-org/neutron/v2/x/ibc-hooks/types" "github.com/cosmos/cosmos-sdk/client/flags" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/ibc-hooks/ibc_middleware_test.go b/x/ibc-hooks/ibc_middleware_test.go index 6a217b1ce..51ef1d17f 100644 --- a/x/ibc-hooks/ibc_middleware_test.go +++ b/x/ibc-hooks/ibc_middleware_test.go @@ -14,10 +14,10 @@ import ( ibctesting "github.com/cosmos/interchain-security/v3/legacy_ibc_testing/testing" "github.com/stretchr/testify/suite" - "github.com/neutron-org/neutron/app/params" - "github.com/neutron-org/neutron/testutil" - "github.com/neutron-org/neutron/x/ibc-hooks/testutils" - "github.com/neutron-org/neutron/x/ibc-hooks/utils" + "github.com/neutron-org/neutron/v2/app/params" + "github.com/neutron-org/neutron/v2/testutil" + "github.com/neutron-org/neutron/v2/x/ibc-hooks/testutils" + "github.com/neutron-org/neutron/v2/x/ibc-hooks/utils" transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" diff --git a/x/ibc-hooks/ics4_middleware.go b/x/ibc-hooks/ics4_middleware.go index f5f01f768..44104ff38 100644 --- a/x/ibc-hooks/ics4_middleware.go +++ b/x/ibc-hooks/ics4_middleware.go @@ -7,7 +7,7 @@ import ( capabilitytypes "github.com/cosmos/cosmos-sdk/x/capability/types" clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" - "github.com/neutron-org/neutron/x/ibc-hooks/types" + "github.com/neutron-org/neutron/v2/x/ibc-hooks/types" // ibc-go channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" diff --git a/x/ibc-hooks/sdkmodule.go b/x/ibc-hooks/sdkmodule.go index 6025c665b..e14a64842 100644 --- a/x/ibc-hooks/sdkmodule.go +++ b/x/ibc-hooks/sdkmodule.go @@ -12,8 +12,8 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/ibc-hooks/client/cli" - "github.com/neutron-org/neutron/x/ibc-hooks/types" + "github.com/neutron-org/neutron/v2/x/ibc-hooks/client/cli" + "github.com/neutron-org/neutron/v2/x/ibc-hooks/types" cdctypes "github.com/cosmos/cosmos-sdk/codec/types" diff --git a/x/ibc-hooks/testutils/testing_hooks.go b/x/ibc-hooks/testutils/testing_hooks.go index 05ff2f3f5..cff848431 100644 --- a/x/ibc-hooks/testutils/testing_hooks.go +++ b/x/ibc-hooks/testutils/testing_hooks.go @@ -8,7 +8,7 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - ibchooks "github.com/neutron-org/neutron/x/ibc-hooks" + ibchooks "github.com/neutron-org/neutron/v2/x/ibc-hooks" ) var ( diff --git a/x/ibc-hooks/utils/utils.go b/x/ibc-hooks/utils/utils.go index fa7a43228..97e5a0bbe 100644 --- a/x/ibc-hooks/utils/utils.go +++ b/x/ibc-hooks/utils/utils.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/address" - "github.com/neutron-org/neutron/x/ibc-hooks/types" + "github.com/neutron-org/neutron/v2/x/ibc-hooks/types" sdk "github.com/cosmos/cosmos-sdk/types" transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" diff --git a/x/ibc-hooks/wasm_hook.go b/x/ibc-hooks/wasm_hook.go index 80bdde2d0..586275a1f 100644 --- a/x/ibc-hooks/wasm_hook.go +++ b/x/ibc-hooks/wasm_hook.go @@ -4,7 +4,7 @@ import ( "encoding/json" "fmt" - "github.com/neutron-org/neutron/x/ibc-hooks/utils" + "github.com/neutron-org/neutron/v2/x/ibc-hooks/utils" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" @@ -14,7 +14,7 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/neutron-org/neutron/x/ibc-hooks/types" + "github.com/neutron-org/neutron/v2/x/ibc-hooks/types" ) type ContractAck struct { diff --git a/x/ibcswap/ibc_middleware.go b/x/ibcswap/ibc_middleware.go index 23c4750e5..e7299ff55 100644 --- a/x/ibcswap/ibc_middleware.go +++ b/x/ibcswap/ibc_middleware.go @@ -16,8 +16,8 @@ import ( porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/neutron-org/neutron/x/ibcswap/keeper" - "github.com/neutron-org/neutron/x/ibcswap/types" + "github.com/neutron-org/neutron/v2/x/ibcswap/keeper" + "github.com/neutron-org/neutron/v2/x/ibcswap/types" ) var _ porttypes.Middleware = &IBCMiddleware{} diff --git a/x/ibcswap/keeper/keeper.go b/x/ibcswap/keeper/keeper.go index bcbeeb639..2961031ff 100644 --- a/x/ibcswap/keeper/keeper.go +++ b/x/ibcswap/keeper/keeper.go @@ -17,8 +17,8 @@ import ( porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - dextypes "github.com/neutron-org/neutron/x/dex/types" - "github.com/neutron-org/neutron/x/ibcswap/types" + dextypes "github.com/neutron-org/neutron/v2/x/dex/types" + "github.com/neutron-org/neutron/v2/x/ibcswap/types" ) // Keeper defines the swap middleware keeper. diff --git a/x/ibcswap/module.go b/x/ibcswap/module.go index 870bcc52d..01c97f9b8 100644 --- a/x/ibcswap/module.go +++ b/x/ibcswap/module.go @@ -14,8 +14,8 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/ibcswap/keeper" - "github.com/neutron-org/neutron/x/ibcswap/types" + "github.com/neutron-org/neutron/v2/x/ibcswap/keeper" + "github.com/neutron-org/neutron/v2/x/ibcswap/types" ) var ( diff --git a/x/ibcswap/types/swap.go b/x/ibcswap/types/swap.go index 54af8d1a3..c011b6a2f 100644 --- a/x/ibcswap/types/swap.go +++ b/x/ibcswap/types/swap.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/iancoleman/orderedmap" - dextypes "github.com/neutron-org/neutron/x/dex/types" + dextypes "github.com/neutron-org/neutron/v2/x/dex/types" ) // PacketMetadata wraps the SwapMetadata. The root key in the incoming ICS20 transfer packet's memo needs to be set to the same diff --git a/x/ibcswap/types/swap_test.go b/x/ibcswap/types/swap_test.go index b341bb394..2c43eb439 100644 --- a/x/ibcswap/types/swap_test.go +++ b/x/ibcswap/types/swap_test.go @@ -9,10 +9,10 @@ import ( "github.com/iancoleman/orderedmap" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/app" - "github.com/neutron-org/neutron/testutil/common/sample" - "github.com/neutron-org/neutron/x/dex/types" - . "github.com/neutron-org/neutron/x/ibcswap/types" + "github.com/neutron-org/neutron/v2/app" + "github.com/neutron-org/neutron/v2/testutil/common/sample" + "github.com/neutron-org/neutron/v2/x/dex/types" + . "github.com/neutron-org/neutron/v2/x/ibcswap/types" ) func init() { diff --git a/x/interchainqueries/client/cli/query.go b/x/interchainqueries/client/cli/query.go index b808e70b2..3a74cc05b 100644 --- a/x/interchainqueries/client/cli/query.go +++ b/x/interchainqueries/client/cli/query.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) const ( diff --git a/x/interchainqueries/client/cli/query_params.go b/x/interchainqueries/client/cli/query_params.go index b0c22791b..de74e3f57 100644 --- a/x/interchainqueries/client/cli/query_params.go +++ b/x/interchainqueries/client/cli/query_params.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) func CmdQueryParams() *cobra.Command { diff --git a/x/interchainqueries/client/cli/tx.go b/x/interchainqueries/client/cli/tx.go index 3d6e87a3d..798a35f8d 100644 --- a/x/interchainqueries/client/cli/tx.go +++ b/x/interchainqueries/client/cli/tx.go @@ -11,7 +11,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) // GetTxCmd returns the transaction commands for this module diff --git a/x/interchainqueries/genesis.go b/x/interchainqueries/genesis.go index 9a89d22c5..57db1f22b 100644 --- a/x/interchainqueries/genesis.go +++ b/x/interchainqueries/genesis.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/interchainqueries/keeper" - "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/x/interchainqueries/keeper" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) // InitGenesis initializes the capability module's state from a provided genesis diff --git a/x/interchainqueries/genesis_test.go b/x/interchainqueries/genesis_test.go index b8f601ddf..e77c1abff 100644 --- a/x/interchainqueries/genesis_test.go +++ b/x/interchainqueries/genesis_test.go @@ -5,10 +5,10 @@ import ( "github.com/stretchr/testify/require" - keepertest "github.com/neutron-org/neutron/testutil/interchainqueries/keeper" - "github.com/neutron-org/neutron/testutil/interchainqueries/nullify" - "github.com/neutron-org/neutron/x/interchainqueries" - "github.com/neutron-org/neutron/x/interchainqueries/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/interchainqueries/keeper" + "github.com/neutron-org/neutron/v2/testutil/interchainqueries/nullify" + "github.com/neutron-org/neutron/v2/x/interchainqueries" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) func TestGenesis(t *testing.T) { diff --git a/x/interchainqueries/keeper/grpc_query.go b/x/interchainqueries/keeper/grpc_query.go index a1f040597..cfa85cf0b 100644 --- a/x/interchainqueries/keeper/grpc_query.go +++ b/x/interchainqueries/keeper/grpc_query.go @@ -14,7 +14,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/interchainqueries/keeper/grpc_query_params.go b/x/interchainqueries/keeper/grpc_query_params.go index c8ada0fdb..ea8b0a620 100644 --- a/x/interchainqueries/keeper/grpc_query_params.go +++ b/x/interchainqueries/keeper/grpc_query_params.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error) { diff --git a/x/interchainqueries/keeper/grpc_query_params_test.go b/x/interchainqueries/keeper/grpc_query_params_test.go index c111568c8..5924d69be 100644 --- a/x/interchainqueries/keeper/grpc_query_params_test.go +++ b/x/interchainqueries/keeper/grpc_query_params_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - testkeeper "github.com/neutron-org/neutron/testutil/interchainqueries/keeper" - "github.com/neutron-org/neutron/x/interchainqueries/types" + testkeeper "github.com/neutron-org/neutron/v2/testutil/interchainqueries/keeper" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) func TestParamsQuery(t *testing.T) { diff --git a/x/interchainqueries/keeper/grpc_query_test.go b/x/interchainqueries/keeper/grpc_query_test.go index e4acf5ca4..f497741a0 100644 --- a/x/interchainqueries/keeper/grpc_query_test.go +++ b/x/interchainqueries/keeper/grpc_query_test.go @@ -13,8 +13,8 @@ import ( ibchost "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/neutron-org/neutron/x/interchainqueries/keeper" - iqtypes "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/x/interchainqueries/keeper" + iqtypes "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) func (suite *KeeperTestSuite) TestRemoteLastHeight() { diff --git a/x/interchainqueries/keeper/keeper.go b/x/interchainqueries/keeper/keeper.go index 872eec560..e3d52f664 100644 --- a/x/interchainqueries/keeper/keeper.go +++ b/x/interchainqueries/keeper/keeper.go @@ -15,7 +15,7 @@ import ( ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper" tendermintLightClientTypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) const ( diff --git a/x/interchainqueries/keeper/keeper_test.go b/x/interchainqueries/keeper/keeper_test.go index 704815240..9d611bbdc 100644 --- a/x/interchainqueries/keeper/keeper_test.go +++ b/x/interchainqueries/keeper/keeper_test.go @@ -11,7 +11,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/stretchr/testify/suite" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app/params" wasmKeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" abci "github.com/cometbft/cometbft/abci/types" @@ -20,9 +20,9 @@ import ( banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/neutron-org/neutron/testutil" - "github.com/neutron-org/neutron/x/interchainqueries/keeper" - iqtypes "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/testutil" + "github.com/neutron-org/neutron/v2/x/interchainqueries/keeper" + iqtypes "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) var reflectContractPath = "../../../wasmbinding/testdata/reflect.wasm" diff --git a/x/interchainqueries/keeper/msg_server.go b/x/interchainqueries/keeper/msg_server.go index ca9c9ce13..12eb0c1ca 100644 --- a/x/interchainqueries/keeper/msg_server.go +++ b/x/interchainqueries/keeper/msg_server.go @@ -18,7 +18,7 @@ import ( ibccommitmenttypes "github.com/cosmos/ibc-go/v7/modules/core/23-commitment/types" ics23 "github.com/cosmos/ics23/go" - "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) type msgServer struct { diff --git a/x/interchainqueries/keeper/params.go b/x/interchainqueries/keeper/params.go index e8953b273..5ce92d256 100644 --- a/x/interchainqueries/keeper/params.go +++ b/x/interchainqueries/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) // GetParams get all parameters as types.Params diff --git a/x/interchainqueries/keeper/params_test.go b/x/interchainqueries/keeper/params_test.go index 1b9f0af99..be5a3c8a2 100644 --- a/x/interchainqueries/keeper/params_test.go +++ b/x/interchainqueries/keeper/params_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - testkeeper "github.com/neutron-org/neutron/testutil/interchainqueries/keeper" - "github.com/neutron-org/neutron/x/interchainqueries/types" + testkeeper "github.com/neutron-org/neutron/v2/testutil/interchainqueries/keeper" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) func TestGetParams(t *testing.T) { diff --git a/x/interchainqueries/keeper/process_block_results.go b/x/interchainqueries/keeper/process_block_results.go index 0692cb829..d6a66fb11 100644 --- a/x/interchainqueries/keeper/process_block_results.go +++ b/x/interchainqueries/keeper/process_block_results.go @@ -17,7 +17,7 @@ import ( "github.com/cosmos/ibc-go/v7/modules/core/exported" tendermintLightClientTypes "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) // deterministicResponseDeliverTx strips non-deterministic fields from diff --git a/x/interchainqueries/keeper/process_block_results_test.go b/x/interchainqueries/keeper/process_block_results_test.go index 1753622c0..7db8059d1 100644 --- a/x/interchainqueries/keeper/process_block_results_test.go +++ b/x/interchainqueries/keeper/process_block_results_test.go @@ -8,8 +8,8 @@ import ( ibckeeper "github.com/cosmos/ibc-go/v7/modules/core/keeper" "github.com/golang/mock/gomock" - icqtestkeeper "github.com/neutron-org/neutron/testutil/interchainqueries/keeper" - mock_types "github.com/neutron-org/neutron/testutil/mocks/interchainqueries/types" + icqtestkeeper "github.com/neutron-org/neutron/v2/testutil/interchainqueries/keeper" + mock_types "github.com/neutron-org/neutron/v2/testutil/mocks/interchainqueries/types" "github.com/CosmWasm/wasmd/x/wasm/keeper" abci "github.com/cometbft/cometbft/abci/types" @@ -28,9 +28,9 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" clientkeeper "github.com/cosmos/ibc-go/v7/modules/core/02-client/keeper" - "github.com/neutron-org/neutron/testutil" - iqkeeper "github.com/neutron-org/neutron/x/interchainqueries/keeper" - iqtypes "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/testutil" + iqkeeper "github.com/neutron-org/neutron/v2/x/interchainqueries/keeper" + iqtypes "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) // CreateTMClientHeader creates a TM header to update the TM client. Args are passed in to allow diff --git a/x/interchainqueries/module.go b/x/interchainqueries/module.go index a32d3be52..71d3951e6 100644 --- a/x/interchainqueries/module.go +++ b/x/interchainqueries/module.go @@ -17,9 +17,9 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/interchainqueries/client/cli" - "github.com/neutron-org/neutron/x/interchainqueries/keeper" - "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/x/interchainqueries/client/cli" + "github.com/neutron-org/neutron/v2/x/interchainqueries/keeper" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) var ( diff --git a/x/interchainqueries/module_simulation.go b/x/interchainqueries/module_simulation.go index 51af522ef..3d83c2ae1 100644 --- a/x/interchainqueries/module_simulation.go +++ b/x/interchainqueries/module_simulation.go @@ -8,9 +8,9 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/neutron-org/neutron/testutil/interchainqueries/sample" - interchainqueriessimulation "github.com/neutron-org/neutron/x/interchainqueries/simulation" - "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/testutil/interchainqueries/sample" + interchainqueriessimulation "github.com/neutron-org/neutron/v2/x/interchainqueries/simulation" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) // avoid unused import issue diff --git a/x/interchainqueries/types/genesis.pb.go b/x/interchainqueries/types/genesis.pb.go index f04698ace..d1bc14930 100644 --- a/x/interchainqueries/types/genesis.pb.go +++ b/x/interchainqueries/types/genesis.pb.go @@ -290,47 +290,47 @@ func init() { } var fileDescriptor_ed312d37df0260a6 = []byte{ - // 636 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x53, 0xcd, 0x6e, 0xd3, 0x40, - 0x10, 0x8e, 0xd3, 0xb4, 0x25, 0x9b, 0xb4, 0xc0, 0xd2, 0x83, 0x1b, 0x09, 0x27, 0xa4, 0x02, 0x22, - 0xa4, 0xda, 0x4d, 0xe1, 0xc0, 0x0d, 0x51, 0x24, 0xfe, 0xca, 0xa1, 0xb8, 0x15, 0x12, 0x5c, 0x2c, - 0xc7, 0x1e, 0x9c, 0x55, 0x13, 0xaf, 0xd9, 0x1d, 0x17, 0xfc, 0x16, 0x3c, 0x47, 0x9f, 0xa4, 0xc7, - 0x1e, 0x39, 0x01, 0x6a, 0x9f, 0x03, 0x09, 0x79, 0xd6, 0xa1, 0x05, 0xda, 0x9e, 0x3c, 0xfe, 0xe6, - 0x9b, 0x6f, 0x77, 0x67, 0xbe, 0x61, 0xf7, 0x53, 0xc8, 0x51, 0xc9, 0xd4, 0x13, 0x29, 0x82, 0x8a, - 0xc6, 0xa1, 0x48, 0x3f, 0xe5, 0xa0, 0x04, 0x68, 0x2f, 0x81, 0x14, 0xb4, 0xd0, 0x6e, 0xa6, 0x24, - 0x4a, 0xbe, 0x5a, 0x11, 0xdd, 0xff, 0x88, 0x9d, 0x95, 0x44, 0x26, 0x92, 0x58, 0x5e, 0x19, 0x99, - 0x82, 0xce, 0xbd, 0xcb, 0x95, 0xb3, 0x50, 0x85, 0xd3, 0x4a, 0xb8, 0xe3, 0x44, 0x52, 0x4f, 0xa5, - 0xf6, 0x46, 0xa1, 0x06, 0xef, 0x60, 0x38, 0x02, 0x0c, 0x87, 0x5e, 0x24, 0x45, 0x5a, 0xe5, 0xbb, - 0x62, 0x14, 0x79, 0x91, 0x54, 0xe0, 0x45, 0x13, 0x01, 0x29, 0x7a, 0x07, 0xc3, 0x2a, 0x32, 0x84, - 0xfe, 0xaf, 0x06, 0xbb, 0xee, 0x43, 0x22, 0x34, 0x82, 0x82, 0xf8, 0x6d, 0x0e, 0xaa, 0xe0, 0xcb, - 0xac, 0x2e, 0x62, 0xdb, 0xea, 0x59, 0x83, 0x86, 0x5f, 0x17, 0x31, 0x5f, 0x61, 0xf3, 0xf2, 0x73, - 0x0a, 0xca, 0xae, 0xf7, 0xac, 0x41, 0xd3, 0x37, 0x3f, 0xfc, 0x36, 0x63, 0xe5, 0x95, 0x8a, 0x00, - 0x8b, 0x0c, 0xec, 0x39, 0x4a, 0x35, 0x09, 0xd9, 0x2b, 0x32, 0xe0, 0x8f, 0x58, 0x63, 0x1f, 0x0a, - 0x6d, 0x37, 0x7a, 0x73, 0x83, 0xd6, 0x66, 0xcf, 0xbd, 0xb4, 0x03, 0xee, 0xf6, 0xbb, 0x6d, 0x28, - 0x7c, 0x62, 0x73, 0x8f, 0xdd, 0x42, 0x15, 0xa6, 0x3a, 0x8c, 0x50, 0xc8, 0x54, 0x07, 0x1f, 0xc5, - 0x04, 0x41, 0xd9, 0xf3, 0xa4, 0xce, 0xcf, 0xa7, 0x9e, 0x53, 0x86, 0xaf, 0xb1, 0xa5, 0x48, 0xa6, - 0x29, 0x10, 0x18, 0x88, 0xd8, 0x5e, 0x20, 0x6a, 0xfb, 0x0c, 0x7c, 0x15, 0x97, 0xa4, 0x3c, 0x8b, - 0x43, 0x84, 0x20, 0x03, 0x25, 0x64, 0x6c, 0x2f, 0xd2, 0xdb, 0xda, 0x06, 0xdc, 0x21, 0x8c, 0xbf, - 0x66, 0xfd, 0x49, 0xa8, 0x31, 0xd0, 0xf9, 0x68, 0x2a, 0x10, 0x21, 0x0e, 0x14, 0xe8, 0x7c, 0x82, - 0xc1, 0x44, 0x46, 0xe1, 0x24, 0x18, 0x83, 0x48, 0xc6, 0x68, 0x5f, 0xa3, 0x4a, 0xa7, 0x64, 0xee, - 0xce, 0x88, 0x3e, 0xf1, 0xde, 0x94, 0xb4, 0x97, 0xc4, 0xe2, 0x63, 0xb6, 0x76, 0xb1, 0x96, 0x82, - 0xa9, 0x44, 0x98, 0x89, 0x35, 0x7b, 0xd6, 0xa0, 0xb5, 0xd9, 0x71, 0xc5, 0x28, 0x72, 0xcb, 0x21, - 0xb9, 0xd5, 0x68, 0x0e, 0x86, 0xae, 0x11, 0xf2, 0xbb, 0x17, 0x1c, 0xe4, 0x93, 0x46, 0x75, 0x12, - 0xb0, 0xc5, 0x18, 0x32, 0xa9, 0x05, 0xda, 0x8c, 0x3a, 0xbd, 0xea, 0x1a, 0x4b, 0xb8, 0xa5, 0x25, - 0xdc, 0xca, 0x12, 0xee, 0x33, 0x29, 0xd2, 0xad, 0x8d, 0xa3, 0xef, 0xdd, 0xda, 0xe1, 0x8f, 0xee, - 0x20, 0x11, 0x38, 0xce, 0x47, 0x6e, 0x24, 0xa7, 0x5e, 0xe5, 0x1f, 0xf3, 0x59, 0xd7, 0xf1, 0xbe, - 0x57, 0x8e, 0x53, 0x53, 0x81, 0xf6, 0x67, 0xda, 0xfc, 0x2e, 0x5b, 0x36, 0x6f, 0x09, 0x50, 0x4c, - 0x41, 0xe6, 0x68, 0xb7, 0xa8, 0x11, 0x4b, 0x06, 0xdd, 0x33, 0x20, 0xdf, 0x60, 0x2b, 0xea, 0x8f, - 0x99, 0x82, 0x10, 0x67, 0x0f, 0x6d, 0x13, 0x99, 0x9f, 0xe5, 0x9e, 0xa2, 0xb9, 0x7f, 0x7f, 0x9d, - 0xcd, 0xd3, 0xfc, 0x39, 0x67, 0x8d, 0x2c, 0xc4, 0x31, 0xd9, 0xae, 0xe9, 0x53, 0xcc, 0x6f, 0xb0, - 0xb9, 0x7d, 0x28, 0xc8, 0x76, 0x6d, 0xbf, 0x0c, 0xfb, 0x87, 0x16, 0x6b, 0xbf, 0x30, 0xab, 0xb5, - 0x8b, 0x21, 0x02, 0x7f, 0xc2, 0x16, 0xcc, 0x42, 0x50, 0x61, 0x6b, 0xf3, 0xce, 0x15, 0x46, 0xdb, - 0x21, 0xe2, 0x56, 0xa3, 0x6c, 0x83, 0x5f, 0x95, 0xf1, 0xf7, 0xec, 0xdc, 0xb5, 0x82, 0x8a, 0x6a, - 0xd7, 0xa9, 0x97, 0x0f, 0xae, 0x10, 0xfb, 0x67, 0x69, 0xfc, 0x9b, 0xea, 0x2f, 0x40, 0x80, 0xde, - 0xf2, 0x8f, 0x4e, 0x1c, 0xeb, 0xf8, 0xc4, 0xb1, 0x7e, 0x9e, 0x38, 0xd6, 0xd7, 0x53, 0xa7, 0x76, - 0x7c, 0xea, 0xd4, 0xbe, 0x9d, 0x3a, 0xb5, 0x0f, 0x8f, 0xcf, 0x4d, 0xa0, 0x3a, 0x62, 0x5d, 0xaa, - 0x64, 0x16, 0x7b, 0x5f, 0x2e, 0xd8, 0x7b, 0x9a, 0xcb, 0x68, 0x81, 0xd6, 0xf6, 0xe1, 0xef, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x56, 0x73, 0xa5, 0xa5, 0x7b, 0x04, 0x00, 0x00, + // 640 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x53, 0xcf, 0x6e, 0xd3, 0x4e, + 0x10, 0x8e, 0xd3, 0xb4, 0xfd, 0x65, 0x93, 0xf6, 0x07, 0x4b, 0x0f, 0x6e, 0x24, 0x9c, 0x90, 0x0a, + 0x88, 0x90, 0xea, 0x6d, 0x02, 0x37, 0x0e, 0x88, 0x22, 0xf1, 0xaf, 0x1c, 0x8a, 0x5b, 0x90, 0xe0, + 0x62, 0xf9, 0xcf, 0xe0, 0xac, 0x9a, 0x78, 0xcd, 0xee, 0x3a, 0xe0, 0xb7, 0xe0, 0x39, 0xfa, 0x24, + 0x3d, 0xf6, 0xc8, 0x09, 0x50, 0xfb, 0x1c, 0x48, 0xc8, 0xb3, 0x0e, 0x2d, 0xd0, 0xf6, 0xe4, 0xf1, + 0x37, 0xdf, 0x7c, 0xbb, 0x3b, 0xf3, 0x0d, 0xb9, 0x9b, 0x42, 0xae, 0xa5, 0x48, 0x19, 0x4f, 0x35, + 0xc8, 0x68, 0x1c, 0xf0, 0xf4, 0x63, 0x0e, 0x92, 0x83, 0x62, 0x09, 0xa4, 0xa0, 0xb8, 0x72, 0x33, + 0x29, 0xb4, 0xa0, 0xeb, 0x15, 0xd1, 0xfd, 0x87, 0xd8, 0x59, 0x4b, 0x44, 0x22, 0x90, 0xc5, 0xca, + 0xc8, 0x14, 0x74, 0xee, 0x5c, 0xae, 0x9c, 0x05, 0x32, 0x98, 0x56, 0xc2, 0x1d, 0x27, 0x12, 0x6a, + 0x2a, 0x14, 0x0b, 0x03, 0x05, 0x6c, 0x36, 0x0c, 0x41, 0x07, 0x43, 0x16, 0x09, 0x9e, 0x56, 0xf9, + 0x2e, 0x0f, 0x23, 0x16, 0x09, 0x09, 0x2c, 0x9a, 0x70, 0x48, 0x35, 0x9b, 0x0d, 0xab, 0xc8, 0x10, + 0xfa, 0x3f, 0x1b, 0xe4, 0x7f, 0x0f, 0x12, 0xae, 0x34, 0x48, 0x88, 0x5f, 0xe7, 0x20, 0x0b, 0xba, + 0x4a, 0xea, 0x3c, 0xb6, 0xad, 0x9e, 0x35, 0x68, 0x78, 0x75, 0x1e, 0xd3, 0x35, 0xb2, 0x28, 0x3e, + 0xa5, 0x20, 0xed, 0x7a, 0xcf, 0x1a, 0x34, 0x3d, 0xf3, 0x43, 0x6f, 0x12, 0x52, 0x5e, 0xa9, 0xf0, + 0x75, 0x91, 0x81, 0xbd, 0x80, 0xa9, 0x26, 0x22, 0xfb, 0x45, 0x06, 0xf4, 0x01, 0x69, 0x1c, 0x40, + 0xa1, 0xec, 0x46, 0x6f, 0x61, 0xd0, 0x1a, 0xf5, 0xdc, 0x4b, 0x3b, 0xe0, 0xee, 0xbc, 0xdd, 0x81, + 0xc2, 0x43, 0x36, 0x65, 0xe4, 0x86, 0x96, 0x41, 0xaa, 0x82, 0x48, 0x73, 0x91, 0x2a, 0xff, 0x03, + 0x9f, 0x68, 0x90, 0xf6, 0x22, 0xaa, 0xd3, 0xf3, 0xa9, 0xa7, 0x98, 0xa1, 0x1b, 0x64, 0x25, 0x12, + 0x69, 0x0a, 0x08, 0xfa, 0x3c, 0xb6, 0x97, 0x90, 0xda, 0x3e, 0x03, 0x5f, 0xc4, 0x25, 0x29, 0xcf, + 0xe2, 0x40, 0x83, 0x9f, 0x81, 0xe4, 0x22, 0xb6, 0x97, 0xf1, 0x6d, 0x6d, 0x03, 0xee, 0x22, 0x46, + 0x5f, 0x92, 0xfe, 0x24, 0x50, 0xda, 0x57, 0x79, 0x38, 0xe5, 0x5a, 0x43, 0xec, 0x4b, 0x50, 0xf9, + 0x44, 0xfb, 0x13, 0x11, 0x05, 0x13, 0x7f, 0x0c, 0x3c, 0x19, 0x6b, 0xfb, 0x3f, 0xac, 0x74, 0x4a, + 0xe6, 0xde, 0x9c, 0xe8, 0x21, 0xef, 0x55, 0x49, 0x7b, 0x8e, 0x2c, 0x3a, 0x26, 0x1b, 0x17, 0x6b, + 0x49, 0x98, 0x0a, 0x0d, 0x73, 0xb1, 0x66, 0xcf, 0x1a, 0xb4, 0x46, 0x1d, 0x97, 0x87, 0x91, 0x5b, + 0x0e, 0xc9, 0xad, 0x46, 0x33, 0x1b, 0xba, 0x46, 0xc8, 0xeb, 0x5e, 0x70, 0x90, 0x87, 0x1a, 0xd5, + 0x49, 0x40, 0x96, 0x63, 0xc8, 0x84, 0xe2, 0xda, 0x26, 0xd8, 0xe9, 0x75, 0xd7, 0x58, 0xc2, 0x2d, + 0x2d, 0xe1, 0x56, 0x96, 0x70, 0x9f, 0x08, 0x9e, 0x6e, 0x6f, 0x1d, 0x7d, 0xeb, 0xd6, 0x0e, 0xbf, + 0x77, 0x07, 0x09, 0xd7, 0xe3, 0x3c, 0x74, 0x23, 0x31, 0x65, 0x95, 0x7f, 0xcc, 0x67, 0x53, 0xc5, + 0x07, 0xac, 0x1c, 0xa7, 0xc2, 0x02, 0xe5, 0xcd, 0xb5, 0xe9, 0x6d, 0xb2, 0x6a, 0xde, 0xe2, 0x6b, + 0x3e, 0x05, 0x91, 0x6b, 0xbb, 0x85, 0x8d, 0x58, 0x31, 0xe8, 0xbe, 0x01, 0xe9, 0x16, 0x59, 0x93, + 0xbf, 0xcd, 0xe4, 0x07, 0x7a, 0xfe, 0xd0, 0x36, 0x92, 0xe9, 0x59, 0xee, 0xb1, 0x36, 0xf7, 0xef, + 0x6f, 0x92, 0x45, 0x9c, 0x3f, 0xa5, 0xa4, 0x91, 0x05, 0x7a, 0x8c, 0xb6, 0x6b, 0x7a, 0x18, 0xd3, + 0x6b, 0x64, 0xe1, 0x00, 0x0a, 0xb4, 0x5d, 0xdb, 0x2b, 0xc3, 0xfe, 0xa1, 0x45, 0xda, 0xcf, 0xcc, + 0x6a, 0xed, 0xe9, 0x40, 0x03, 0x7d, 0x44, 0x96, 0xcc, 0x42, 0x60, 0x61, 0x6b, 0x74, 0xeb, 0x0a, + 0xa3, 0xed, 0x22, 0x71, 0xbb, 0x51, 0xb6, 0xc1, 0xab, 0xca, 0xe8, 0x3b, 0x72, 0xee, 0x5a, 0x7e, + 0x45, 0xb5, 0xeb, 0xd8, 0xcb, 0x7b, 0x57, 0x88, 0xfd, 0xb5, 0x34, 0xde, 0x75, 0xf9, 0x07, 0xc0, + 0x41, 0x6d, 0xbf, 0x39, 0x3a, 0x71, 0xac, 0xe3, 0x13, 0xc7, 0xfa, 0x71, 0xe2, 0x58, 0x5f, 0x4e, + 0x9d, 0xda, 0xf1, 0xa9, 0x53, 0xfb, 0x7a, 0xea, 0xd4, 0xde, 0x3f, 0x3c, 0x37, 0x81, 0xea, 0x88, + 0x4d, 0x21, 0x93, 0x79, 0xcc, 0x66, 0x23, 0xf6, 0xf9, 0x82, 0xd5, 0xc7, 0xd1, 0x84, 0x4b, 0xb8, + 0xb9, 0xf7, 0x7f, 0x05, 0x00, 0x00, 0xff, 0xff, 0x97, 0x4e, 0x44, 0x4e, 0x7e, 0x04, 0x00, 0x00, } func (m *RegisteredQuery) Marshal() (dAtA []byte, err error) { diff --git a/x/interchainqueries/types/genesis_test.go b/x/interchainqueries/types/genesis_test.go index e008eb811..da404a213 100644 --- a/x/interchainqueries/types/genesis_test.go +++ b/x/interchainqueries/types/genesis_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/interchainqueries/types" + "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) func TestGenesisState_Validate(t *testing.T) { diff --git a/x/interchainqueries/types/params.go b/x/interchainqueries/types/params.go index 3842f7b30..613ef38cd 100644 --- a/x/interchainqueries/types/params.go +++ b/x/interchainqueries/types/params.go @@ -7,7 +7,7 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" "gopkg.in/yaml.v2" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app/params" ) var _ paramtypes.ParamSet = (*Params)(nil) diff --git a/x/interchainqueries/types/params.pb.go b/x/interchainqueries/types/params.pb.go index ae821b3fe..f282cd725 100644 --- a/x/interchainqueries/types/params.pb.go +++ b/x/interchainqueries/types/params.pb.go @@ -101,28 +101,28 @@ func init() { } var fileDescriptor_752a5f3346da64b1 = []byte{ - // 328 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x91, 0xb1, 0x4f, 0xfa, 0x40, - 0x14, 0xc7, 0xdb, 0x1f, 0x84, 0xa1, 0x3f, 0x5d, 0x2a, 0x31, 0xc0, 0x70, 0x10, 0x07, 0xc3, 0xc2, - 0x1d, 0xc8, 0x62, 0x1c, 0xd1, 0xd1, 0x41, 0xab, 0x93, 0x4b, 0xd3, 0x96, 0x4b, 0xb9, 0xc8, 0xf5, - 0xd5, 0xbb, 0x57, 0x02, 0xff, 0x85, 0xa3, 0xa3, 0xb3, 0x7f, 0x09, 0x23, 0xa3, 0x93, 0x1a, 0x18, - 0xfc, 0x37, 0x4c, 0xef, 0x6a, 0x62, 0xa2, 0x53, 0x5f, 0xf2, 0x79, 0xdf, 0x7e, 0xbe, 0x79, 0xe7, - 0x1d, 0x67, 0xbc, 0x40, 0x05, 0x19, 0x13, 0x19, 0x72, 0x95, 0xcc, 0x22, 0x91, 0x3d, 0x14, 0x5c, - 0x09, 0xae, 0x59, 0x1e, 0xa9, 0x48, 0x6a, 0x9a, 0x2b, 0x40, 0xf0, 0xdb, 0xd5, 0x1e, 0xfd, 0xb5, - 0xd7, 0x69, 0xa6, 0x90, 0x82, 0xd9, 0x62, 0xe5, 0x64, 0x03, 0x1d, 0x92, 0x80, 0x96, 0xa0, 0x59, - 0x1c, 0x69, 0xce, 0x16, 0xa3, 0x98, 0x63, 0x34, 0x62, 0x09, 0x88, 0xcc, 0xf2, 0xa3, 0x4f, 0xd7, - 0x6b, 0x5c, 0x19, 0x83, 0x3f, 0xf4, 0x9a, 0xe5, 0xbf, 0x56, 0xa1, 0x2e, 0x62, 0x29, 0x30, 0x44, - 0x21, 0x39, 0x14, 0xd8, 0x72, 0x7b, 0x6e, 0xbf, 0x1e, 0xf8, 0x86, 0xdd, 0x18, 0x74, 0x6b, 0x89, - 0x9f, 0x7b, 0xfb, 0x36, 0x31, 0xe5, 0x39, 0x68, 0x81, 0xad, 0x7f, 0xbd, 0x5a, 0xff, 0xff, 0x49, - 0x9b, 0x5a, 0x29, 0x2d, 0xa5, 0xb4, 0x92, 0xd2, 0x73, 0x10, 0xd9, 0x64, 0xb8, 0x7e, 0xeb, 0x3a, - 0x2f, 0xef, 0xdd, 0x7e, 0x2a, 0x70, 0x56, 0xc4, 0x34, 0x01, 0xc9, 0xaa, 0x86, 0xf6, 0x33, 0xd0, - 0xd3, 0x7b, 0x86, 0xab, 0x9c, 0x6b, 0x13, 0xd0, 0xc1, 0x9e, 0x31, 0x5c, 0x58, 0x81, 0x3f, 0xf6, - 0x0e, 0x71, 0x19, 0x5a, 0xa9, 0xe2, 0x12, 0x16, 0xd1, 0x3c, 0x9c, 0x0b, 0x29, 0xb0, 0x55, 0x33, - 0x2d, 0x0f, 0x70, 0x79, 0x5d, 0xc2, 0xc0, 0xb2, 0xcb, 0x12, 0x9d, 0xd5, 0x9f, 0x9e, 0xbb, 0xce, - 0x24, 0x58, 0x6f, 0x89, 0xbb, 0xd9, 0x12, 0xf7, 0x63, 0x4b, 0xdc, 0xc7, 0x1d, 0x71, 0x36, 0x3b, - 0xe2, 0xbc, 0xee, 0x88, 0x73, 0x77, 0xfa, 0xa3, 0x4c, 0x75, 0xdf, 0x01, 0xa8, 0xf4, 0x7b, 0x66, - 0xcb, 0x3f, 0x5e, 0xc5, 0x54, 0x8c, 0x1b, 0xe6, 0x88, 0xe3, 0xaf, 0x00, 0x00, 0x00, 0xff, 0xff, - 0xeb, 0xcd, 0x47, 0x31, 0xbf, 0x01, 0x00, 0x00, + // 331 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x91, 0xbd, 0x4e, 0xf3, 0x30, + 0x14, 0x86, 0x93, 0xaf, 0x55, 0x87, 0x7c, 0xb0, 0x84, 0x0a, 0xb5, 0x1d, 0xdc, 0x8a, 0x01, 0x75, + 0xa9, 0xdd, 0x9f, 0x0d, 0xb6, 0xc2, 0xc8, 0x00, 0x05, 0x16, 0x96, 0x28, 0x49, 0xad, 0xd4, 0xa2, + 0xce, 0x09, 0xf6, 0x49, 0xd5, 0xde, 0x05, 0x23, 0x23, 0x33, 0x57, 0xd2, 0xb1, 0x23, 0x13, 0xa0, + 0x76, 0xe0, 0x36, 0x50, 0xec, 0x20, 0x21, 0xc1, 0x94, 0x23, 0x3d, 0xe7, 0xcd, 0xf3, 0xea, 0xd8, + 0x3b, 0x4e, 0x79, 0x8e, 0x0a, 0x52, 0x26, 0x52, 0xe4, 0x2a, 0x9e, 0x85, 0x22, 0x7d, 0xc8, 0xb9, + 0x12, 0x5c, 0xb3, 0x2c, 0x54, 0xa1, 0xd4, 0x34, 0x53, 0x80, 0xe0, 0x37, 0xcb, 0x3d, 0xfa, 0x6b, + 0xaf, 0x55, 0x4f, 0x20, 0x01, 0xb3, 0xc5, 0x8a, 0xc9, 0x06, 0x5a, 0x24, 0x06, 0x2d, 0x41, 0xb3, + 0x28, 0xd4, 0x9c, 0x2d, 0x06, 0x11, 0xc7, 0x70, 0xc0, 0x62, 0x10, 0xa9, 0xe5, 0x47, 0x9f, 0xae, + 0x57, 0xbb, 0x34, 0x06, 0xbf, 0xef, 0xd5, 0x8b, 0x7f, 0xad, 0x02, 0x9d, 0x47, 0x52, 0x60, 0x80, + 0x42, 0x72, 0xc8, 0xb1, 0xe1, 0x76, 0xdc, 0x6e, 0x75, 0xe2, 0x1b, 0x76, 0x6d, 0xd0, 0x8d, 0x25, + 0x7e, 0xe6, 0xed, 0xdb, 0xc4, 0x94, 0x67, 0xa0, 0x05, 0x36, 0xfe, 0x75, 0x2a, 0xdd, 0xff, 0xc3, + 0x26, 0xb5, 0x52, 0x5a, 0x48, 0x69, 0x29, 0xa5, 0x67, 0x20, 0xd2, 0x71, 0x7f, 0xfd, 0xd6, 0x76, + 0x5e, 0xde, 0xdb, 0xdd, 0x44, 0xe0, 0x2c, 0x8f, 0x68, 0x0c, 0x92, 0x95, 0x0d, 0xed, 0xa7, 0xa7, + 0xa7, 0xf7, 0x0c, 0x57, 0x19, 0xd7, 0x26, 0xa0, 0x27, 0x7b, 0xc6, 0x70, 0x6e, 0x05, 0xfe, 0xc8, + 0x3b, 0xc4, 0x65, 0x60, 0xa5, 0x8a, 0x4b, 0x58, 0x84, 0xf3, 0x60, 0x2e, 0xa4, 0xc0, 0x46, 0xc5, + 0xb4, 0x3c, 0xc0, 0xe5, 0x55, 0x01, 0x27, 0x96, 0x5d, 0x14, 0xe8, 0xa4, 0xfa, 0xf4, 0xdc, 0x76, + 0xc6, 0xb7, 0xeb, 0x2d, 0x71, 0x37, 0x5b, 0xe2, 0x7e, 0x6c, 0x89, 0xfb, 0xb8, 0x23, 0xce, 0x66, + 0x47, 0x9c, 0xd7, 0x1d, 0x71, 0xee, 0x4e, 0x7f, 0x94, 0x29, 0xef, 0xdb, 0x03, 0x95, 0x7c, 0xcf, + 0x6c, 0x31, 0x64, 0xcb, 0x3f, 0x1e, 0xc6, 0xb4, 0x8c, 0x6a, 0xe6, 0x8e, 0xa3, 0xaf, 0x00, 0x00, + 0x00, 0xff, 0xff, 0x22, 0x23, 0x80, 0xb7, 0xc2, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/interchainqueries/types/query.pb.go b/x/interchainqueries/types/query.pb.go index 2135d6341..1e29ca90f 100644 --- a/x/interchainqueries/types/query.pb.go +++ b/x/interchainqueries/types/query.pb.go @@ -570,54 +570,55 @@ func init() { } var fileDescriptor_2254be23ba3ff3b4 = []byte{ - // 752 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x95, 0xcf, 0x4f, 0x13, 0x41, - 0x14, 0xc7, 0x3b, 0xa5, 0x16, 0x79, 0x45, 0x81, 0x11, 0x0d, 0x54, 0xac, 0xb0, 0x44, 0x28, 0x98, - 0xee, 0xf2, 0x23, 0x4a, 0x4d, 0x10, 0x13, 0x0e, 0x2a, 0x89, 0x07, 0xd8, 0xa8, 0x07, 0x2f, 0xcd, - 0xb4, 0x9d, 0x6c, 0x37, 0xa1, 0x33, 0x65, 0x77, 0xaa, 0xec, 0xd5, 0x9b, 0x37, 0xa3, 0xff, 0x82, - 0x7f, 0x80, 0x37, 0x0f, 0x1e, 0xbc, 0x12, 0x4f, 0x24, 0x5e, 0x3c, 0x19, 0x03, 0xfe, 0x21, 0x66, - 0x67, 0xa6, 0xbf, 0x7f, 0x51, 0x4e, 0xed, 0xee, 0xbe, 0xef, 0xbc, 0xcf, 0xfb, 0xbe, 0xf7, 0x76, - 0xe1, 0x1e, 0xa3, 0x55, 0xe1, 0x71, 0x66, 0xb9, 0x4c, 0x50, 0xaf, 0x50, 0x22, 0x2e, 0x3b, 0xaa, - 0x52, 0xcf, 0xa5, 0xbe, 0x15, 0xfe, 0x06, 0x66, 0xc5, 0xe3, 0x82, 0xe3, 0x59, 0x1d, 0x66, 0x76, - 0x84, 0x25, 0xa7, 0x1d, 0xee, 0x70, 0x19, 0x65, 0x85, 0xff, 0x94, 0x20, 0x39, 0xe7, 0x70, 0xee, - 0x1c, 0x52, 0x8b, 0x54, 0x5c, 0x8b, 0x30, 0xc6, 0x05, 0x11, 0x2e, 0x67, 0xbe, 0x7e, 0xba, 0x5a, - 0xe0, 0x7e, 0x99, 0xfb, 0x56, 0x9e, 0xf8, 0x54, 0xe5, 0xb1, 0xde, 0xae, 0xe7, 0xa9, 0x20, 0xeb, - 0x56, 0x85, 0x38, 0x2e, 0x93, 0xc1, 0x3a, 0x76, 0xa9, 0x37, 0x61, 0x85, 0x78, 0xa4, 0x5c, 0x3b, - 0x73, 0xb9, 0x77, 0x9c, 0x43, 0x19, 0xf5, 0xdd, 0x5a, 0xa0, 0xd1, 0x3b, 0x50, 0x1c, 0xab, 0x18, - 0x63, 0x1a, 0xf0, 0x41, 0x88, 0xb5, 0x2f, 0x33, 0xd8, 0xf4, 0xa8, 0x4a, 0x7d, 0x61, 0xbc, 0x86, - 0x1b, 0x2d, 0x77, 0xfd, 0x0a, 0x67, 0x3e, 0xc5, 0x4f, 0x20, 0xae, 0x48, 0x66, 0xd0, 0x3c, 0x4a, - 0x27, 0x36, 0x16, 0xcc, 0x9e, 0x6e, 0x99, 0x4a, 0xba, 0x1b, 0x3b, 0xf9, 0x73, 0x37, 0x62, 0x6b, - 0x99, 0xf1, 0x05, 0xc1, 0x1d, 0x79, 0xb0, 0x4d, 0x1d, 0xd7, 0x17, 0xd4, 0xa3, 0xc5, 0x03, 0x15, - 0xaf, 0x33, 0xe3, 0x5b, 0x10, 0xe7, 0xef, 0x18, 0xf5, 0xc2, 0x14, 0x23, 0xe9, 0x31, 0x5b, 0x5f, - 0xe1, 0x45, 0xb8, 0x56, 0xe0, 0x8c, 0xd1, 0x42, 0x68, 0x58, 0xce, 0x2d, 0xce, 0x44, 0xe7, 0x51, - 0x7a, 0xcc, 0x1e, 0x6f, 0xdc, 0xdc, 0x2b, 0xe2, 0xa7, 0x00, 0x0d, 0x57, 0x67, 0x46, 0x24, 0xe3, - 0x92, 0xa9, 0x5a, 0x60, 0x86, 0x2d, 0x30, 0x55, 0xab, 0x75, 0x0b, 0xcc, 0x7d, 0xe2, 0x50, 0x9d, - 0xd8, 0x6e, 0x52, 0x1a, 0x3f, 0x11, 0xa4, 0x7a, 0x61, 0x6a, 0x2b, 0x72, 0x80, 0xbd, 0xfa, 0xc3, - 0x9c, 0x2e, 0x5a, 0x32, 0x27, 0x36, 0x56, 0xfb, 0xd8, 0xd2, 0x7a, 0x62, 0xa0, 0xfd, 0x99, 0xf2, - 0xda, 0x13, 0xe1, 0x67, 0x2d, 0xb5, 0x44, 0x65, 0x2d, 0xcb, 0x03, 0x6b, 0x51, 0x74, 0x2d, 0xc5, - 0x64, 0xe1, 0x76, 0x97, 0x5a, 0x82, 0x9a, 0xe1, 0xb3, 0x70, 0x55, 0x1e, 0x14, 0x7a, 0x1a, 0x76, - 0x35, 0x66, 0x8f, 0xca, 0xeb, 0xbd, 0xa2, 0x51, 0x85, 0xb9, 0xee, 0x4a, 0xed, 0xc1, 0x2b, 0x98, - 0x6c, 0xf3, 0x20, 0xd0, 0x83, 0x31, 0x84, 0x03, 0xf6, 0x44, 0x6b, 0xed, 0x81, 0xb1, 0x03, 0x0b, - 0x3d, 0xd2, 0x56, 0x0f, 0xc5, 0x05, 0xb0, 0x8b, 0x60, 0xf4, 0xd3, 0x6b, 0xf8, 0x1d, 0x88, 0x7b, - 0xf2, 0x8e, 0x46, 0x5e, 0xea, 0x83, 0xdc, 0xac, 0xd7, 0x2a, 0x63, 0x0f, 0x12, 0x2f, 0x3d, 0xc2, - 0x7c, 0x22, 0x87, 0x0f, 0x5f, 0x87, 0x68, 0x9d, 0x24, 0xea, 0x16, 0xc3, 0x39, 0x2e, 0x51, 0xd7, - 0x29, 0x09, 0xd9, 0xba, 0x98, 0xad, 0xaf, 0x30, 0x86, 0x58, 0x91, 0x08, 0x22, 0x87, 0x73, 0xdc, - 0x96, 0xff, 0x8d, 0x6d, 0xb8, 0x29, 0x33, 0xbc, 0x20, 0xbe, 0xb0, 0x69, 0x99, 0x0b, 0xfa, 0x5c, - 0x05, 0x77, 0x0c, 0x3d, 0xea, 0x1c, 0x7a, 0x63, 0x4b, 0xaf, 0x54, 0xbb, 0xba, 0x5e, 0x69, 0x03, - 0x05, 0x35, 0xa3, 0x6c, 0x7c, 0x18, 0x85, 0x2b, 0x52, 0x89, 0x3f, 0x21, 0x88, 0xab, 0x7d, 0xc5, - 0x99, 0x41, 0x36, 0xb4, 0xbc, 0x28, 0x92, 0xe6, 0x45, 0xc3, 0x15, 0x8b, 0xb1, 0xf2, 0xfe, 0xd7, - 0xbf, 0xcf, 0xd1, 0x45, 0xbc, 0x60, 0x0d, 0x7a, 0xd9, 0xe1, 0x1f, 0x08, 0xa6, 0x3a, 0xf6, 0x0f, - 0x67, 0x07, 0xb7, 0xa9, 0xfb, 0x9b, 0x25, 0xf9, 0xe8, 0x12, 0x4a, 0x4d, 0xfd, 0x40, 0x52, 0x5b, - 0x38, 0xd3, 0x87, 0xba, 0xf3, 0x6d, 0x80, 0xbf, 0x21, 0x98, 0x68, 0x1b, 0x42, 0xfc, 0x70, 0x38, - 0x8a, 0xda, 0x9a, 0x26, 0xb7, 0x86, 0xd6, 0x69, 0xf6, 0x4d, 0xc9, 0x9e, 0xc1, 0xf7, 0x2f, 0xce, - 0x1e, 0xe0, 0xef, 0x08, 0x12, 0x4d, 0x43, 0x8f, 0xb7, 0x87, 0xcf, 0xde, 0xd8, 0xd5, 0xe4, 0xe3, - 0x4b, 0xaa, 0x75, 0x05, 0x96, 0xac, 0x60, 0x05, 0x2f, 0x5b, 0x03, 0x3e, 0xe1, 0x39, 0xb5, 0x9a, - 0xf8, 0x2b, 0x82, 0xc9, 0x8e, 0x5d, 0x5a, 0x1b, 0x04, 0xd1, 0xae, 0x48, 0x66, 0x87, 0x55, 0xd4, - 0x89, 0xd7, 0x24, 0xf1, 0x2a, 0x4e, 0xf7, 0xf5, 0x3c, 0x14, 0xe6, 0xd4, 0x2e, 0xee, 0xda, 0x27, - 0x67, 0x29, 0x74, 0x7a, 0x96, 0x42, 0x7f, 0xcf, 0x52, 0xe8, 0xe3, 0x79, 0x2a, 0x72, 0x7a, 0x9e, - 0x8a, 0xfc, 0x3e, 0x4f, 0x45, 0xde, 0x64, 0x1d, 0x57, 0x94, 0xaa, 0x79, 0xb3, 0xc0, 0xcb, 0xb5, - 0xd3, 0x32, 0xdc, 0x73, 0xea, 0x27, 0x1f, 0x77, 0xfb, 0xba, 0x07, 0x15, 0xea, 0xe7, 0xe3, 0xf2, - 0x0b, 0xbf, 0xf9, 0x3f, 0x00, 0x00, 0xff, 0xff, 0x14, 0x88, 0x83, 0x3c, 0xfa, 0x08, 0x00, 0x00, + // 759 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x95, 0xcf, 0x4f, 0x13, 0x5b, + 0x14, 0xc7, 0x7b, 0x4b, 0x5f, 0x79, 0x9c, 0xf2, 0x1e, 0x70, 0x1f, 0xcf, 0x40, 0xc5, 0x0a, 0x43, + 0x84, 0x82, 0xe9, 0x0c, 0x94, 0x28, 0x18, 0x11, 0x13, 0x16, 0x2a, 0x89, 0x0b, 0x98, 0x88, 0x0b, + 0x37, 0xcd, 0x6d, 0x7b, 0x33, 0x9d, 0x84, 0xde, 0x5b, 0x66, 0x6e, 0x91, 0xd9, 0xba, 0x73, 0x67, + 0xf4, 0x5f, 0xf0, 0x0f, 0x70, 0xe7, 0xc2, 0x85, 0x5b, 0xe2, 0x8a, 0xc4, 0x8d, 0x2b, 0x63, 0xc0, + 0x3f, 0xc4, 0xcc, 0xbd, 0xb7, 0xbf, 0x7f, 0x51, 0x56, 0xed, 0xcc, 0x9c, 0xef, 0x3d, 0x9f, 0xf3, + 0x3d, 0xe7, 0xcc, 0xc0, 0x1d, 0x46, 0xab, 0xc2, 0xe3, 0xcc, 0x72, 0x99, 0xa0, 0x5e, 0xa1, 0x44, + 0x5c, 0x76, 0x5c, 0xa5, 0x9e, 0x4b, 0x7d, 0x2b, 0xfc, 0x0d, 0xcc, 0x8a, 0xc7, 0x05, 0xc7, 0xb3, + 0x3a, 0xcc, 0xec, 0x08, 0x4b, 0x4e, 0x3b, 0xdc, 0xe1, 0x32, 0xca, 0x0a, 0xff, 0x29, 0x41, 0x72, + 0xce, 0xe1, 0xdc, 0x39, 0xa2, 0x16, 0xa9, 0xb8, 0x16, 0x61, 0x8c, 0x0b, 0x22, 0x5c, 0xce, 0x7c, + 0xfd, 0x74, 0xb5, 0xc0, 0xfd, 0x32, 0xf7, 0xad, 0x3c, 0xf1, 0xa9, 0xca, 0x63, 0x9d, 0xac, 0xe7, + 0xa9, 0x20, 0xeb, 0x56, 0x85, 0x38, 0x2e, 0x93, 0xc1, 0x3a, 0x76, 0xa9, 0x37, 0x61, 0x85, 0x78, + 0xa4, 0x5c, 0x3b, 0x73, 0xb9, 0x77, 0x9c, 0x43, 0x19, 0xf5, 0xdd, 0x5a, 0xa0, 0xd1, 0x3b, 0x50, + 0x9c, 0xaa, 0x18, 0x63, 0x1a, 0xf0, 0x41, 0x88, 0xb5, 0x2f, 0x33, 0xd8, 0xf4, 0xb8, 0x4a, 0x7d, + 0x61, 0xbc, 0x84, 0xff, 0x5a, 0xee, 0xfa, 0x15, 0xce, 0x7c, 0x8a, 0x1f, 0x43, 0x5c, 0x91, 0xcc, + 0xa0, 0x79, 0x94, 0x4e, 0x64, 0x17, 0xcc, 0x9e, 0x6e, 0x99, 0x4a, 0xba, 0x1b, 0x3b, 0xfb, 0x79, + 0x3b, 0x62, 0x6b, 0x99, 0xf1, 0x11, 0xc1, 0x2d, 0x79, 0xb0, 0x4d, 0x1d, 0xd7, 0x17, 0xd4, 0xa3, + 0xc5, 0x03, 0x15, 0xaf, 0x33, 0xe3, 0x1b, 0x10, 0xe7, 0xaf, 0x19, 0xf5, 0xc2, 0x14, 0x23, 0xe9, + 0x31, 0x5b, 0x5f, 0xe1, 0x45, 0xf8, 0xa7, 0xc0, 0x19, 0xa3, 0x85, 0xd0, 0xb0, 0x9c, 0x5b, 0x9c, + 0x89, 0xce, 0xa3, 0xf4, 0x98, 0x3d, 0xde, 0xb8, 0xb9, 0x57, 0xc4, 0x4f, 0x00, 0x1a, 0xae, 0xce, + 0x8c, 0x48, 0xc6, 0x25, 0x53, 0xb5, 0xc0, 0x0c, 0x5b, 0x60, 0xaa, 0x56, 0xeb, 0x16, 0x98, 0xfb, + 0xc4, 0xa1, 0x3a, 0xb1, 0xdd, 0xa4, 0x34, 0xbe, 0x21, 0x48, 0xf5, 0xc2, 0xd4, 0x56, 0xe4, 0x00, + 0x7b, 0xf5, 0x87, 0x39, 0x5d, 0xb4, 0x64, 0x4e, 0x64, 0x57, 0xfb, 0xd8, 0xd2, 0x7a, 0x62, 0xa0, + 0xfd, 0x99, 0xf2, 0xda, 0x13, 0xe1, 0xa7, 0x2d, 0xb5, 0x44, 0x65, 0x2d, 0xcb, 0x03, 0x6b, 0x51, + 0x74, 0x2d, 0xc5, 0x6c, 0xc1, 0xcd, 0x2e, 0xb5, 0x04, 0x35, 0xc3, 0x67, 0xe1, 0x6f, 0x79, 0x50, + 0xe8, 0x69, 0xd8, 0xd5, 0x98, 0x3d, 0x2a, 0xaf, 0xf7, 0x8a, 0x46, 0x15, 0xe6, 0xba, 0x2b, 0xb5, + 0x07, 0x87, 0x30, 0xd9, 0xe6, 0x41, 0xa0, 0x07, 0x63, 0x08, 0x07, 0xec, 0x89, 0xd6, 0xda, 0x03, + 0x63, 0x07, 0x16, 0x7a, 0xa4, 0xad, 0x1e, 0x89, 0x2b, 0x60, 0x17, 0xc1, 0xe8, 0xa7, 0xd7, 0xf0, + 0x3b, 0x10, 0xf7, 0xe4, 0x1d, 0x8d, 0xbc, 0xd4, 0x07, 0xb9, 0x59, 0xaf, 0x55, 0xc6, 0x1e, 0x24, + 0x5e, 0x78, 0x84, 0xf9, 0x44, 0x0e, 0x1f, 0xfe, 0x17, 0xa2, 0x75, 0x92, 0xa8, 0x5b, 0x0c, 0xe7, + 0xb8, 0x44, 0x5d, 0xa7, 0x24, 0x64, 0xeb, 0x62, 0xb6, 0xbe, 0xc2, 0x18, 0x62, 0x45, 0x22, 0x88, + 0x1c, 0xce, 0x71, 0x5b, 0xfe, 0x37, 0xb6, 0xe1, 0x7f, 0x99, 0xe1, 0x39, 0xf1, 0x85, 0x4d, 0xcb, + 0x5c, 0xd0, 0x67, 0x2a, 0xb8, 0x63, 0xe8, 0x51, 0xe7, 0xd0, 0x1b, 0x9b, 0x7a, 0xa5, 0xda, 0xd5, + 0xf5, 0x4a, 0x1b, 0x28, 0xa8, 0x19, 0x25, 0xfb, 0x76, 0x14, 0xfe, 0x92, 0x4a, 0xfc, 0x1e, 0x41, + 0x5c, 0xed, 0x2b, 0xce, 0x0c, 0xb2, 0xa1, 0xe5, 0x45, 0x91, 0x34, 0xaf, 0x1a, 0xae, 0x58, 0x8c, + 0x95, 0x37, 0xdf, 0x7f, 0x7f, 0x88, 0x2e, 0xe2, 0x05, 0x6b, 0xd0, 0xcb, 0x0e, 0x7f, 0x45, 0x30, + 0xd5, 0xb1, 0x7f, 0x78, 0x6b, 0x70, 0x9b, 0xba, 0xbf, 0x59, 0x92, 0x0f, 0xae, 0xa1, 0xd4, 0xd4, + 0xf7, 0x24, 0xb5, 0x85, 0x33, 0x7d, 0xa8, 0x3b, 0xdf, 0x06, 0xf8, 0x33, 0x82, 0x89, 0xb6, 0x21, + 0xc4, 0xf7, 0x87, 0xa3, 0xa8, 0xad, 0x69, 0x72, 0x73, 0x68, 0x9d, 0x66, 0xdf, 0x90, 0xec, 0x19, + 0x7c, 0xf7, 0xea, 0xec, 0x01, 0xfe, 0x82, 0x20, 0xd1, 0x34, 0xf4, 0x78, 0x7b, 0xf8, 0xec, 0x8d, + 0x5d, 0x4d, 0x3e, 0xba, 0xa6, 0x5a, 0x57, 0x60, 0xc9, 0x0a, 0x56, 0xf0, 0xb2, 0x35, 0xe0, 0x13, + 0x9e, 0x53, 0xab, 0x89, 0x3f, 0x21, 0x98, 0xec, 0xd8, 0xa5, 0xb5, 0x41, 0x10, 0xed, 0x8a, 0xe4, + 0xd6, 0xb0, 0x8a, 0x3a, 0xf1, 0x9a, 0x24, 0x5e, 0xc5, 0xe9, 0xbe, 0x9e, 0x87, 0xc2, 0x9c, 0xda, + 0xc5, 0xdd, 0xc3, 0xb3, 0x8b, 0x14, 0x3a, 0xbf, 0x48, 0xa1, 0x5f, 0x17, 0x29, 0xf4, 0xee, 0x32, + 0x15, 0x39, 0xbf, 0x4c, 0x45, 0x7e, 0x5c, 0xa6, 0x22, 0xaf, 0x1e, 0x3a, 0xae, 0x28, 0x55, 0xf3, + 0x66, 0x81, 0x97, 0x6b, 0xa7, 0x65, 0xb8, 0xe7, 0xd4, 0x4f, 0x3e, 0xc9, 0x5a, 0xa7, 0xdd, 0x3e, + 0xf0, 0x41, 0x85, 0xfa, 0xf9, 0xb8, 0xfc, 0xc8, 0x6f, 0xfc, 0x09, 0x00, 0x00, 0xff, 0xff, 0x2b, + 0xaa, 0x1f, 0x18, 0xfd, 0x08, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/interchainqueries/types/tx.pb.go b/x/interchainqueries/types/tx.pb.go index e54fb380a..514f41977 100644 --- a/x/interchainqueries/types/tx.pb.go +++ b/x/interchainqueries/types/tx.pb.go @@ -883,79 +883,80 @@ func init() { } var fileDescriptor_d4793837a316491e = []byte{ - // 1151 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x56, 0x4f, 0x6f, 0x1b, 0x45, - 0x14, 0xcf, 0x3a, 0x76, 0x1a, 0xbf, 0xb8, 0x49, 0x3b, 0xa4, 0xc4, 0x71, 0xa9, 0x9b, 0x2e, 0xa2, - 0xad, 0xa2, 0x76, 0x57, 0x35, 0xa5, 0xa0, 0x56, 0x14, 0x12, 0xaa, 0x8a, 0x28, 0x8a, 0x08, 0x9b, - 0xb4, 0x07, 0x2e, 0xab, 0xf5, 0xee, 0x64, 0x3d, 0xf2, 0x7a, 0xc6, 0xdd, 0x99, 0xb5, 0xbd, 0x07, - 0x2e, 0x88, 0x13, 0x17, 0xf2, 0x29, 0x10, 0x12, 0x1c, 0x72, 0xe0, 0x2b, 0x20, 0xf5, 0x58, 0x71, - 0xe2, 0x84, 0x20, 0x39, 0xe4, 0xc8, 0x89, 0x3b, 0xda, 0x99, 0x5d, 0xc7, 0xad, 0xff, 0xa4, 0xc9, - 0x25, 0xd9, 0xf7, 0xde, 0xef, 0xbd, 0x79, 0xef, 0xcd, 0xbc, 0xdf, 0x33, 0xe8, 0x14, 0x47, 0x22, - 0x64, 0xd4, 0x24, 0x54, 0xe0, 0xd0, 0x6d, 0x38, 0x84, 0xbe, 0x88, 0x70, 0x48, 0x30, 0x37, 0x45, - 0xcf, 0x68, 0x87, 0x4c, 0x30, 0xb4, 0x9c, 0x62, 0x8c, 0x21, 0x4c, 0xe5, 0xe6, 0x78, 0xf7, 0xb6, - 0x13, 0x3a, 0x2d, 0xae, 0x42, 0x54, 0xae, 0x09, 0x4c, 0x3d, 0x1c, 0xb6, 0x08, 0x15, 0xa6, 0x1b, - 0xc6, 0x6d, 0xc1, 0xcc, 0x76, 0xc8, 0xd8, 0x5e, 0x6a, 0xbe, 0x3a, 0x60, 0x76, 0xea, 0x2e, 0x31, - 0x45, 0xdc, 0xc6, 0x99, 0xef, 0xb2, 0xcf, 0x98, 0x1f, 0x60, 0x53, 0x4a, 0xf5, 0x68, 0xcf, 0x74, - 0x68, 0x9c, 0x9a, 0x6e, 0x8d, 0x3f, 0xde, 0xc7, 0x14, 0x73, 0x92, 0xc5, 0x58, 0xf4, 0x99, 0xcf, - 0xe4, 0xa7, 0x99, 0x7c, 0xa5, 0xda, 0x25, 0x97, 0xf1, 0x16, 0xe3, 0x66, 0x8b, 0xfb, 0x66, 0xe7, - 0x5e, 0xf2, 0x2f, 0x3b, 0x52, 0x19, 0x6c, 0xe5, 0xa1, 0x84, 0xd4, 0x74, 0xd9, 0x69, 0x11, 0xca, - 0x4c, 0xf9, 0x57, 0xa9, 0xf4, 0xef, 0x73, 0x50, 0xd9, 0xe2, 0xbe, 0x85, 0x7d, 0xc2, 0x05, 0x0e, - 0x37, 0xfa, 0xb9, 0x7c, 0x1d, 0xe1, 0x30, 0x46, 0xd7, 0x00, 0x92, 0xa4, 0x62, 0x3b, 0x29, 0xaa, - 0xac, 0xad, 0x68, 0xb7, 0x8b, 0x56, 0x51, 0x6a, 0x76, 0xe3, 0x36, 0x46, 0xf7, 0x21, 0xdf, 0xc4, - 0x31, 0x2f, 0xe7, 0x56, 0xa6, 0x6f, 0xcf, 0xd5, 0x56, 0x8c, 0xb1, 0xcd, 0x36, 0x36, 0x9f, 0x6f, - 0xe2, 0xd8, 0x92, 0x68, 0x64, 0xc2, 0x3b, 0x22, 0x74, 0x28, 0x77, 0x5c, 0x41, 0x18, 0xe5, 0xf6, - 0x1e, 0x09, 0x04, 0x0e, 0xcb, 0xd3, 0x32, 0x3a, 0x1a, 0x34, 0x3d, 0x95, 0x16, 0xf4, 0x3e, 0x5c, - 0x74, 0x19, 0xa5, 0x58, 0x2a, 0x6d, 0xe2, 0x95, 0xf3, 0x12, 0x5a, 0x3a, 0x51, 0x6e, 0x78, 0x09, - 0x28, 0x6a, 0x7b, 0x8e, 0xc0, 0x76, 0x1b, 0x87, 0x84, 0x79, 0xe5, 0xc2, 0x8a, 0x76, 0x3b, 0x6f, - 0x95, 0x94, 0x72, 0x5b, 0xea, 0xd0, 0xbb, 0x30, 0xc3, 0xe5, 0x75, 0x95, 0x67, 0x64, 0x88, 0x54, - 0xd2, 0xef, 0x83, 0x3e, 0xbe, 0x0b, 0x16, 0xe6, 0x6d, 0x46, 0x39, 0x46, 0xf3, 0x90, 0x23, 0x9e, - 0xec, 0x42, 0xde, 0xca, 0x11, 0x4f, 0xff, 0x49, 0x83, 0xc5, 0x2d, 0xee, 0xef, 0x44, 0xf5, 0x16, - 0x11, 0x19, 0x34, 0x0a, 0x04, 0x5a, 0x86, 0x59, 0xd5, 0xb6, 0x3e, 0xfc, 0x82, 0x94, 0x37, 0x06, - 0x33, 0xc8, 0x0d, 0x66, 0x80, 0xae, 0x42, 0xd1, 0x0d, 0x08, 0xa6, 0x22, 0xf1, 0x51, 0xad, 0x98, - 0x55, 0x8a, 0x0d, 0x0f, 0x3d, 0x86, 0x99, 0x50, 0x46, 0x96, 0x95, 0xcf, 0xd5, 0x6e, 0x4e, 0xe8, - 0xf4, 0x40, 0x1e, 0x56, 0xea, 0xa5, 0xff, 0xab, 0xc1, 0xdc, 0x60, 0x7e, 0x4f, 0x01, 0x9a, 0x1d, - 0x5b, 0x19, 0x79, 0x59, 0x93, 0xb7, 0x77, 0x6b, 0x42, 0xcc, 0x1d, 0xc1, 0x42, 0xc7, 0xc7, 0xcf, - 0x9d, 0x20, 0xc2, 0x56, 0xb1, 0xd9, 0x51, 0x61, 0x38, 0x7a, 0x00, 0x85, 0x7a, 0xc0, 0xdc, 0xa6, - 0xac, 0x65, 0xf2, 0x03, 0x58, 0x4f, 0x70, 0x96, 0x82, 0x27, 0x4d, 0x68, 0x60, 0xe2, 0x37, 0x84, - 0xac, 0x34, 0x6f, 0xa5, 0x12, 0xaa, 0xc0, 0x6c, 0x88, 0x3b, 0x84, 0x13, 0x46, 0x65, 0xa5, 0x79, - 0xab, 0x2f, 0xa3, 0x3b, 0x80, 0x9c, 0x20, 0x60, 0x5d, 0xbb, 0xd9, 0xb1, 0x5d, 0x27, 0x08, 0xea, - 0x8e, 0xdb, 0xe4, 0xf2, 0x92, 0x67, 0xad, 0x4b, 0xd2, 0xb2, 0xd9, 0xf9, 0x22, 0xd3, 0xeb, 0xfb, - 0x1a, 0x94, 0x06, 0xb3, 0x46, 0x1f, 0xc0, 0x3c, 0x57, 0xb2, 0xdd, 0x0e, 0xf1, 0x1e, 0xe9, 0xa5, - 0xaf, 0xf9, 0x62, 0xaa, 0xdd, 0x96, 0x4a, 0x74, 0x09, 0xa6, 0x9b, 0x38, 0x96, 0xf5, 0x94, 0xac, - 0xe4, 0x13, 0x2d, 0x42, 0xa1, 0x93, 0x44, 0x90, 0xa9, 0x96, 0x2c, 0x25, 0xa0, 0x7b, 0x50, 0xd8, - 0x4e, 0x48, 0x20, 0xbd, 0x90, 0xab, 0xc6, 0x09, 0x0b, 0x18, 0x8a, 0x24, 0x0c, 0x69, 0xff, 0xaa, - 0xcd, 0x2d, 0x85, 0xd4, 0x7f, 0xd1, 0xa0, 0x20, 0xbb, 0x80, 0x3e, 0x87, 0xcb, 0x14, 0xf7, 0x84, - 0x2d, 0x9b, 0x61, 0x37, 0xb0, 0x93, 0x3c, 0x07, 0x4d, 0x06, 0x5a, 0x34, 0x14, 0x63, 0x18, 0x19, - 0x63, 0x18, 0x6b, 0x34, 0xb6, 0x16, 0x12, 0xb8, 0xf4, 0xfd, 0x52, 0x82, 0xd1, 0x9d, 0xa4, 0x81, - 0x4e, 0xf6, 0x8a, 0xc6, 0xb9, 0xa5, 0x18, 0x54, 0x83, 0x9c, 0xe8, 0xc9, 0xfc, 0xe7, 0x6a, 0xfa, - 0x84, 0x3b, 0xda, 0xed, 0xa9, 0x1b, 0xce, 0x89, 0x9e, 0xfe, 0x8f, 0x06, 0x17, 0x52, 0x19, 0x3d, - 0x4e, 0xae, 0x45, 0xcd, 0x40, 0x9a, 0xa6, 0x3e, 0x58, 0x6f, 0xc2, 0x7a, 0x46, 0x36, 0x24, 0x4f, - 0x70, 0x40, 0x3a, 0x38, 0xdc, 0xed, 0x59, 0x7d, 0x1f, 0xf4, 0x19, 0xcc, 0x7b, 0x4a, 0x1d, 0xdb, - 0x92, 0x3a, 0xd3, 0xac, 0xcb, 0xe3, 0xba, 0x66, 0x5d, 0xcc, 0xf0, 0x52, 0x44, 0x6b, 0xb0, 0x40, - 0xa8, 0x1b, 0x44, 0xc9, 0x43, 0x48, 0x23, 0x4c, 0x9f, 0x12, 0x61, 0xbe, 0xef, 0xa0, 0x42, 0x20, - 0xc8, 0x7b, 0x8e, 0x70, 0xe4, 0x7d, 0x95, 0x2c, 0xf9, 0xad, 0x57, 0xe1, 0xbd, 0x51, 0xe3, 0x9b, - 0x95, 0xa2, 0xef, 0xc2, 0x75, 0xc9, 0x0a, 0x2d, 0xd6, 0xc1, 0x43, 0x9c, 0xf0, 0x22, 0xc2, 0xfc, - 0x3c, 0x93, 0xae, 0xeb, 0xb0, 0x32, 0x3e, 0x6a, 0x7a, 0xf2, 0x7f, 0x9a, 0x3c, 0xfa, 0x99, 0xe4, - 0xae, 0xb3, 0x1f, 0xfd, 0x08, 0x66, 0x29, 0xee, 0xda, 0x67, 0xe2, 0xe6, 0x0b, 0x14, 0x77, 0x37, - 0x13, 0x7a, 0x5e, 0x4d, 0x5e, 0x67, 0xd7, 0x7e, 0x9d, 0x4c, 0xd5, 0x9c, 0x2e, 0x50, 0xdc, 0x7d, - 0x36, 0xc8, 0xa7, 0x0f, 0x60, 0x29, 0xc1, 0x8e, 0xa2, 0x73, 0xc5, 0xd1, 0x57, 0x28, 0xee, 0xee, - 0x0e, 0x33, 0xfa, 0x49, 0x6f, 0x0a, 0x23, 0x7a, 0x33, 0xa6, 0xec, 0xb4, 0x37, 0xbf, 0x6b, 0xb0, - 0xd0, 0x07, 0x6d, 0xcb, 0x4d, 0x8d, 0x1e, 0x40, 0xd1, 0x89, 0x44, 0x83, 0x85, 0x44, 0xc4, 0x6a, - 0xb0, 0xd7, 0xcb, 0x7f, 0xfc, 0x76, 0x77, 0x31, 0x5d, 0x7f, 0x6b, 0x9e, 0x17, 0x62, 0xce, 0x77, - 0x44, 0x48, 0xa8, 0x6f, 0x9d, 0x40, 0xd1, 0x13, 0x98, 0x51, 0xbb, 0x3e, 0x7d, 0x91, 0x37, 0x26, - 0xb4, 0x49, 0x1d, 0xb5, 0x5e, 0x7c, 0xf9, 0xd7, 0xf5, 0xa9, 0x9f, 0x8f, 0x0f, 0x56, 0x35, 0x2b, - 0xf5, 0x7d, 0x78, 0xff, 0xbb, 0xe3, 0x83, 0xd5, 0x93, 0xa8, 0x3f, 0x1c, 0x1f, 0xac, 0xde, 0x18, - 0xde, 0xea, 0x6f, 0xe4, 0xac, 0x2f, 0xc3, 0xd2, 0x1b, 0xaa, 0xac, 0xc4, 0xda, 0xaf, 0x05, 0x98, - 0xde, 0xe2, 0x3e, 0xfa, 0x51, 0x83, 0xa5, 0x71, 0xab, 0xf9, 0xa3, 0x09, 0xa9, 0x8e, 0xdf, 0x65, - 0x95, 0x4f, 0xcf, 0xe5, 0xd6, 0x5f, 0x81, 0xdf, 0xc2, 0xe5, 0xe1, 0x75, 0x67, 0x4e, 0x8e, 0x39, - 0xe4, 0x50, 0xf9, 0xf8, 0x8c, 0x0e, 0xfd, 0xe3, 0xf7, 0x35, 0xb8, 0x32, 0x72, 0x72, 0xd0, 0xc3, - 0xd3, 0xea, 0x1a, 0x3f, 0xc4, 0x95, 0x47, 0xe7, 0xf2, 0x1d, 0x48, 0x69, 0xe4, 0x83, 0x3d, 0x2d, - 0xa5, 0x49, 0xc3, 0x7d, 0x5a, 0x4a, 0x13, 0x27, 0x04, 0x51, 0x28, 0xbd, 0x36, 0x1d, 0xab, 0x6f, - 0x13, 0x4c, 0x61, 0x2b, 0xb5, 0xb7, 0xc7, 0x66, 0xe7, 0xad, 0x5b, 0x2f, 0x0f, 0xab, 0xda, 0xab, - 0xc3, 0xaa, 0xf6, 0xf7, 0x61, 0x55, 0xdb, 0x3f, 0xaa, 0x4e, 0xbd, 0x3a, 0xaa, 0x4e, 0xfd, 0x79, - 0x54, 0x9d, 0xfa, 0xe6, 0x13, 0x9f, 0x88, 0x46, 0x54, 0x37, 0x5c, 0xd6, 0x32, 0xd3, 0xb8, 0x77, - 0x59, 0xe8, 0x67, 0xdf, 0x66, 0x6f, 0xd4, 0x6f, 0xf7, 0xe4, 0xf7, 0x73, 0x7d, 0x46, 0x6e, 0xb2, - 0x0f, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0x69, 0x75, 0x22, 0x83, 0xe5, 0x0b, 0x00, 0x00, + // 1155 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x56, 0x4d, 0x6f, 0xdb, 0x46, + 0x13, 0x36, 0x65, 0xc9, 0xb1, 0xc6, 0x8a, 0x9d, 0xec, 0xeb, 0xbc, 0x96, 0x95, 0x46, 0x71, 0x58, + 0x34, 0x09, 0x8c, 0x84, 0x44, 0xd4, 0x34, 0x05, 0x12, 0x34, 0xad, 0xdd, 0x20, 0xa8, 0x61, 0x18, + 0x75, 0x69, 0x3b, 0x87, 0x5e, 0x08, 0x8a, 0x5c, 0x53, 0x0b, 0x51, 0xbb, 0x0a, 0x77, 0x29, 0x89, + 0x87, 0x5e, 0x8a, 0x9e, 0x7a, 0xa9, 0x7f, 0x45, 0x51, 0xa0, 0x3d, 0xf8, 0xd0, 0xbf, 0x50, 0x20, + 0xc7, 0xa0, 0xa7, 0x9e, 0x8a, 0xd6, 0x3e, 0xf8, 0xd8, 0x53, 0xef, 0x05, 0x77, 0x49, 0x59, 0x89, + 0x3e, 0x1c, 0xfb, 0x62, 0x73, 0x66, 0x9e, 0x99, 0x9d, 0x99, 0xdd, 0x79, 0x46, 0xa0, 0x53, 0x1c, + 0x89, 0x90, 0x51, 0x93, 0x50, 0x81, 0x43, 0xb7, 0xe1, 0x10, 0xfa, 0x32, 0xc2, 0x21, 0xc1, 0xdc, + 0x14, 0x3d, 0xa3, 0x1d, 0x32, 0xc1, 0xd0, 0x72, 0x8a, 0x31, 0x86, 0x30, 0x95, 0xdb, 0xe3, 0xdd, + 0xdb, 0x4e, 0xe8, 0xb4, 0xb8, 0x0a, 0x51, 0xb9, 0x21, 0x30, 0xf5, 0x70, 0xd8, 0x22, 0x54, 0x98, + 0x6e, 0x18, 0xb7, 0x05, 0x33, 0xdb, 0x21, 0x63, 0xfb, 0xa9, 0xf9, 0xfa, 0x80, 0xd9, 0xa9, 0xbb, + 0xc4, 0x14, 0x71, 0x1b, 0x67, 0xbe, 0xcb, 0x3e, 0x63, 0x7e, 0x80, 0x4d, 0x29, 0xd5, 0xa3, 0x7d, + 0xd3, 0xa1, 0x71, 0x6a, 0xba, 0x33, 0xfe, 0x78, 0x1f, 0x53, 0xcc, 0x49, 0x16, 0x63, 0xd1, 0x67, + 0x3e, 0x93, 0x9f, 0x66, 0xf2, 0x95, 0x6a, 0x97, 0x5c, 0xc6, 0x5b, 0x8c, 0x9b, 0x2d, 0xee, 0x9b, + 0x9d, 0x07, 0xc9, 0xbf, 0xec, 0x48, 0x65, 0xb0, 0x95, 0x87, 0x12, 0x52, 0xd3, 0x55, 0xa7, 0x45, + 0x28, 0x33, 0xe5, 0x5f, 0xa5, 0xd2, 0xbf, 0xcb, 0x41, 0x65, 0x8b, 0xfb, 0x16, 0xf6, 0x09, 0x17, + 0x38, 0xdc, 0xe8, 0xe7, 0xf2, 0x55, 0x84, 0xc3, 0x18, 0xdd, 0x00, 0x48, 0x92, 0x8a, 0xed, 0xa4, + 0xa8, 0xb2, 0xb6, 0xa2, 0xdd, 0x2d, 0x5a, 0x45, 0xa9, 0xd9, 0x8d, 0xdb, 0x18, 0x3d, 0x84, 0x7c, + 0x13, 0xc7, 0xbc, 0x9c, 0x5b, 0x99, 0xbe, 0x3b, 0x57, 0x5b, 0x31, 0xc6, 0x36, 0xdb, 0xd8, 0x7c, + 0xb1, 0x89, 0x63, 0x4b, 0xa2, 0x91, 0x09, 0xff, 0x13, 0xa1, 0x43, 0xb9, 0xe3, 0x0a, 0xc2, 0x28, + 0xb7, 0xf7, 0x49, 0x20, 0x70, 0x58, 0x9e, 0x96, 0xd1, 0xd1, 0xa0, 0xe9, 0xb9, 0xb4, 0xa0, 0xf7, + 0xe1, 0xb2, 0xcb, 0x28, 0xc5, 0x52, 0x69, 0x13, 0xaf, 0x9c, 0x97, 0xd0, 0xd2, 0xa9, 0x72, 0xc3, + 0x4b, 0x40, 0x51, 0xdb, 0x73, 0x04, 0xb6, 0xdb, 0x38, 0x24, 0xcc, 0x2b, 0x17, 0x56, 0xb4, 0xbb, + 0x79, 0xab, 0xa4, 0x94, 0xdb, 0x52, 0x87, 0xfe, 0x0f, 0x33, 0x5c, 0x5e, 0x57, 0x79, 0x46, 0x86, + 0x48, 0x25, 0xfd, 0x21, 0xe8, 0xe3, 0xbb, 0x60, 0x61, 0xde, 0x66, 0x94, 0x63, 0x34, 0x0f, 0x39, + 0xe2, 0xc9, 0x2e, 0xe4, 0xad, 0x1c, 0xf1, 0xf4, 0x1f, 0x35, 0x58, 0xdc, 0xe2, 0xfe, 0x4e, 0x54, + 0x6f, 0x11, 0x91, 0x41, 0xa3, 0x40, 0xa0, 0x65, 0x98, 0x55, 0x6d, 0xeb, 0xc3, 0x2f, 0x49, 0x79, + 0x63, 0x30, 0x83, 0xdc, 0x60, 0x06, 0xe8, 0x3a, 0x14, 0xdd, 0x80, 0x60, 0x2a, 0x12, 0x1f, 0xd5, + 0x8a, 0x59, 0xa5, 0xd8, 0xf0, 0xd0, 0x53, 0x98, 0x09, 0x65, 0x64, 0x59, 0xf9, 0x5c, 0xed, 0xf6, + 0x84, 0x4e, 0x0f, 0xe4, 0x61, 0xa5, 0x5e, 0xfa, 0x3f, 0x1a, 0xcc, 0x0d, 0xe6, 0xf7, 0x1c, 0xa0, + 0xd9, 0xb1, 0x95, 0x91, 0x97, 0x35, 0x79, 0x7b, 0x77, 0x26, 0xc4, 0xdc, 0x11, 0x2c, 0x74, 0x7c, + 0xfc, 0xc2, 0x09, 0x22, 0x6c, 0x15, 0x9b, 0x1d, 0x15, 0x86, 0xa3, 0x47, 0x50, 0xa8, 0x07, 0xcc, + 0x6d, 0xca, 0x5a, 0x26, 0x3f, 0x80, 0xf5, 0x04, 0x67, 0x29, 0x78, 0xd2, 0x84, 0x06, 0x26, 0x7e, + 0x43, 0xc8, 0x4a, 0xf3, 0x56, 0x2a, 0xa1, 0x0a, 0xcc, 0x86, 0xb8, 0x43, 0x38, 0x61, 0x54, 0x56, + 0x9a, 0xb7, 0xfa, 0x32, 0xba, 0x07, 0xc8, 0x09, 0x02, 0xd6, 0xb5, 0x9b, 0x1d, 0xdb, 0x75, 0x82, + 0xa0, 0xee, 0xb8, 0x4d, 0x2e, 0x2f, 0x79, 0xd6, 0xba, 0x22, 0x2d, 0x9b, 0x9d, 0xcf, 0x33, 0xbd, + 0x7e, 0xa0, 0x41, 0x69, 0x30, 0x6b, 0xf4, 0x01, 0xcc, 0x73, 0x25, 0xdb, 0xed, 0x10, 0xef, 0x93, + 0x5e, 0xfa, 0x9a, 0x2f, 0xa7, 0xda, 0x6d, 0xa9, 0x44, 0x57, 0x60, 0xba, 0x89, 0x63, 0x59, 0x4f, + 0xc9, 0x4a, 0x3e, 0xd1, 0x22, 0x14, 0x3a, 0x49, 0x04, 0x99, 0x6a, 0xc9, 0x52, 0x02, 0x7a, 0x00, + 0x85, 0xed, 0x84, 0x04, 0xd2, 0x0b, 0xb9, 0x6e, 0x9c, 0xb2, 0x80, 0xa1, 0x48, 0xc2, 0x90, 0xf6, + 0x2f, 0xdb, 0xdc, 0x52, 0x48, 0xfd, 0x67, 0x0d, 0x0a, 0xb2, 0x0b, 0xe8, 0x33, 0xb8, 0x4a, 0x71, + 0x4f, 0xd8, 0xb2, 0x19, 0x76, 0x03, 0x3b, 0xc9, 0x73, 0xd0, 0x64, 0xa0, 0x45, 0x43, 0x31, 0x86, + 0x91, 0x31, 0x86, 0xb1, 0x46, 0x63, 0x6b, 0x21, 0x81, 0x4b, 0xdf, 0x2f, 0x24, 0x18, 0xdd, 0x4b, + 0x1a, 0xe8, 0x64, 0xaf, 0x68, 0x9c, 0x5b, 0x8a, 0x41, 0x35, 0xc8, 0x89, 0x9e, 0xcc, 0x7f, 0xae, + 0xa6, 0x4f, 0xb8, 0xa3, 0xdd, 0x9e, 0xba, 0xe1, 0x9c, 0xe8, 0xe9, 0x7f, 0x6b, 0x70, 0x29, 0x95, + 0xd1, 0xd3, 0xe4, 0x5a, 0xd4, 0x0c, 0xa4, 0x69, 0xea, 0x83, 0xf5, 0x26, 0xac, 0x67, 0x64, 0x43, + 0xf2, 0x0c, 0x07, 0xa4, 0x83, 0xc3, 0xdd, 0x9e, 0xd5, 0xf7, 0x41, 0x9f, 0xc2, 0xbc, 0xa7, 0xd4, + 0xb1, 0x2d, 0xa9, 0x33, 0xcd, 0xba, 0x3c, 0xae, 0x6b, 0xd6, 0xe5, 0x0c, 0x2f, 0x45, 0xb4, 0x06, + 0x0b, 0x84, 0xba, 0x41, 0x94, 0x3c, 0x84, 0x34, 0xc2, 0xf4, 0x19, 0x11, 0xe6, 0xfb, 0x0e, 0x2a, + 0x04, 0x82, 0xbc, 0xe7, 0x08, 0x47, 0xde, 0x57, 0xc9, 0x92, 0xdf, 0x7a, 0x15, 0xde, 0x1b, 0x35, + 0xbe, 0x59, 0x29, 0xfa, 0x2e, 0xdc, 0x94, 0xac, 0xd0, 0x62, 0x1d, 0x3c, 0xc4, 0x09, 0x2f, 0x23, + 0xcc, 0x2f, 0x32, 0xe9, 0xba, 0x0e, 0x2b, 0xe3, 0xa3, 0xa6, 0x27, 0xff, 0xab, 0xc9, 0xa3, 0xf7, + 0x24, 0x77, 0x9d, 0xff, 0xe8, 0x27, 0x30, 0x4b, 0x71, 0xd7, 0x3e, 0x17, 0x37, 0x5f, 0xa2, 0xb8, + 0xbb, 0x99, 0xd0, 0xf3, 0x6a, 0xf2, 0x3a, 0xbb, 0xf6, 0x9b, 0x64, 0xaa, 0xe6, 0x74, 0x81, 0xe2, + 0xee, 0xde, 0x20, 0x9f, 0x3e, 0x82, 0xa5, 0x04, 0x3b, 0x8a, 0xce, 0x15, 0x47, 0x5f, 0xa3, 0xb8, + 0xbb, 0x3b, 0xcc, 0xe8, 0xa7, 0xbd, 0x29, 0x8c, 0xe8, 0xcd, 0x98, 0xb2, 0xd3, 0xde, 0xfc, 0xa6, + 0xc1, 0x42, 0x1f, 0xb4, 0x2d, 0x37, 0x35, 0x7a, 0x04, 0x45, 0x27, 0x12, 0x0d, 0x16, 0x12, 0x11, + 0xab, 0xc1, 0x5e, 0x2f, 0xff, 0xfe, 0xeb, 0xfd, 0xc5, 0x74, 0xfd, 0xad, 0x79, 0x5e, 0x88, 0x39, + 0xdf, 0x11, 0x21, 0xa1, 0xbe, 0x75, 0x0a, 0x45, 0xcf, 0x60, 0x46, 0xed, 0xfa, 0xf4, 0x45, 0xde, + 0x9a, 0xd0, 0x26, 0x75, 0xd4, 0x7a, 0xf1, 0xd5, 0x9f, 0x37, 0xa7, 0x7e, 0x3a, 0x39, 0x5c, 0xd5, + 0xac, 0xd4, 0xf7, 0xf1, 0xc3, 0x6f, 0x4f, 0x0e, 0x57, 0x4f, 0xa3, 0x7e, 0x7f, 0x72, 0xb8, 0x7a, + 0x6b, 0x78, 0xab, 0xbf, 0x95, 0xb3, 0xbe, 0x0c, 0x4b, 0x6f, 0xa9, 0xb2, 0x12, 0x6b, 0xbf, 0x14, + 0x60, 0x7a, 0x8b, 0xfb, 0xe8, 0x07, 0x0d, 0x96, 0xc6, 0xad, 0xe6, 0x8f, 0x26, 0xa4, 0x3a, 0x7e, + 0x97, 0x55, 0x3e, 0xb9, 0x90, 0x5b, 0x7f, 0x05, 0x7e, 0x03, 0x57, 0x87, 0xd7, 0x9d, 0x39, 0x39, + 0xe6, 0x90, 0x43, 0xe5, 0xe3, 0x73, 0x3a, 0xf4, 0x8f, 0x3f, 0xd0, 0xe0, 0xda, 0xc8, 0xc9, 0x41, + 0x8f, 0xcf, 0xaa, 0x6b, 0xfc, 0x10, 0x57, 0x9e, 0x5c, 0xc8, 0x77, 0x20, 0xa5, 0x91, 0x0f, 0xf6, + 0xac, 0x94, 0x26, 0x0d, 0xf7, 0x59, 0x29, 0x4d, 0x9c, 0x10, 0x44, 0xa1, 0xf4, 0xc6, 0x74, 0xac, + 0xbe, 0x4b, 0x30, 0x85, 0xad, 0xd4, 0xde, 0x1d, 0x9b, 0x9d, 0xb7, 0xbe, 0xf7, 0xea, 0xa8, 0xaa, + 0xbd, 0x3e, 0xaa, 0x6a, 0x7f, 0x1d, 0x55, 0xb5, 0x83, 0xe3, 0xea, 0xd4, 0xeb, 0xe3, 0xea, 0xd4, + 0x1f, 0xc7, 0xd5, 0xa9, 0xaf, 0x9f, 0xf8, 0x44, 0x34, 0xa2, 0xba, 0xe1, 0xb2, 0x96, 0x99, 0xc6, + 0xbd, 0xcf, 0x42, 0x3f, 0xfb, 0x36, 0x3b, 0x35, 0xb3, 0x37, 0xea, 0xe7, 0x7b, 0xf2, 0x13, 0xba, + 0x3e, 0x23, 0x97, 0xd9, 0x87, 0xff, 0x05, 0x00, 0x00, 0xff, 0xff, 0x19, 0x5d, 0xf5, 0x44, 0xe8, + 0x0b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/interchainqueries/types/tx_test.go b/x/interchainqueries/types/tx_test.go index 3b6362691..8f1d6d874 100644 --- a/x/interchainqueries/types/tx_test.go +++ b/x/interchainqueries/types/tx_test.go @@ -12,7 +12,7 @@ import ( ibchost "github.com/cosmos/ibc-go/v7/modules/core/exported" - iqtypes "github.com/neutron-org/neutron/x/interchainqueries/types" + iqtypes "github.com/neutron-org/neutron/v2/x/interchainqueries/types" ) const TestAddress = "cosmos10h9stc5v6ntgeygf5xf945njqq5h32r53uquvw" diff --git a/x/interchaintxs/client/cli/query.go b/x/interchaintxs/client/cli/query.go index e78ac6eb1..25cb587c9 100644 --- a/x/interchaintxs/client/cli/query.go +++ b/x/interchaintxs/client/cli/query.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/interchaintxs/client/cli/query_interchainaccounts.go b/x/interchaintxs/client/cli/query_interchainaccounts.go index 633f845dd..4637eba85 100644 --- a/x/interchaintxs/client/cli/query_interchainaccounts.go +++ b/x/interchaintxs/client/cli/query_interchainaccounts.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) func CmdInterchainAccountCmd() *cobra.Command { diff --git a/x/interchaintxs/client/cli/query_params.go b/x/interchaintxs/client/cli/query_params.go index 1d2799f82..01f824530 100644 --- a/x/interchaintxs/client/cli/query_params.go +++ b/x/interchaintxs/client/cli/query_params.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) func CmdQueryParams() *cobra.Command { diff --git a/x/interchaintxs/client/cli/tx.go b/x/interchaintxs/client/cli/tx.go index 7322e63ba..912850981 100644 --- a/x/interchaintxs/client/cli/tx.go +++ b/x/interchaintxs/client/cli/tx.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) // GetTxCmd returns the transaction commands for this module diff --git a/x/interchaintxs/genesis.go b/x/interchaintxs/genesis.go index 6fb8a4a1c..ce111ab41 100644 --- a/x/interchaintxs/genesis.go +++ b/x/interchaintxs/genesis.go @@ -3,8 +3,8 @@ package interchaintxs import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/interchaintxs/keeper" - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/keeper" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) // InitGenesis initializes the capability module's state from a provided genesis diff --git a/x/interchaintxs/genesis_test.go b/x/interchaintxs/genesis_test.go index 2adc3476d..dd7c8838a 100644 --- a/x/interchaintxs/genesis_test.go +++ b/x/interchaintxs/genesis_test.go @@ -5,10 +5,10 @@ import ( "github.com/stretchr/testify/require" - keepertest "github.com/neutron-org/neutron/testutil/interchaintxs/keeper" - "github.com/neutron-org/neutron/testutil/interchaintxs/nullify" - "github.com/neutron-org/neutron/x/interchaintxs" - "github.com/neutron-org/neutron/x/interchaintxs/types" + keepertest "github.com/neutron-org/neutron/v2/testutil/interchaintxs/keeper" + "github.com/neutron-org/neutron/v2/testutil/interchaintxs/nullify" + "github.com/neutron-org/neutron/v2/x/interchaintxs" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) func TestGenesis(t *testing.T) { diff --git a/x/interchaintxs/ibc_module.go b/x/interchaintxs/ibc_module.go index b929b8e35..4be79c8e4 100644 --- a/x/interchaintxs/ibc_module.go +++ b/x/interchaintxs/ibc_module.go @@ -9,7 +9,7 @@ import ( porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/neutron-org/neutron/x/interchaintxs/keeper" + "github.com/neutron-org/neutron/v2/x/interchaintxs/keeper" ) var _ porttypes.IBCModule = IBCModule{} diff --git a/x/interchaintxs/keeper/grpc_query.go b/x/interchaintxs/keeper/grpc_query.go index 7d2a978a0..85660e878 100644 --- a/x/interchaintxs/keeper/grpc_query.go +++ b/x/interchaintxs/keeper/grpc_query.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/interchaintxs/keeper/grpc_query_interchainaccount.go b/x/interchaintxs/keeper/grpc_query_interchainaccount.go index 9670b2ec4..8e93af40c 100644 --- a/x/interchaintxs/keeper/grpc_query_interchainaccount.go +++ b/x/interchaintxs/keeper/grpc_query_interchainaccount.go @@ -9,7 +9,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) func (k Keeper) InterchainAccountAddress(c context.Context, req *types.QueryInterchainAccountAddressRequest) (*types.QueryInterchainAccountAddressResponse, error) { diff --git a/x/interchaintxs/keeper/grpc_query_interchainaccount_test.go b/x/interchaintxs/keeper/grpc_query_interchainaccount_test.go index 5de39ad40..a482bdde0 100644 --- a/x/interchaintxs/keeper/grpc_query_interchainaccount_test.go +++ b/x/interchaintxs/keeper/grpc_query_interchainaccount_test.go @@ -10,10 +10,10 @@ import ( "github.com/golang/mock/gomock" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/testutil" - testkeeper "github.com/neutron-org/neutron/testutil/interchaintxs/keeper" - mock_types "github.com/neutron-org/neutron/testutil/mocks/interchaintxs/types" - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/testutil" + testkeeper "github.com/neutron-org/neutron/v2/testutil/interchaintxs/keeper" + mock_types "github.com/neutron-org/neutron/v2/testutil/mocks/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) func TestKeeper_InterchainAccountAddress(t *testing.T) { diff --git a/x/interchaintxs/keeper/grpc_query_params.go b/x/interchaintxs/keeper/grpc_query_params.go index 80191f169..a31bd25ba 100644 --- a/x/interchaintxs/keeper/grpc_query_params.go +++ b/x/interchaintxs/keeper/grpc_query_params.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) func (k Keeper) Params(c context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error) { diff --git a/x/interchaintxs/keeper/grpc_query_params_test.go b/x/interchaintxs/keeper/grpc_query_params_test.go index 5fa31e0c3..e07e6d10c 100644 --- a/x/interchaintxs/keeper/grpc_query_params_test.go +++ b/x/interchaintxs/keeper/grpc_query_params_test.go @@ -6,8 +6,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - testkeeper "github.com/neutron-org/neutron/testutil/interchaintxs/keeper" - "github.com/neutron-org/neutron/x/interchaintxs/types" + testkeeper "github.com/neutron-org/neutron/v2/testutil/interchaintxs/keeper" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) func TestParamsQuery(t *testing.T) { diff --git a/x/interchaintxs/keeper/ibc_handlers.go b/x/interchaintxs/keeper/ibc_handlers.go index f9aacea39..13d3f3555 100644 --- a/x/interchaintxs/keeper/ibc_handlers.go +++ b/x/interchaintxs/keeper/ibc_handlers.go @@ -3,7 +3,7 @@ package keeper import ( "time" - "github.com/neutron-org/neutron/x/contractmanager/keeper" + "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" "cosmossdk.io/errors" @@ -12,9 +12,9 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - contractmanagertypes "github.com/neutron-org/neutron/x/contractmanager/types" - feetypes "github.com/neutron-org/neutron/x/feerefunder/types" - "github.com/neutron-org/neutron/x/interchaintxs/types" + contractmanagertypes "github.com/neutron-org/neutron/v2/x/contractmanager/types" + feetypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) // HandleAcknowledgement passes the acknowledgement data to the appropriate contract via a sudo call. diff --git a/x/interchaintxs/keeper/ibc_handlers_test.go b/x/interchaintxs/keeper/ibc_handlers_test.go index 4b8e0d546..287de380c 100644 --- a/x/interchaintxs/keeper/ibc_handlers_test.go +++ b/x/interchaintxs/keeper/ibc_handlers_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/neutron-org/neutron/x/contractmanager/keeper" + "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" sdk "github.com/cosmos/cosmos-sdk/types" icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" @@ -12,11 +12,11 @@ import ( "github.com/golang/mock/gomock" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/testutil" - testkeeper "github.com/neutron-org/neutron/testutil/interchaintxs/keeper" - mock_types "github.com/neutron-org/neutron/testutil/mocks/interchaintxs/types" - "github.com/neutron-org/neutron/x/contractmanager/types" - feetypes "github.com/neutron-org/neutron/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/testutil" + testkeeper "github.com/neutron-org/neutron/v2/testutil/interchaintxs/keeper" + mock_types "github.com/neutron-org/neutron/v2/testutil/mocks/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/types" + feetypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) func TestHandleAcknowledgement(t *testing.T) { diff --git a/x/interchaintxs/keeper/keeper.go b/x/interchaintxs/keeper/keeper.go index 8f0ae6096..bb698a174 100644 --- a/x/interchaintxs/keeper/keeper.go +++ b/x/interchaintxs/keeper/keeper.go @@ -12,7 +12,7 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) const ( diff --git a/x/interchaintxs/keeper/msg_server.go b/x/interchaintxs/keeper/msg_server.go index d0ac0c11d..0d28f9e6e 100644 --- a/x/interchaintxs/keeper/msg_server.go +++ b/x/interchaintxs/keeper/msg_server.go @@ -15,8 +15,8 @@ import ( icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - feetypes "github.com/neutron-org/neutron/x/feerefunder/types" - ictxtypes "github.com/neutron-org/neutron/x/interchaintxs/types" + feetypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" + ictxtypes "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) type msgServer struct { diff --git a/x/interchaintxs/keeper/msg_server_test.go b/x/interchaintxs/keeper/msg_server_test.go index f27c584a0..4d6bbb6dc 100644 --- a/x/interchaintxs/keeper/msg_server_test.go +++ b/x/interchaintxs/keeper/msg_server_test.go @@ -5,13 +5,13 @@ import ( "testing" "time" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app/params" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" icatypes "github.com/cosmos/ibc-go/v7/modules/apps/27-interchain-accounts/types" - feerefundertypes "github.com/neutron-org/neutron/x/feerefunder/types" - "github.com/neutron-org/neutron/x/interchaintxs/keeper" + feerefundertypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/keeper" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/golang/mock/gomock" @@ -19,10 +19,10 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" - "github.com/neutron-org/neutron/testutil" - testkeeper "github.com/neutron-org/neutron/testutil/interchaintxs/keeper" - mock_types "github.com/neutron-org/neutron/testutil/mocks/interchaintxs/types" - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/testutil" + testkeeper "github.com/neutron-org/neutron/v2/testutil/interchaintxs/keeper" + mock_types "github.com/neutron-org/neutron/v2/testutil/mocks/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) const TestFeeCollectorAddr = "neutron1dua3d89szsmd3vwg0y5a2689ah0g4x68ps8vew" diff --git a/x/interchaintxs/keeper/params.go b/x/interchaintxs/keeper/params.go index 2a443a632..cce09e11a 100644 --- a/x/interchaintxs/keeper/params.go +++ b/x/interchaintxs/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) // GetParams get all parameters as types.Params diff --git a/x/interchaintxs/keeper/params_test.go b/x/interchaintxs/keeper/params_test.go index 0899ac765..b52a4d381 100644 --- a/x/interchaintxs/keeper/params_test.go +++ b/x/interchaintxs/keeper/params_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - testkeeper "github.com/neutron-org/neutron/testutil/interchaintxs/keeper" - "github.com/neutron-org/neutron/x/interchaintxs/types" + testkeeper "github.com/neutron-org/neutron/v2/testutil/interchaintxs/keeper" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) func TestGetParams(t *testing.T) { diff --git a/x/interchaintxs/module.go b/x/interchaintxs/module.go index e29946741..9cb0782f8 100644 --- a/x/interchaintxs/module.go +++ b/x/interchaintxs/module.go @@ -17,9 +17,9 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - "github.com/neutron-org/neutron/x/interchaintxs/client/cli" - "github.com/neutron-org/neutron/x/interchaintxs/keeper" - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/client/cli" + "github.com/neutron-org/neutron/v2/x/interchaintxs/keeper" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) var ( diff --git a/x/interchaintxs/module_simulation.go b/x/interchaintxs/module_simulation.go index 9bc6f895f..628adfea0 100644 --- a/x/interchaintxs/module_simulation.go +++ b/x/interchaintxs/module_simulation.go @@ -8,8 +8,8 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - interchaintxssimulation "github.com/neutron-org/neutron/x/interchaintxs/simulation" - "github.com/neutron-org/neutron/x/interchaintxs/types" + interchaintxssimulation "github.com/neutron-org/neutron/v2/x/interchaintxs/simulation" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) // avoid unused import issue diff --git a/x/interchaintxs/types/expected_keepers.go b/x/interchaintxs/types/expected_keepers.go index f565e1059..5e7060106 100644 --- a/x/interchaintxs/types/expected_keepers.go +++ b/x/interchaintxs/types/expected_keepers.go @@ -9,7 +9,7 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" ibcexported "github.com/cosmos/ibc-go/v7/modules/core/exported" - feerefundertypes "github.com/neutron-org/neutron/x/feerefunder/types" + feerefundertypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) // AccountKeeper defines the expected account keeper used for simulations (noalias) diff --git a/x/interchaintxs/types/genesis.pb.go b/x/interchaintxs/types/genesis.pb.go index 686af617c..bb7ba42e4 100644 --- a/x/interchaintxs/types/genesis.pb.go +++ b/x/interchaintxs/types/genesis.pb.go @@ -78,7 +78,7 @@ func init() { } var fileDescriptor_d16558b72a810826 = []byte{ - // 204 bytes of a gzipped FileDescriptorProto + // 207 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xcb, 0x4b, 0x2d, 0x2d, 0x29, 0xca, 0xcf, 0xd3, 0xcf, 0xcc, 0x2b, 0x49, 0x2d, 0x4a, 0xce, 0x48, 0xcc, 0xcc, 0x2b, 0xa9, 0x28, 0xd6, 0x2f, 0x33, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, @@ -87,11 +87,11 @@ var fileDescriptor_d16558b72a810826 = []byte{ 0x28, 0x31, 0x17, 0x6a, 0xac, 0x92, 0x1f, 0x17, 0x8f, 0x3b, 0xc4, 0x9e, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0x21, 0x3b, 0x2e, 0x36, 0x88, 0xbc, 0x04, 0xa3, 0x02, 0xa3, 0x06, 0xb7, 0x91, 0x82, 0x1e, 0x2e, 0x7b, 0xf5, 0x02, 0xc0, 0xea, 0x9c, 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0x82, 0xea, 0x72, - 0xf2, 0x3b, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, - 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0x93, 0xf4, 0xcc, 0x92, + 0x0a, 0x3c, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, + 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0xf3, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0xa8, 0x99, 0xba, 0xf9, 0x45, 0xe9, 0x30, 0xb6, - 0x7e, 0x05, 0x9a, 0x4b, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xce, 0x34, 0x06, 0x04, - 0x00, 0x00, 0xff, 0xff, 0xc0, 0xc8, 0x84, 0x5c, 0x27, 0x01, 0x00, 0x00, + 0x7e, 0x99, 0x91, 0x7e, 0x05, 0x9a, 0x63, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x2e, + 0x35, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xe4, 0x2f, 0x1b, 0xa6, 0x2a, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/interchaintxs/types/genesis_test.go b/x/interchaintxs/types/genesis_test.go index 1cad4fb15..a61a307a8 100644 --- a/x/interchaintxs/types/genesis_test.go +++ b/x/interchaintxs/types/genesis_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) func TestGenesisState_Validate(t *testing.T) { diff --git a/x/interchaintxs/types/params.go b/x/interchaintxs/types/params.go index 8a12684df..2489e8aeb 100644 --- a/x/interchaintxs/types/params.go +++ b/x/interchaintxs/types/params.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/neutron-org/neutron/app/params" + "github.com/neutron-org/neutron/v2/app/params" "gopkg.in/yaml.v2" ) diff --git a/x/interchaintxs/types/params.pb.go b/x/interchaintxs/types/params.pb.go index 127cad03c..d351278ba 100644 --- a/x/interchaintxs/types/params.pb.go +++ b/x/interchaintxs/types/params.pb.go @@ -88,25 +88,26 @@ func init() { } var fileDescriptor_52b0ced89d3fa9c6 = []byte{ - // 288 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x90, 0xb1, 0x4a, 0x33, 0x41, - 0x14, 0x85, 0x77, 0xfe, 0x3f, 0xa4, 0xd8, 0x58, 0x05, 0x91, 0x98, 0x62, 0x12, 0x04, 0x21, 0x8d, - 0x33, 0xac, 0x5a, 0xa5, 0x8c, 0x60, 0x17, 0x91, 0x68, 0x65, 0xb3, 0xcc, 0x2e, 0xd7, 0xc9, 0x14, - 0x33, 0x13, 0xe6, 0xce, 0x2e, 0xe3, 0x4b, 0x88, 0xa5, 0xa5, 0x8f, 0x93, 0x32, 0xa5, 0x95, 0xc8, - 0xee, 0x8b, 0x48, 0x76, 0x37, 0x85, 0x76, 0x07, 0xce, 0x77, 0xf9, 0xb8, 0x27, 0x3e, 0x37, 0x50, - 0x78, 0x67, 0x0d, 0x57, 0xc6, 0x83, 0xcb, 0xd7, 0x42, 0x19, 0x1f, 0x90, 0x97, 0x09, 0xdf, 0x08, - 0x27, 0x34, 0xb2, 0x8d, 0xb3, 0xde, 0x0e, 0x47, 0x1d, 0xc6, 0x7e, 0x61, 0xac, 0x4c, 0xc6, 0xc7, - 0xd2, 0x4a, 0xdb, 0x40, 0x7c, 0x9f, 0x5a, 0x7e, 0x4c, 0x73, 0x8b, 0xda, 0x22, 0xcf, 0x04, 0x02, - 0x2f, 0x93, 0x0c, 0xbc, 0x48, 0x78, 0x6e, 0x95, 0x69, 0xfb, 0xb3, 0x57, 0x12, 0xf7, 0xef, 0x1b, - 0xc1, 0x70, 0x1e, 0x8f, 0x35, 0xca, 0x14, 0x8b, 0x4c, 0x2b, 0x9f, 0xfa, 0x90, 0x6a, 0x11, 0x52, - 0x0d, 0x88, 0x42, 0x02, 0x8e, 0xc8, 0x94, 0xcc, 0x7a, 0xab, 0x13, 0x8d, 0xf2, 0xa1, 0x01, 0x1e, - 0xc3, 0x52, 0x84, 0x65, 0xd7, 0x0e, 0x17, 0xf1, 0x91, 0x03, 0xa9, 0xd0, 0x83, 0x4b, 0x9f, 0x01, - 0x46, 0xff, 0xa6, 0xff, 0x67, 0x83, 0xcb, 0x53, 0xd6, 0xda, 0xd9, 0xde, 0xce, 0x3a, 0x3b, 0xbb, - 0xb1, 0xca, 0x2c, 0x7a, 0xdb, 0xaf, 0x49, 0xb4, 0x1a, 0x1c, 0x8e, 0x6e, 0x01, 0xe6, 0xbd, 0xf7, - 0x8f, 0x49, 0xb4, 0xb8, 0xdb, 0x56, 0x94, 0xec, 0x2a, 0x4a, 0xbe, 0x2b, 0x4a, 0xde, 0x6a, 0x1a, - 0xed, 0x6a, 0x1a, 0x7d, 0xd6, 0x34, 0x7a, 0xba, 0x96, 0xca, 0xaf, 0x8b, 0x8c, 0xe5, 0x56, 0xf3, - 0x6e, 0x85, 0x0b, 0xeb, 0xe4, 0x21, 0xf3, 0xf0, 0x67, 0x3a, 0xff, 0xb2, 0x01, 0xcc, 0xfa, 0xcd, - 0x9f, 0x57, 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xc1, 0xcc, 0x9a, 0x6c, 0x60, 0x01, 0x00, 0x00, + // 289 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x90, 0x31, 0x4b, 0x03, 0x31, + 0x18, 0x86, 0x2f, 0x5a, 0x3a, 0x5c, 0x9d, 0x8a, 0x48, 0xed, 0x90, 0x16, 0x41, 0xe8, 0x62, 0xc2, + 0xd5, 0x41, 0xe8, 0x58, 0xc1, 0xad, 0xa0, 0xd5, 0xc9, 0xe5, 0xc8, 0x1d, 0x9f, 0x69, 0x86, 0x24, + 0x25, 0x5f, 0x7a, 0xc4, 0x3f, 0x21, 0x8e, 0x8e, 0xfe, 0x9c, 0x8e, 0x1d, 0x9d, 0x44, 0xee, 0xfe, + 0x88, 0xf4, 0xee, 0x3a, 0xe8, 0xf6, 0xc2, 0xfb, 0x7c, 0x3c, 0x7c, 0x6f, 0x7c, 0x69, 0x60, 0xe3, + 0x9d, 0x35, 0x5c, 0x19, 0x0f, 0x2e, 0x5f, 0x09, 0x65, 0x7c, 0x40, 0x5e, 0x24, 0x7c, 0x2d, 0x9c, + 0xd0, 0xc8, 0xd6, 0xce, 0x7a, 0xdb, 0x1f, 0xb4, 0x18, 0xfb, 0x83, 0xb1, 0x22, 0x19, 0x9e, 0x4a, + 0x2b, 0x6d, 0x0d, 0xf1, 0x7d, 0x6a, 0xf8, 0x21, 0xcd, 0x2d, 0x6a, 0x8b, 0x3c, 0x13, 0x08, 0xbc, + 0x48, 0x32, 0xf0, 0x22, 0xe1, 0xb9, 0x55, 0xa6, 0xe9, 0x2f, 0xde, 0x48, 0xdc, 0xbd, 0xaf, 0x05, + 0xfd, 0x59, 0x3c, 0xd4, 0x28, 0x53, 0xdc, 0x64, 0x5a, 0xf9, 0xd4, 0x87, 0x54, 0x8b, 0x90, 0x6a, + 0x40, 0x14, 0x12, 0x70, 0x40, 0xc6, 0x64, 0xd2, 0x59, 0x9e, 0x69, 0x94, 0x8f, 0x35, 0xf0, 0x14, + 0x16, 0x22, 0x2c, 0xda, 0xb6, 0x3f, 0x8f, 0x4f, 0x1c, 0x48, 0x85, 0x1e, 0x5c, 0xfa, 0x02, 0x30, + 0x38, 0x1a, 0x1f, 0x4f, 0x7a, 0xd3, 0x73, 0xd6, 0xd8, 0xd9, 0xde, 0xce, 0x5a, 0x3b, 0xbb, 0xb5, + 0xca, 0xcc, 0x3b, 0xdb, 0xef, 0x51, 0xb4, 0xec, 0x1d, 0x8e, 0xee, 0x00, 0x66, 0x9d, 0x8f, 0xcf, + 0x51, 0x34, 0x7f, 0xd8, 0x96, 0x94, 0xec, 0x4a, 0x4a, 0x7e, 0x4a, 0x4a, 0xde, 0x2b, 0x1a, 0xed, + 0x2a, 0x1a, 0x7d, 0x55, 0x34, 0x7a, 0xbe, 0x91, 0xca, 0xaf, 0x36, 0x19, 0xcb, 0xad, 0xe6, 0xed, + 0x0a, 0x57, 0xd6, 0xc9, 0x43, 0xe6, 0xc5, 0x94, 0x87, 0x7f, 0xeb, 0xf9, 0xd7, 0x35, 0x60, 0xd6, + 0xad, 0x5f, 0xbd, 0xfe, 0x0d, 0x00, 0x00, 0xff, 0xff, 0x84, 0xbd, 0xba, 0x39, 0x63, 0x01, 0x00, + 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/interchaintxs/types/query.pb.go b/x/interchaintxs/types/query.pb.go index 71cf17a5c..2e00e57de 100644 --- a/x/interchaintxs/types/query.pb.go +++ b/x/interchaintxs/types/query.pb.go @@ -217,38 +217,38 @@ func init() { } var fileDescriptor_6130c5f6c54e2428 = []byte{ - // 482 bytes of a gzipped FileDescriptorProto + // 484 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x53, 0x4f, 0x6b, 0x13, 0x41, 0x14, 0xdf, 0x4d, 0x35, 0xe8, 0xa8, 0x97, 0x69, 0x85, 0x65, 0xd1, 0x4d, 0x59, 0x1b, 0x10, 0xb1, - 0x3b, 0x24, 0x7a, 0x12, 0xa9, 0xb4, 0xb7, 0x5c, 0x44, 0x03, 0x5e, 0xbc, 0x84, 0xc9, 0xee, 0xb0, - 0x1d, 0x34, 0xf3, 0x36, 0x3b, 0xb3, 0xb1, 0x25, 0xe4, 0xe2, 0xc9, 0x83, 0x88, 0xe0, 0x17, 0xe8, - 0xcd, 0x9b, 0x9f, 0xa3, 0xc7, 0x82, 0x17, 0x4f, 0x22, 0x89, 0x07, 0x3f, 0x86, 0xec, 0xcc, 0xb4, - 0x65, 0x6b, 0x96, 0x48, 0x6f, 0xcb, 0xdb, 0xdf, 0xfb, 0xfd, 0x79, 0xef, 0x0d, 0xda, 0x12, 0xac, - 0x50, 0x39, 0x08, 0xc2, 0x85, 0x62, 0x79, 0xbc, 0x4f, 0xb9, 0x50, 0x07, 0x92, 0x4c, 0x3a, 0x64, - 0x5c, 0xb0, 0xfc, 0x30, 0xca, 0x72, 0x50, 0x80, 0x3d, 0x8b, 0x8a, 0x2a, 0xa8, 0x68, 0xd2, 0xf1, - 0x37, 0x52, 0x48, 0x41, 0x83, 0x48, 0xf9, 0x65, 0xf0, 0xfe, 0x9d, 0x14, 0x20, 0x7d, 0xcb, 0x08, - 0xcd, 0x38, 0xa1, 0x42, 0x80, 0xa2, 0x8a, 0x83, 0x90, 0xf6, 0xef, 0x83, 0x18, 0xe4, 0x08, 0x24, - 0x19, 0x52, 0xc9, 0x8c, 0x0c, 0x99, 0x74, 0x86, 0x4c, 0xd1, 0x0e, 0xc9, 0x68, 0xca, 0x85, 0x06, - 0x5b, 0x6c, 0xbb, 0xd6, 0x5f, 0x46, 0x73, 0x3a, 0xb2, 0x94, 0xe1, 0x06, 0xc2, 0x2f, 0x4b, 0xa2, - 0x17, 0xba, 0xd8, 0x67, 0xe3, 0x82, 0x49, 0x15, 0xbe, 0x42, 0xeb, 0x95, 0xaa, 0xcc, 0x40, 0x48, - 0x86, 0x77, 0x50, 0xd3, 0x34, 0x7b, 0xee, 0xa6, 0x7b, 0xff, 0x46, 0x77, 0x33, 0xaa, 0x8b, 0x17, - 0x99, 0xce, 0xbd, 0x2b, 0xc7, 0x3f, 0x5b, 0x4e, 0xdf, 0x76, 0x85, 0xdf, 0x5c, 0xb4, 0xa5, 0x79, - 0x7b, 0x67, 0xf0, 0xdd, 0x38, 0x86, 0x42, 0xa8, 0xdd, 0x24, 0xc9, 0x99, 0x3c, 0xd5, 0xc7, 0xf7, - 0xd0, 0x2d, 0x78, 0x27, 0x58, 0x3e, 0xa0, 0xa6, 0xae, 0xf5, 0xae, 0xf7, 0x6f, 0xea, 0xa2, 0xc5, - 0xe2, 0x2e, 0xba, 0x7d, 0x2e, 0x3b, 0xa0, 0x86, 0x68, 0xc0, 0x13, 0xaf, 0xa1, 0xc1, 0xeb, 0xfc, - 0xa2, 0x48, 0x2f, 0x29, 0x89, 0x63, 0x10, 0x82, 0xc5, 0xe5, 0xa4, 0x4a, 0xec, 0x9a, 0x21, 0x3e, - 0x2f, 0xf6, 0x92, 0x27, 0xd7, 0x3e, 0x1c, 0xb5, 0x9c, 0x3f, 0x47, 0x2d, 0x27, 0x64, 0xa8, 0xbd, - 0xc2, 0xaf, 0x9d, 0xcc, 0x53, 0xe4, 0x2f, 0xf1, 0x52, 0x75, 0xef, 0xf1, 0x1a, 0x96, 0xee, 0xd7, - 0x35, 0x74, 0x55, 0xeb, 0xe0, 0x8f, 0x2e, 0x6a, 0x9a, 0xd1, 0xe1, 0x87, 0xf5, 0xc3, 0xfd, 0x77, + 0x3b, 0x24, 0x1e, 0x04, 0x91, 0x4a, 0x7b, 0xcb, 0xcd, 0x06, 0xbc, 0x78, 0x09, 0x93, 0xdd, 0x61, + 0x3b, 0x68, 0xe6, 0x6d, 0x76, 0x66, 0x63, 0x4b, 0xc8, 0xc5, 0x93, 0x07, 0x11, 0xc1, 0x2f, 0xd0, + 0x9b, 0x37, 0x3f, 0x47, 0x8f, 0x05, 0x2f, 0x9e, 0x44, 0x12, 0x0f, 0x7e, 0x0c, 0xd9, 0x99, 0x69, + 0xcb, 0xd6, 0x2c, 0x91, 0xde, 0x96, 0xb7, 0xbf, 0xf7, 0xfb, 0xf3, 0xde, 0x1b, 0xb4, 0x25, 0x58, + 0xa1, 0x72, 0x10, 0x84, 0x0b, 0xc5, 0xf2, 0xf8, 0x80, 0x72, 0xa1, 0x0e, 0x25, 0x99, 0x74, 0xc8, + 0xb8, 0x60, 0xf9, 0x51, 0x94, 0xe5, 0xa0, 0x00, 0x7b, 0x16, 0x15, 0x55, 0x50, 0xd1, 0xa4, 0xe3, + 0x6f, 0xa4, 0x90, 0x82, 0x06, 0x91, 0xf2, 0xcb, 0xe0, 0xfd, 0x7b, 0x29, 0x40, 0xfa, 0x96, 0x11, + 0x9a, 0x71, 0x42, 0x85, 0x00, 0x45, 0x15, 0x07, 0x21, 0xed, 0xdf, 0x47, 0x31, 0xc8, 0x11, 0x48, + 0x32, 0xa4, 0x92, 0x19, 0x19, 0x32, 0xe9, 0x0c, 0x99, 0xa2, 0x1d, 0x92, 0xd1, 0x94, 0x0b, 0x0d, + 0xb6, 0xd8, 0x76, 0xad, 0xbf, 0x8c, 0xe6, 0x74, 0x64, 0x29, 0xc3, 0x0d, 0x84, 0xf7, 0x4b, 0xa2, + 0x97, 0xba, 0xd8, 0x67, 0xe3, 0x82, 0x49, 0x15, 0xbe, 0x42, 0xeb, 0x95, 0xaa, 0xcc, 0x40, 0x48, + 0x86, 0x77, 0x50, 0xd3, 0x34, 0x7b, 0xee, 0xa6, 0xfb, 0xf0, 0x56, 0x77, 0x33, 0xaa, 0x8b, 0x17, + 0x99, 0xce, 0xbd, 0x6b, 0x27, 0x3f, 0x5b, 0x4e, 0xdf, 0x76, 0x85, 0xdf, 0x5c, 0xb4, 0xa5, 0x79, + 0x7b, 0xe7, 0xf0, 0xdd, 0x38, 0x86, 0x42, 0xa8, 0xdd, 0x24, 0xc9, 0x99, 0x3c, 0xd3, 0xc7, 0x0f, + 0xd0, 0x1d, 0x78, 0x27, 0x58, 0x3e, 0xa0, 0xa6, 0xae, 0xf5, 0x6e, 0xf6, 0x6f, 0xeb, 0xa2, 0xc5, + 0xe2, 0x2e, 0xba, 0x7b, 0x21, 0x3b, 0xa0, 0x86, 0x68, 0xc0, 0x13, 0xaf, 0xa1, 0xc1, 0xeb, 0xfc, + 0xb2, 0x48, 0x2f, 0x29, 0x89, 0x63, 0x10, 0x82, 0xc5, 0xe5, 0xa4, 0x4a, 0xec, 0x9a, 0x21, 0xbe, + 0x28, 0xf6, 0x92, 0x67, 0x37, 0x3e, 0x1c, 0xb7, 0x9c, 0x3f, 0xc7, 0x2d, 0x27, 0x64, 0xa8, 0xbd, + 0xc2, 0xaf, 0x9d, 0xcc, 0x73, 0xe4, 0x2f, 0xf1, 0x52, 0x75, 0xef, 0xf1, 0x1a, 0x96, 0xee, 0xd7, + 0x35, 0x74, 0x5d, 0xeb, 0xe0, 0x8f, 0x2e, 0x6a, 0x9a, 0xd1, 0xe1, 0xc7, 0xf5, 0xc3, 0xfd, 0x77, 0x63, 0xfe, 0xf6, 0x7f, 0xa2, 0x8d, 0xdf, 0xb0, 0xfd, 0xfe, 0xfb, 0xef, 0x2f, 0x8d, 0x16, 0xbe, - 0x4b, 0x96, 0x9f, 0x89, 0x59, 0x18, 0xfe, 0xd4, 0x40, 0x5e, 0x5d, 0x76, 0xbc, 0xb3, 0x42, 0x72, - 0xc5, 0x92, 0xfd, 0x67, 0x97, 0xee, 0xb7, 0x21, 0xc6, 0x3a, 0xc4, 0x1b, 0xcc, 0x6b, 0x42, 0x4c, + 0x4f, 0x96, 0x9f, 0x89, 0x59, 0x18, 0xfe, 0xd4, 0x40, 0x5e, 0x5d, 0x76, 0xbc, 0xb3, 0x42, 0x72, + 0xc5, 0x92, 0xfd, 0x17, 0x57, 0xee, 0xb7, 0x21, 0xc6, 0x3a, 0xc4, 0x1b, 0xcc, 0x6b, 0x42, 0x4c, 0x2b, 0x37, 0x34, 0x23, 0xd3, 0xa5, 0xe7, 0x32, 0x23, 0xd3, 0xca, 0x49, 0xcc, 0x48, 0xfd, 0x26, - 0xf7, 0x9e, 0x1f, 0xcf, 0x03, 0xf7, 0x64, 0x1e, 0xb8, 0xbf, 0xe6, 0x81, 0xfb, 0x79, 0x11, 0x38, - 0x27, 0x8b, 0xc0, 0xf9, 0xb1, 0x08, 0x9c, 0xd7, 0x8f, 0x53, 0xae, 0xf6, 0x8b, 0x61, 0x14, 0xc3, - 0xe8, 0xd4, 0xce, 0x36, 0xe4, 0xe9, 0x99, 0xb5, 0x83, 0x0b, 0xe6, 0xd4, 0x61, 0xc6, 0xe4, 0xb0, - 0xa9, 0x5f, 0xe1, 0xa3, 0xbf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xad, 0xfd, 0x25, 0x21, 0x4e, 0x04, - 0x00, 0x00, + 0xf7, 0xf6, 0x4f, 0xe6, 0x81, 0x7b, 0x3a, 0x0f, 0xdc, 0x5f, 0xf3, 0xc0, 0xfd, 0xbc, 0x08, 0x9c, + 0xd3, 0x45, 0xe0, 0xfc, 0x58, 0x04, 0xce, 0xeb, 0xa7, 0x29, 0x57, 0x07, 0xc5, 0x30, 0x8a, 0x61, + 0x74, 0x66, 0x67, 0x1b, 0xf2, 0xf4, 0xdc, 0xda, 0xa4, 0x4b, 0x0e, 0x2f, 0xf9, 0x53, 0x47, 0x19, + 0x93, 0xc3, 0xa6, 0x7e, 0x88, 0x4f, 0xfe, 0x06, 0x00, 0x00, 0xff, 0xff, 0x22, 0x26, 0xf4, 0xe5, + 0x51, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/interchaintxs/types/tx.pb.go b/x/interchaintxs/types/tx.pb.go index 23056bdb5..9a443793a 100644 --- a/x/interchaintxs/types/tx.pb.go +++ b/x/interchaintxs/types/tx.pb.go @@ -24,7 +24,7 @@ import ( codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" - types2 "github.com/neutron-org/neutron/x/feerefunder/types" + types2 "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) // Reference imports to suppress errors if they are not otherwise used. @@ -332,58 +332,58 @@ func init() { func init() { proto.RegisterFile("neutron/interchaintxs/v1/tx.proto", fileDescriptor_50f087790e59c806) } var fileDescriptor_50f087790e59c806 = []byte{ - // 802 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x55, 0xbf, 0x6b, 0x1b, 0x4b, - 0x10, 0xd6, 0x49, 0x7a, 0xfe, 0xb1, 0xd2, 0xe3, 0xf1, 0xce, 0x32, 0x3e, 0x09, 0x5b, 0x92, 0xef, - 0x3d, 0x07, 0xc5, 0xa0, 0x3b, 0x4b, 0x09, 0x2e, 0x0c, 0x09, 0x58, 0x06, 0x83, 0x0a, 0x05, 0x73, - 0x76, 0x9a, 0x34, 0x62, 0x75, 0xb7, 0x3a, 0x1d, 0xd1, 0xed, 0x2a, 0xb7, 0x7b, 0x46, 0x6a, 0x53, - 0x85, 0x54, 0x69, 0x52, 0x06, 0x5c, 0x86, 0x54, 0x2e, 0xf2, 0x07, 0xa4, 0x74, 0x69, 0x52, 0xa5, - 0x72, 0x82, 0x5d, 0x38, 0x5d, 0xc0, 0x7f, 0x41, 0xb8, 0xbd, 0x3d, 0xeb, 0x07, 0x96, 0x30, 0x69, - 0xa4, 0x9d, 0x99, 0x6f, 0xbf, 0x99, 0xfd, 0x66, 0x76, 0x0f, 0xac, 0x63, 0xe4, 0x33, 0x8f, 0x60, - 0xdd, 0xc1, 0x0c, 0x79, 0x66, 0x07, 0x3a, 0x98, 0xf5, 0xa9, 0x7e, 0x5c, 0xd1, 0x59, 0x5f, 0xeb, - 0x79, 0x84, 0x11, 0x59, 0x11, 0x10, 0x6d, 0x0c, 0xa2, 0x1d, 0x57, 0x72, 0x59, 0x93, 0x50, 0x97, - 0xd0, 0x26, 0xc7, 0xe9, 0xa1, 0x11, 0x6e, 0xca, 0xe5, 0x43, 0x4b, 0x6f, 0x41, 0x8a, 0xf4, 0xe3, - 0x4a, 0x0b, 0x31, 0x58, 0xd1, 0x4d, 0xe2, 0x60, 0x11, 0xdf, 0x98, 0x9a, 0xb7, 0x07, 0x3d, 0xe8, - 0x46, 0x34, 0x19, 0x9b, 0xd8, 0x24, 0xa4, 0x0f, 0x56, 0xc2, 0xbb, 0x6c, 0x13, 0x62, 0x77, 0x91, - 0x0e, 0x7b, 0x8e, 0xde, 0x61, 0xac, 0x27, 0xdc, 0xab, 0x23, 0x6e, 0x88, 0x31, 0x61, 0x90, 0x39, - 0x04, 0x47, 0x54, 0x59, 0x11, 0xe5, 0x56, 0xcb, 0x6f, 0xeb, 0x10, 0x0f, 0x44, 0x68, 0x2d, 0x2a, - 0xa6, 0x8d, 0x90, 0x87, 0xda, 0x3e, 0xb6, 0x90, 0x17, 0xac, 0x45, 0x78, 0x45, 0x9c, 0xc5, 0xa5, - 0x76, 0x50, 0xa0, 0x4b, 0x6d, 0x11, 0xf8, 0x17, 0xba, 0x0e, 0x26, 0x3a, 0xff, 0x0d, 0x5d, 0xea, - 0x79, 0x1c, 0xac, 0x36, 0xa8, 0x6d, 0x20, 0xdb, 0xa1, 0x0c, 0x79, 0xf5, 0xdb, 0xd3, 0xed, 0x9a, - 0x26, 0xf1, 0x31, 0x93, 0xd7, 0x41, 0xba, 0xed, 0x11, 0xb7, 0x09, 0x2d, 0xcb, 0x43, 0x94, 0x2a, - 0x52, 0x51, 0x2a, 0x2d, 0x1a, 0xa9, 0xc0, 0xb7, 0x1b, 0xba, 0xe4, 0x27, 0xe0, 0x6f, 0x93, 0x60, - 0x8c, 0xcc, 0xa0, 0xfc, 0xa6, 0x63, 0x29, 0xf1, 0x00, 0x53, 0x53, 0x6e, 0x2e, 0x0a, 0x99, 0x01, - 0x74, 0xbb, 0x3b, 0xea, 0x58, 0x58, 0x35, 0xd2, 0x43, 0xbb, 0x6e, 0xc9, 0x47, 0x60, 0x79, 0x28, - 0x6a, 0x13, 0x86, 0x79, 0x03, 0x9a, 0x04, 0xa7, 0x29, 0xde, 0x5c, 0x14, 0x56, 0x43, 0x9a, 0x3b, - 0x61, 0xaa, 0xb1, 0xe4, 0x4c, 0x56, 0x5d, 0xb7, 0x64, 0x0c, 0xd2, 0x9e, 0x38, 0x54, 0xb3, 0x8d, - 0x90, 0x92, 0x2c, 0x26, 0x4a, 0xa9, 0x6a, 0x56, 0x13, 0x5d, 0x0f, 0xfa, 0xac, 0x89, 0x3e, 0x6b, - 0x7b, 0xc4, 0xc1, 0xb5, 0xad, 0xb3, 0x8b, 0x42, 0xec, 0xd3, 0xf7, 0x42, 0xc9, 0x76, 0x58, 0xc7, - 0x6f, 0x69, 0x26, 0x71, 0xc5, 0x88, 0x88, 0xbf, 0x32, 0xb5, 0x5e, 0xea, 0x6c, 0xd0, 0x43, 0x94, - 0x6f, 0xa0, 0x46, 0x2a, 0x4a, 0xb0, 0x8f, 0xd0, 0xce, 0xc2, 0x9b, 0x93, 0x42, 0xec, 0xe7, 0x49, - 0x21, 0xa6, 0x3e, 0x00, 0xff, 0xcf, 0x52, 0xd4, 0x40, 0xb4, 0x47, 0x30, 0x45, 0xea, 0x87, 0x38, - 0x48, 0x35, 0xa8, 0x7d, 0xe8, 0xb7, 0x5c, 0x87, 0x1d, 0xf5, 0xef, 0xa3, 0x74, 0x75, 0x9a, 0x54, - 0x5c, 0xf1, 0xbb, 0x85, 0xf8, 0x6f, 0xb2, 0x3b, 0x5c, 0xd6, 0x89, 0x1e, 0x94, 0x40, 0xd2, 0xa5, - 0x36, 0x15, 0x2a, 0x65, 0xb4, 0x70, 0xf6, 0xb4, 0x68, 0xf6, 0xb4, 0x5d, 0x3c, 0x30, 0x38, 0x42, - 0x96, 0x41, 0xd2, 0x45, 0x2e, 0x51, 0xfe, 0xe2, 0x2c, 0x7c, 0x2d, 0x2b, 0x60, 0x9e, 0x39, 0x2e, - 0x22, 0x3e, 0x53, 0xe6, 0x8a, 0x52, 0x29, 0x69, 0x44, 0xa6, 0xbc, 0x05, 0x12, 0x81, 0xf8, 0xf3, - 0x45, 0xa9, 0x94, 0xaa, 0x2a, 0x5a, 0x74, 0x33, 0x47, 0xe6, 0x56, 0xdb, 0x47, 0xa8, 0x96, 0x0c, - 0xb4, 0x37, 0x02, 0xe8, 0x88, 0x8e, 0x07, 0x60, 0x69, 0x44, 0x9e, 0x48, 0x36, 0xb9, 0x00, 0x52, - 0x14, 0xbd, 0xf2, 0x11, 0x36, 0x51, 0x70, 0x1a, 0x89, 0x27, 0x04, 0x91, 0xab, 0x6e, 0x05, 0xd5, - 0x98, 0x1d, 0x88, 0x31, 0xea, 0x0a, 0x59, 0x22, 0x53, 0xfd, 0x22, 0x81, 0x7f, 0x1a, 0xd4, 0x7e, - 0xde, 0xb3, 0x20, 0x43, 0x07, 0xfc, 0xde, 0xca, 0xdb, 0x60, 0x11, 0xfa, 0xac, 0x43, 0x3c, 0x87, - 0x0d, 0x42, 0xc9, 0x6b, 0xca, 0xd7, 0xcf, 0xe5, 0x8c, 0x98, 0x13, 0xa1, 0xfc, 0x21, 0xf3, 0x1c, - 0x6c, 0x1b, 0x43, 0xa8, 0xbc, 0x07, 0xe6, 0xc2, 0x9b, 0xcf, 0x93, 0xa4, 0xaa, 0x45, 0x6d, 0xda, - 0xb3, 0xa3, 0x85, 0x99, 0x6a, 0x8b, 0xc1, 0x21, 0x3f, 0x5e, 0x9f, 0x6e, 0x4a, 0x86, 0xd8, 0xba, - 0xb3, 0xf5, 0xfa, 0xfa, 0x74, 0x73, 0x48, 0xfa, 0xf6, 0xfa, 0x74, 0x73, 0x6d, 0xfc, 0x81, 0x99, - 0x28, 0x57, 0xcd, 0x82, 0x95, 0x09, 0x57, 0x24, 0x4c, 0xf5, 0x57, 0x1c, 0x24, 0x1a, 0xd4, 0x96, - 0xdf, 0x4b, 0x20, 0x3b, 0xfd, 0x3e, 0x6f, 0x4f, 0xaf, 0x73, 0xd6, 0xd4, 0xe6, 0x9e, 0xfe, 0xd9, - 0xbe, 0xdb, 0x69, 0x8f, 0xc9, 0x2d, 0xb0, 0x70, 0x3b, 0xeb, 0x1b, 0x33, 0xd9, 0x22, 0x58, 0xae, - 0x7c, 0x2f, 0xd8, 0x48, 0x8e, 0x2e, 0x48, 0x8f, 0x75, 0xf7, 0xe1, 0x4c, 0x82, 0x51, 0x68, 0xae, - 0x72, 0x6f, 0x68, 0x94, 0xaf, 0xf6, 0xec, 0xec, 0x32, 0x2f, 0x9d, 0x5f, 0xe6, 0xa5, 0x1f, 0x97, - 0x79, 0xe9, 0xdd, 0x55, 0x3e, 0x76, 0x7e, 0x95, 0x8f, 0x7d, 0xbb, 0xca, 0xc7, 0x5e, 0x3c, 0x1e, - 0x79, 0x44, 0x04, 0x6d, 0x99, 0x78, 0x76, 0xb4, 0xd6, 0xfb, 0x13, 0xdf, 0x11, 0xfe, 0xac, 0xb4, - 0xe6, 0xf8, 0x7d, 0x7b, 0xf4, 0x3b, 0x00, 0x00, 0xff, 0xff, 0xe0, 0xd3, 0x11, 0x00, 0xe5, 0x06, - 0x00, 0x00, + // 806 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x55, 0xbf, 0x6b, 0x1b, 0x49, + 0x14, 0xd6, 0x4a, 0x3a, 0xff, 0x18, 0xe9, 0x38, 0x6e, 0x2d, 0xe3, 0x95, 0xb0, 0x25, 0x79, 0xef, + 0x7c, 0xe8, 0x0c, 0xda, 0xb5, 0x74, 0xe0, 0x03, 0x43, 0x02, 0x96, 0xc1, 0xa0, 0x42, 0xe0, 0xac, + 0x9d, 0x26, 0x8d, 0x18, 0xed, 0x8e, 0x56, 0x4b, 0xb4, 0x33, 0xca, 0xce, 0xac, 0x90, 0xda, 0x54, + 0x21, 0x55, 0x9a, 0x94, 0x01, 0x97, 0x21, 0x95, 0x8b, 0xfc, 0x01, 0x29, 0x5d, 0x9a, 0x54, 0xa9, + 0x9c, 0x60, 0x17, 0x4e, 0x17, 0xf0, 0x5f, 0x10, 0x76, 0x76, 0xd6, 0xfa, 0x81, 0x25, 0x4c, 0x1a, + 0x69, 0xde, 0x7b, 0xdf, 0x7c, 0xef, 0xcd, 0xf7, 0xde, 0xcc, 0x82, 0x4d, 0x8c, 0x7c, 0xe6, 0x11, + 0xac, 0x3b, 0x98, 0x21, 0xcf, 0xec, 0x40, 0x07, 0xb3, 0x01, 0xd5, 0xfb, 0x15, 0x9d, 0x0d, 0xb4, + 0x9e, 0x47, 0x18, 0x91, 0x15, 0x01, 0xd1, 0x26, 0x20, 0x5a, 0xbf, 0x92, 0xcb, 0x9a, 0x84, 0xba, + 0x84, 0x36, 0x39, 0x4e, 0x0f, 0x8d, 0x70, 0x53, 0x2e, 0x1f, 0x5a, 0x7a, 0x0b, 0x52, 0xa4, 0xf7, + 0x2b, 0x2d, 0xc4, 0x60, 0x45, 0x37, 0x89, 0x83, 0x45, 0x7c, 0x6b, 0x66, 0xde, 0x1e, 0xf4, 0xa0, + 0x1b, 0xd1, 0x64, 0x6c, 0x62, 0x93, 0x90, 0x3e, 0x58, 0x09, 0xef, 0xaa, 0x4d, 0x88, 0xdd, 0x45, + 0x3a, 0xec, 0x39, 0x7a, 0x87, 0xb1, 0x9e, 0x70, 0xaf, 0x8f, 0xb9, 0x21, 0xc6, 0x84, 0x41, 0xe6, + 0x10, 0x1c, 0x51, 0x65, 0x45, 0x94, 0x5b, 0x2d, 0xbf, 0xad, 0x43, 0x3c, 0x14, 0xa1, 0x8d, 0xa8, + 0x98, 0x36, 0x42, 0x1e, 0x6a, 0xfb, 0xd8, 0x42, 0x5e, 0xb0, 0x16, 0xe1, 0x35, 0x71, 0x16, 0x97, + 0xda, 0x41, 0x81, 0x2e, 0xb5, 0x45, 0xe0, 0x4f, 0xe8, 0x3a, 0x98, 0xe8, 0xfc, 0x37, 0x74, 0xa9, + 0x17, 0x71, 0xb0, 0xde, 0xa0, 0xb6, 0x81, 0x6c, 0x87, 0x32, 0xe4, 0xd5, 0xef, 0x4e, 0xb7, 0x6f, + 0x9a, 0xc4, 0xc7, 0x4c, 0xde, 0x04, 0xe9, 0xb6, 0x47, 0xdc, 0x26, 0xb4, 0x2c, 0x0f, 0x51, 0xaa, + 0x48, 0x45, 0xa9, 0xb4, 0x6c, 0xa4, 0x02, 0xdf, 0x7e, 0xe8, 0x92, 0x1f, 0x81, 0xdf, 0x4d, 0x82, + 0x31, 0x32, 0x83, 0xf2, 0x9b, 0x8e, 0xa5, 0xc4, 0x03, 0x4c, 0x4d, 0xb9, 0xbd, 0x2c, 0x64, 0x86, + 0xd0, 0xed, 0xee, 0xa9, 0x13, 0x61, 0xd5, 0x48, 0x8f, 0xec, 0xba, 0x25, 0x9f, 0x80, 0xd5, 0x91, + 0xa8, 0x4d, 0x18, 0xe6, 0x0d, 0x68, 0x12, 0x9c, 0xa6, 0x78, 0x7b, 0x59, 0x58, 0x0f, 0x69, 0xee, + 0x85, 0xa9, 0xc6, 0x8a, 0x33, 0x5d, 0x75, 0xdd, 0x92, 0x31, 0x48, 0x7b, 0xe2, 0x50, 0xcd, 0x36, + 0x42, 0x4a, 0xb2, 0x98, 0x28, 0xa5, 0xaa, 0x59, 0x4d, 0x74, 0x3d, 0xe8, 0xb3, 0x26, 0xfa, 0xac, + 0x1d, 0x10, 0x07, 0xd7, 0x76, 0xce, 0x2f, 0x0b, 0xb1, 0x0f, 0x5f, 0x0b, 0x25, 0xdb, 0x61, 0x1d, + 0xbf, 0xa5, 0x99, 0xc4, 0x15, 0x23, 0x22, 0xfe, 0xca, 0xd4, 0x7a, 0xae, 0xb3, 0x61, 0x0f, 0x51, + 0xbe, 0x81, 0x1a, 0xa9, 0x28, 0xc1, 0x21, 0x42, 0x7b, 0x4b, 0xaf, 0x4e, 0x0b, 0xb1, 0xef, 0xa7, + 0x85, 0x98, 0xfa, 0x0f, 0xf8, 0x7b, 0x9e, 0xa2, 0x06, 0xa2, 0x3d, 0x82, 0x29, 0x52, 0xdf, 0xc5, + 0x41, 0xaa, 0x41, 0xed, 0x63, 0xbf, 0xe5, 0x3a, 0xec, 0x64, 0xf0, 0x10, 0xa5, 0xab, 0xb3, 0xa4, + 0xe2, 0x8a, 0xdf, 0x2f, 0xc4, 0x5f, 0xd3, 0xdd, 0xe1, 0xb2, 0x4e, 0xf5, 0xa0, 0x04, 0x92, 0x2e, + 0xb5, 0xa9, 0x50, 0x29, 0xa3, 0x85, 0xb3, 0xa7, 0x45, 0xb3, 0xa7, 0xed, 0xe3, 0xa1, 0xc1, 0x11, + 0xb2, 0x0c, 0x92, 0x2e, 0x72, 0x89, 0xf2, 0x1b, 0x67, 0xe1, 0x6b, 0x59, 0x01, 0x8b, 0xcc, 0x71, + 0x11, 0xf1, 0x99, 0xb2, 0x50, 0x94, 0x4a, 0x49, 0x23, 0x32, 0xe5, 0x1d, 0x90, 0x08, 0xc4, 0x5f, + 0x2c, 0x4a, 0xa5, 0x54, 0x55, 0xd1, 0xa2, 0x9b, 0x39, 0x36, 0xb7, 0xda, 0x21, 0x42, 0xb5, 0x64, + 0xa0, 0xbd, 0x11, 0x40, 0xc7, 0x74, 0x3c, 0x02, 0x2b, 0x63, 0xf2, 0x44, 0xb2, 0xc9, 0x05, 0x90, + 0xa2, 0xe8, 0x85, 0x8f, 0xb0, 0x89, 0x82, 0xd3, 0x48, 0x3c, 0x21, 0x88, 0x5c, 0x75, 0x2b, 0xa8, + 0xc6, 0xec, 0x40, 0x8c, 0x51, 0x57, 0xc8, 0x12, 0x99, 0xea, 0x27, 0x09, 0xfc, 0xd1, 0xa0, 0xf6, + 0xd3, 0x9e, 0x05, 0x19, 0x3a, 0xe2, 0xf7, 0x56, 0xde, 0x05, 0xcb, 0xd0, 0x67, 0x1d, 0xe2, 0x39, + 0x6c, 0x18, 0x4a, 0x5e, 0x53, 0x3e, 0x7f, 0x2c, 0x67, 0xc4, 0x9c, 0x08, 0xe5, 0x8f, 0x99, 0xe7, + 0x60, 0xdb, 0x18, 0x41, 0xe5, 0x03, 0xb0, 0x10, 0xde, 0x7c, 0x9e, 0x24, 0x55, 0x2d, 0x6a, 0xb3, + 0x9e, 0x1d, 0x2d, 0xcc, 0x54, 0x5b, 0x0e, 0x0e, 0xf9, 0xfe, 0xe6, 0x6c, 0x5b, 0x32, 0xc4, 0xd6, + 0xbd, 0x9d, 0x97, 0x37, 0x67, 0xdb, 0x23, 0xd2, 0xd7, 0x37, 0x67, 0xdb, 0x1b, 0x93, 0x0f, 0xcc, + 0x54, 0xb9, 0x6a, 0x16, 0xac, 0x4d, 0xb9, 0x22, 0x61, 0xaa, 0x3f, 0xe2, 0x20, 0xd1, 0xa0, 0xb6, + 0xfc, 0x56, 0x02, 0xd9, 0xd9, 0xf7, 0x79, 0x77, 0x76, 0x9d, 0xf3, 0xa6, 0x36, 0xf7, 0xf8, 0xd7, + 0xf6, 0xdd, 0x4d, 0x7b, 0x4c, 0x6e, 0x81, 0xa5, 0xbb, 0x59, 0xdf, 0x9a, 0xcb, 0x16, 0xc1, 0x72, + 0xe5, 0x07, 0xc1, 0xc6, 0x72, 0x74, 0x41, 0x7a, 0xa2, 0xbb, 0xff, 0xce, 0x25, 0x18, 0x87, 0xe6, + 0x2a, 0x0f, 0x86, 0x46, 0xf9, 0x6a, 0x4f, 0xce, 0xaf, 0xf2, 0xd2, 0xc5, 0x55, 0x5e, 0xfa, 0x76, + 0x95, 0x97, 0xde, 0x5c, 0xe7, 0x63, 0x17, 0xd7, 0xf9, 0xd8, 0x97, 0xeb, 0x7c, 0xec, 0xd9, 0xff, + 0x63, 0x8f, 0x88, 0xa0, 0x2d, 0x13, 0xcf, 0x8e, 0xd6, 0x7a, 0xbf, 0xaa, 0x0f, 0xa6, 0x3e, 0x25, + 0xfc, 0x65, 0x69, 0x2d, 0xf0, 0x2b, 0xf7, 0xdf, 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x09, 0xc5, + 0x05, 0xb7, 0xe8, 0x06, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/interchaintxs/types/tx_test.go b/x/interchaintxs/types/tx_test.go index b9e53b911..2a2418ba6 100644 --- a/x/interchaintxs/types/tx_test.go +++ b/x/interchaintxs/types/tx_test.go @@ -8,9 +8,9 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/app" - feetypes "github.com/neutron-org/neutron/x/feerefunder/types" - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/app" + feetypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) const TestAddress = "neutron1m9l358xunhhwds0568za49mzhvuxx9ux8xafx2" diff --git a/x/interchaintxs/types/types_test.go b/x/interchaintxs/types/types_test.go index bdf525fc2..b48c6758f 100644 --- a/x/interchaintxs/types/types_test.go +++ b/x/interchaintxs/types/types_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/app" - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/app" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) func TestICAOwner(t *testing.T) { diff --git a/x/tokenfactory/client/cli/query.go b/x/tokenfactory/client/cli/query.go index 929e72172..d5bcdaf46 100644 --- a/x/tokenfactory/client/cli/query.go +++ b/x/tokenfactory/client/cli/query.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/tokenfactory/client/cli/tx.go b/x/tokenfactory/client/cli/tx.go index 16d15224e..7fbf57933 100644 --- a/x/tokenfactory/client/cli/tx.go +++ b/x/tokenfactory/client/cli/tx.go @@ -11,7 +11,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" // "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) // GetTxCmd returns the transaction commands for this module diff --git a/x/tokenfactory/keeper/admins.go b/x/tokenfactory/keeper/admins.go index 243ece8c3..8a4fc7e58 100644 --- a/x/tokenfactory/keeper/admins.go +++ b/x/tokenfactory/keeper/admins.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/gogo/protobuf/proto" - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) // GetAuthorityMetadata returns the authority metadata for a specific denom diff --git a/x/tokenfactory/keeper/admins_test.go b/x/tokenfactory/keeper/admins_test.go index a001c1102..fceee2eae 100644 --- a/x/tokenfactory/keeper/admins_test.go +++ b/x/tokenfactory/keeper/admins_test.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) func (suite *KeeperTestSuite) TestAdminMsgs() { diff --git a/x/tokenfactory/keeper/bankactions.go b/x/tokenfactory/keeper/bankactions.go index 4685334be..3b29d039c 100644 --- a/x/tokenfactory/keeper/bankactions.go +++ b/x/tokenfactory/keeper/bankactions.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) func (k Keeper) mintTo(ctx sdk.Context, amount sdk.Coin, mintTo string) error { diff --git a/x/tokenfactory/keeper/before_send.go b/x/tokenfactory/keeper/before_send.go index d746ba3b2..a272acb64 100644 --- a/x/tokenfactory/keeper/before_send.go +++ b/x/tokenfactory/keeper/before_send.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" errorsmod "cosmossdk.io/errors" wasmvmtypes "github.com/CosmWasm/wasmvm/types" diff --git a/x/tokenfactory/keeper/createdenom.go b/x/tokenfactory/keeper/createdenom.go index 8123dc2ce..1f39f08bb 100644 --- a/x/tokenfactory/keeper/createdenom.go +++ b/x/tokenfactory/keeper/createdenom.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) // ConvertToBaseToken converts a fee amount in a whitelisted fee token to the base fee token amount diff --git a/x/tokenfactory/keeper/createdenom_test.go b/x/tokenfactory/keeper/createdenom_test.go index 31f86593f..6536e7f70 100644 --- a/x/tokenfactory/keeper/createdenom_test.go +++ b/x/tokenfactory/keeper/createdenom_test.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) func (suite *KeeperTestSuite) TestMsgCreateDenom() { diff --git a/x/tokenfactory/keeper/genesis.go b/x/tokenfactory/keeper/genesis.go index 9b44f2413..255e8fa3a 100644 --- a/x/tokenfactory/keeper/genesis.go +++ b/x/tokenfactory/keeper/genesis.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) // InitGenesis initializes the tokenfactory module's state from a provided genesis diff --git a/x/tokenfactory/keeper/genesis_test.go b/x/tokenfactory/keeper/genesis_test.go index 67a38e6f7..0b7454478 100644 --- a/x/tokenfactory/keeper/genesis_test.go +++ b/x/tokenfactory/keeper/genesis_test.go @@ -4,7 +4,7 @@ import ( tmproto "github.com/cometbft/cometbft/proto/tendermint/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) func (suite *KeeperTestSuite) TestGenesis() { diff --git a/x/tokenfactory/keeper/grpc_query.go b/x/tokenfactory/keeper/grpc_query.go index 30b910749..06adc8195 100644 --- a/x/tokenfactory/keeper/grpc_query.go +++ b/x/tokenfactory/keeper/grpc_query.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/tokenfactory/keeper/keeper.go b/x/tokenfactory/keeper/keeper.go index ebb88ea02..67260f887 100644 --- a/x/tokenfactory/keeper/keeper.go +++ b/x/tokenfactory/keeper/keeper.go @@ -10,7 +10,7 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) type ( diff --git a/x/tokenfactory/keeper/keeper_test.go b/x/tokenfactory/keeper/keeper_test.go index 8bd85595d..c6f0ac498 100644 --- a/x/tokenfactory/keeper/keeper_test.go +++ b/x/tokenfactory/keeper/keeper_test.go @@ -12,10 +12,10 @@ import ( sdktypes "github.com/cosmos/cosmos-sdk/types" - "github.com/neutron-org/neutron/app/params" - "github.com/neutron-org/neutron/testutil" - "github.com/neutron-org/neutron/x/tokenfactory/keeper" - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/app/params" + "github.com/neutron-org/neutron/v2/testutil" + "github.com/neutron-org/neutron/v2/x/tokenfactory/keeper" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) const ( diff --git a/x/tokenfactory/keeper/msg_server.go b/x/tokenfactory/keeper/msg_server.go index 3e85704ee..7e88df874 100644 --- a/x/tokenfactory/keeper/msg_server.go +++ b/x/tokenfactory/keeper/msg_server.go @@ -8,7 +8,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) type msgServer struct { diff --git a/x/tokenfactory/keeper/params.go b/x/tokenfactory/keeper/params.go index b8cb99841..294490f17 100644 --- a/x/tokenfactory/keeper/params.go +++ b/x/tokenfactory/keeper/params.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/tokenfactory/module.go b/x/tokenfactory/module.go index eda08a60a..a1c8db5a7 100644 --- a/x/tokenfactory/module.go +++ b/x/tokenfactory/module.go @@ -19,9 +19,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/neutron-org/neutron/x/tokenfactory/client/cli" - "github.com/neutron-org/neutron/x/tokenfactory/keeper" - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/x/tokenfactory/client/cli" + "github.com/neutron-org/neutron/v2/x/tokenfactory/keeper" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) var ( diff --git a/x/tokenfactory/types/authorityMetadata.pb.go b/x/tokenfactory/types/authorityMetadata.pb.go index 5a3932270..8a3e5e177 100644 --- a/x/tokenfactory/types/authorityMetadata.pb.go +++ b/x/tokenfactory/types/authorityMetadata.pb.go @@ -82,7 +82,7 @@ func init() { } var fileDescriptor_99435de88ae175f7 = []byte{ - // 239 bytes of a gzipped FileDescriptorProto + // 242 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x32, 0xc9, 0x2f, 0xce, 0xcd, 0x2f, 0xce, 0x2c, 0xd6, 0x2f, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x2c, 0x2d, 0xc9, 0xc8, 0x2f, 0xca, @@ -92,12 +92,13 @@ var fileDescriptor_99435de88ae175f7 = []byte{ 0xa7, 0xc2, 0x2d, 0x48, 0xce, 0xcf, 0xcc, 0x83, 0xc8, 0x2b, 0xb9, 0x71, 0x89, 0xb9, 0xa4, 0xe6, 0xe5, 0xe7, 0x3a, 0xa2, 0xdb, 0x29, 0xa4, 0xc6, 0xc5, 0xea, 0x98, 0x92, 0x9b, 0x99, 0x27, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0xe9, 0x24, 0xf0, 0xe9, 0x9e, 0x3c, 0x4f, 0x65, 0x62, 0x6e, 0x8e, 0x95, - 0x52, 0x22, 0x48, 0x58, 0x29, 0x08, 0x22, 0x6d, 0xc5, 0xf2, 0x62, 0x81, 0x3c, 0xa3, 0x93, 0xef, + 0x52, 0x22, 0x48, 0x58, 0x29, 0x08, 0x22, 0x6d, 0xc5, 0xf2, 0x62, 0x81, 0x3c, 0xa3, 0x53, 0xc0, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, - 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x19, 0xa7, 0x67, 0x96, 0x64, 0x94, + 0xc3, 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x99, 0xa5, 0x67, 0x96, 0x64, 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0xe7, 0xa5, 0x96, 0x96, 0x14, 0xe5, 0xe7, 0xe9, 0xe6, 0x17, - 0xa5, 0xc3, 0xd8, 0xfa, 0x15, 0xa8, 0x81, 0x50, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x76, - 0x9d, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x08, 0x3a, 0x4a, 0xc1, 0x29, 0x01, 0x00, 0x00, + 0xa5, 0xc3, 0xd8, 0xfa, 0x65, 0x46, 0xfa, 0x15, 0xa8, 0xe1, 0x50, 0x52, 0x59, 0x90, 0x5a, 0x9c, + 0xc4, 0x06, 0x76, 0xa0, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x07, 0x66, 0x58, 0x73, 0x2c, 0x01, + 0x00, 0x00, } func (this *DenomAuthorityMetadata) Equal(that interface{}) bool { diff --git a/x/tokenfactory/types/denoms_test.go b/x/tokenfactory/types/denoms_test.go index 1950dca81..4804a5127 100644 --- a/x/tokenfactory/types/denoms_test.go +++ b/x/tokenfactory/types/denoms_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/app" - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/app" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) func TestDecomposeDenoms(t *testing.T) { diff --git a/x/tokenfactory/types/genesis.pb.go b/x/tokenfactory/types/genesis.pb.go index 10da9491b..f8b276de3 100644 --- a/x/tokenfactory/types/genesis.pb.go +++ b/x/tokenfactory/types/genesis.pb.go @@ -143,7 +143,7 @@ func init() { } var fileDescriptor_5749c3f71850298b = []byte{ - // 365 bytes of a gzipped FileDescriptorProto + // 368 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0xca, 0x2f, 0xce, 0xcd, 0x2f, 0xce, 0x2c, 0xd6, 0x2f, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, @@ -161,12 +161,12 @@ var fileDescriptor_5749c3f71850298b = []byte{ 0xe0, 0xd3, 0x3d, 0x79, 0x1e, 0x88, 0x49, 0x60, 0x61, 0xa5, 0x20, 0x88, 0xb4, 0x50, 0x1b, 0x23, 0x97, 0x10, 0x3c, 0x18, 0xe3, 0x73, 0xa1, 0xe1, 0x28, 0xc1, 0x04, 0xf6, 0xbb, 0x09, 0x7e, 0xf7, 0x82, 0x6d, 0x72, 0x44, 0x8f, 0x03, 0x27, 0x45, 0xa8, 0xcb, 0x25, 0x21, 0xf6, 0x61, 0x9a, 0xae, - 0x14, 0x24, 0x88, 0x11, 0x73, 0x56, 0x2c, 0x2f, 0x16, 0xc8, 0x33, 0x3a, 0xf9, 0x9e, 0x78, 0x24, + 0x14, 0x24, 0x88, 0x11, 0x73, 0x56, 0x2c, 0x2f, 0x16, 0xc8, 0x33, 0x3a, 0x05, 0x9c, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, - 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x71, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, + 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x59, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x5e, 0x6a, 0x69, 0x49, 0x51, 0x7e, 0x9e, 0x6e, 0x7e, 0x51, 0x3a, 0x8c, - 0xad, 0x5f, 0x81, 0x1a, 0xd9, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0xe0, 0x48, 0x36, 0x06, - 0x04, 0x00, 0x00, 0xff, 0xff, 0x88, 0xdf, 0xa5, 0xe7, 0xa7, 0x02, 0x00, 0x00, + 0xad, 0x5f, 0x66, 0xa4, 0x5f, 0x81, 0x1a, 0xdf, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0xe0, + 0x78, 0x36, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xe1, 0x85, 0xd1, 0x81, 0xaa, 0x02, 0x00, 0x00, } func (this *GenesisDenom) Equal(that interface{}) bool { diff --git a/x/tokenfactory/types/genesis_test.go b/x/tokenfactory/types/genesis_test.go index 5fb4ef794..fc0924ef1 100644 --- a/x/tokenfactory/types/genesis_test.go +++ b/x/tokenfactory/types/genesis_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/app" - "github.com/neutron-org/neutron/x/tokenfactory/types" + "github.com/neutron-org/neutron/v2/app" + "github.com/neutron-org/neutron/v2/x/tokenfactory/types" ) func TestGenesisState_Validate(t *testing.T) { diff --git a/x/tokenfactory/types/params.pb.go b/x/tokenfactory/types/params.pb.go index e71f0ae6e..af90f40f4 100644 --- a/x/tokenfactory/types/params.pb.go +++ b/x/tokenfactory/types/params.pb.go @@ -105,30 +105,31 @@ func init() { } var fileDescriptor_cc8299d306f3ff47 = []byte{ - // 367 bytes of a gzipped FileDescriptorProto + // 371 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x92, 0xc1, 0x4e, 0xf2, 0x40, - 0x10, 0xc7, 0xbb, 0xf0, 0x85, 0xe4, 0xab, 0x17, 0x53, 0x35, 0x02, 0x31, 0x2d, 0xf6, 0x54, 0x0e, - 0xb4, 0x01, 0x6e, 0xde, 0xa4, 0x89, 0x9e, 0x48, 0x0c, 0x47, 0x2f, 0xcd, 0xb6, 0x9d, 0xd6, 0x06, - 0xba, 0x43, 0xba, 0x8b, 0x91, 0xb7, 0xf0, 0xe4, 0x43, 0xf8, 0x0e, 0xde, 0x39, 0x72, 0xf4, 0x54, - 0x0d, 0xbc, 0x01, 0x4f, 0x60, 0x68, 0x17, 0x03, 0xea, 0x69, 0x67, 0xf2, 0xff, 0xcf, 0x6f, 0x66, - 0x67, 0x57, 0x6d, 0x23, 0x4f, 0x91, 0x27, 0xdc, 0x11, 0x38, 0x06, 0x16, 0xd1, 0x40, 0x60, 0x36, - 0x77, 0x1e, 0xbb, 0x3e, 0x08, 0xda, 0x75, 0xa6, 0x34, 0xa3, 0x29, 0xb7, 0xa7, 0x19, 0x0a, 0xd4, - 0x2e, 0xa4, 0xd5, 0xde, 0xb7, 0xda, 0xd2, 0xda, 0x3c, 0x8d, 0x31, 0xc6, 0xc2, 0xe8, 0x6c, 0xa3, - 0xb2, 0xa6, 0xd9, 0x08, 0x8a, 0x22, 0xaf, 0x14, 0xca, 0x44, 0x4a, 0x7a, 0x99, 0x39, 0x3e, 0xe5, - 0xf0, 0xdd, 0x30, 0xc0, 0x84, 0x95, 0xba, 0xf9, 0x56, 0x51, 0x6b, 0x77, 0x45, 0x7f, 0xed, 0x85, - 0xa8, 0x5a, 0x08, 0x0c, 0x53, 0x2f, 0xc8, 0x80, 0x8a, 0x04, 0x99, 0x17, 0x01, 0xd4, 0x49, 0xab, - 0x6a, 0x1d, 0xf5, 0x1a, 0xb6, 0xc4, 0x6e, 0x41, 0xbb, 0x71, 0x6c, 0x17, 0x13, 0x36, 0x18, 0x2e, - 0x72, 0x43, 0xd9, 0xe4, 0x46, 0x63, 0x4e, 0xd3, 0xc9, 0x95, 0xf9, 0x1b, 0x61, 0xbe, 0x7e, 0x18, - 0x56, 0x9c, 0x88, 0x87, 0x99, 0x6f, 0x07, 0x98, 0xca, 0x01, 0xe5, 0xd1, 0xe1, 0xe1, 0xd8, 0x11, - 0xf3, 0x29, 0xf0, 0x82, 0xc6, 0x47, 0xc7, 0x05, 0xc0, 0x95, 0xf5, 0x37, 0x00, 0x5a, 0xa4, 0x36, - 0x7f, 0x40, 0x63, 0xca, 0xbd, 0x00, 0x19, 0x9f, 0xa5, 0x50, 0xaf, 0xb4, 0x88, 0xf5, 0x6f, 0xd0, - 0x5e, 0xe4, 0x06, 0xd9, 0xe4, 0xc6, 0xe5, 0x9f, 0x43, 0xec, 0xf9, 0xcd, 0xd1, 0xf9, 0x41, 0x83, - 0x5b, 0xca, 0xdd, 0x52, 0xd1, 0x7a, 0xea, 0x59, 0x04, 0xe0, 0x05, 0x38, 0x99, 0xc0, 0x76, 0xed, - 0x1e, 0x0d, 0xc3, 0x0c, 0x38, 0xaf, 0x57, 0x5b, 0xc4, 0xfa, 0x3f, 0x3a, 0x89, 0x00, 0xdc, 0x9d, - 0x76, 0x5d, 0x4a, 0x83, 0xe1, 0x62, 0xa5, 0x93, 0xe5, 0x4a, 0x27, 0x9f, 0x2b, 0x9d, 0x3c, 0xaf, - 0x75, 0x65, 0xb9, 0xd6, 0x95, 0xf7, 0xb5, 0xae, 0xdc, 0xf7, 0xf7, 0x6e, 0xcc, 0x60, 0x26, 0x32, - 0x64, 0x1d, 0xcc, 0xe2, 0x5d, 0xec, 0x3c, 0x1d, 0x7e, 0x86, 0x62, 0x05, 0x7e, 0xad, 0x78, 0x95, - 0xfe, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x24, 0xb6, 0xa7, 0xfa, 0x31, 0x02, 0x00, 0x00, + 0x10, 0xc7, 0xbb, 0xf0, 0x85, 0xe4, 0xeb, 0x77, 0xf9, 0x52, 0x35, 0x02, 0x31, 0x2d, 0xf6, 0x54, + 0x0e, 0x74, 0x03, 0x26, 0x1e, 0xbc, 0x49, 0x13, 0x3d, 0x99, 0x10, 0x8e, 0x5e, 0x9a, 0x6d, 0x3b, + 0xad, 0x0d, 0x74, 0x87, 0x74, 0x17, 0x22, 0x6f, 0xe1, 0xc9, 0x87, 0xf0, 0x1d, 0xbc, 0x73, 0xe4, + 0xe8, 0xa9, 0x1a, 0x78, 0x03, 0x9e, 0xc0, 0xd0, 0x16, 0x03, 0xea, 0x69, 0x67, 0xf2, 0xff, 0xcf, + 0x6f, 0x66, 0x67, 0x57, 0x6d, 0xa3, 0x48, 0x50, 0xc4, 0x82, 0x4a, 0x1c, 0x01, 0x0f, 0x99, 0x2f, + 0x31, 0x9d, 0xd3, 0x59, 0xd7, 0x03, 0xc9, 0xba, 0x74, 0xc2, 0x52, 0x96, 0x08, 0x7b, 0x92, 0xa2, + 0x44, 0xed, 0xac, 0xb4, 0xda, 0xfb, 0x56, 0xbb, 0xb4, 0x36, 0x8f, 0x23, 0x8c, 0x30, 0x37, 0xd2, + 0x6d, 0x54, 0xd4, 0x34, 0x1b, 0x7e, 0x5e, 0xe4, 0x16, 0x42, 0x91, 0x94, 0x92, 0x5e, 0x64, 0xd4, + 0x63, 0x02, 0xbe, 0x1a, 0xfa, 0x18, 0xf3, 0x42, 0x37, 0x5f, 0x2b, 0x6a, 0x6d, 0x90, 0xf7, 0xd7, + 0x9e, 0x89, 0xaa, 0x05, 0xc0, 0x31, 0x71, 0xfd, 0x14, 0x98, 0x8c, 0x91, 0xbb, 0x21, 0x40, 0x9d, + 0xb4, 0xaa, 0xd6, 0xbf, 0x5e, 0xc3, 0x2e, 0xb1, 0x5b, 0xd0, 0x6e, 0x1c, 0xdb, 0xc1, 0x98, 0xf7, + 0xef, 0x16, 0x99, 0xa1, 0x6c, 0x32, 0xa3, 0x31, 0x67, 0xc9, 0xf8, 0xca, 0xfc, 0x89, 0x30, 0x5f, + 0xde, 0x0d, 0x2b, 0x8a, 0xe5, 0xc3, 0xd4, 0xb3, 0x7d, 0x4c, 0xca, 0x01, 0xcb, 0xa3, 0x23, 0x82, + 0x11, 0x95, 0xf3, 0x09, 0x88, 0x9c, 0x26, 0x86, 0xff, 0x73, 0x80, 0x53, 0xd6, 0xdf, 0x00, 0x68, + 0xa1, 0xda, 0xfc, 0x06, 0x8d, 0x98, 0x70, 0x7d, 0xe4, 0x62, 0x9a, 0x40, 0xbd, 0xd2, 0x22, 0xd6, + 0x9f, 0x7e, 0x7b, 0x91, 0x19, 0x64, 0x93, 0x19, 0xe7, 0xbf, 0x0e, 0xb1, 0xe7, 0x37, 0x87, 0xa7, + 0x07, 0x0d, 0x6e, 0x99, 0x70, 0x0a, 0x45, 0xeb, 0xa9, 0x27, 0x21, 0x80, 0xeb, 0xe3, 0x78, 0x0c, + 0xdb, 0xb5, 0xbb, 0x2c, 0x08, 0x52, 0x10, 0xa2, 0x5e, 0x6d, 0x11, 0xeb, 0xef, 0xf0, 0x28, 0x04, + 0x70, 0x76, 0xda, 0x75, 0x21, 0xf5, 0x07, 0x8b, 0x95, 0x4e, 0x96, 0x2b, 0x9d, 0x7c, 0xac, 0x74, + 0xf2, 0xb4, 0xd6, 0x95, 0xe5, 0x5a, 0x57, 0xde, 0xd6, 0xba, 0x72, 0x7f, 0xb9, 0x77, 0x63, 0x0e, + 0x53, 0x99, 0x22, 0xef, 0x60, 0x1a, 0xed, 0x62, 0x3a, 0xeb, 0xd1, 0xc7, 0xc3, 0xff, 0x90, 0x6f, + 0xc1, 0xab, 0xe5, 0x0f, 0x73, 0xf1, 0x19, 0x00, 0x00, 0xff, 0xff, 0x3a, 0x90, 0x82, 0x0b, 0x34, + 0x02, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/tokenfactory/types/query.pb.go b/x/tokenfactory/types/query.pb.go index 123435062..9b402b5c5 100644 --- a/x/tokenfactory/types/query.pb.go +++ b/x/tokenfactory/types/query.pb.go @@ -419,49 +419,50 @@ func init() { } var fileDescriptor_6f22013ad0f72e3f = []byte{ - // 670 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x95, 0xcf, 0x6b, 0x13, 0x41, - 0x14, 0xc7, 0x33, 0x55, 0xa3, 0x1d, 0xad, 0xd2, 0x69, 0x95, 0x1a, 0xea, 0xc6, 0x8e, 0x45, 0x5a, - 0xa8, 0x19, 0xfb, 0xe3, 0x64, 0x2d, 0xb6, 0x5b, 0x11, 0x41, 0x0a, 0xba, 0x16, 0xc1, 0x22, 0x84, - 0x49, 0x76, 0x9a, 0x86, 0x76, 0xf7, 0xa5, 0x33, 0x13, 0x31, 0x94, 0x5e, 0x2a, 0x78, 0x16, 0x3c, - 0xfa, 0x3f, 0xf8, 0x77, 0xf4, 0x58, 0xe8, 0xc5, 0x53, 0x90, 0xd6, 0xbf, 0x20, 0x07, 0x2f, 0x5e, - 0x24, 0xb3, 0xb3, 0xfd, 0x61, 0xd2, 0x25, 0xa6, 0xe0, 0x6d, 0x33, 0xf3, 0xde, 0xf7, 0x7d, 0x3f, - 0xf3, 0xde, 0x23, 0x78, 0x0c, 0x54, 0x00, 0xaa, 0xac, 0x98, 0x86, 0x75, 0x11, 0xae, 0xf2, 0xa2, - 0x06, 0x59, 0x63, 0xef, 0x27, 0x0b, 0x42, 0xf3, 0x49, 0xb6, 0x59, 0x15, 0xb2, 0x96, 0xab, 0x48, - 0xd0, 0x40, 0x86, 0x6d, 0x64, 0xee, 0x64, 0x64, 0xce, 0x46, 0x66, 0x06, 0x4b, 0x50, 0x02, 0x13, - 0xc8, 0x9a, 0x5f, 0x51, 0x4e, 0x66, 0xb8, 0x04, 0x50, 0xda, 0x10, 0x8c, 0x57, 0xca, 0x8c, 0x87, - 0x21, 0x68, 0xae, 0xcb, 0x10, 0x2a, 0x7b, 0x3b, 0x93, 0x58, 0x9b, 0x57, 0xf5, 0x1a, 0xc8, 0xb2, - 0xae, 0x2d, 0x09, 0xcd, 0x7d, 0xae, 0xb9, 0xcd, 0x1a, 0x4f, 0xcc, 0xaa, 0x70, 0xc9, 0x03, 0x5b, - 0x80, 0x0e, 0x62, 0xf2, 0xaa, 0x49, 0xf0, 0xd2, 0x1c, 0x7a, 0x62, 0xb3, 0x2a, 0x94, 0xa6, 0x6f, - 0xf1, 0xc0, 0xa9, 0x53, 0x55, 0x81, 0x50, 0x09, 0xe2, 0xe2, 0x74, 0x94, 0x3c, 0x84, 0xee, 0xa2, - 0xb1, 0xab, 0x53, 0xa3, 0xb9, 0x24, 0xe0, 0x5c, 0x94, 0xed, 0x5e, 0xdc, 0xad, 0x67, 0x53, 0x9e, - 0xcd, 0xa4, 0x1f, 0x11, 0xa6, 0x46, 0xfb, 0xa9, 0x08, 0x21, 0x58, 0xf8, 0x9b, 0xc0, 0x3a, 0x20, - 0x13, 0xf8, 0x72, 0x51, 0x0a, 0xae, 0x41, 0x9a, 0x5a, 0xbd, 0x2e, 0x69, 0xd4, 0xb3, 0xd7, 0x6b, - 0x3c, 0xd8, 0x78, 0x44, 0xed, 0x05, 0xf5, 0xe2, 0x10, 0xc2, 0xf0, 0x15, 0x55, 0x2d, 0xf8, 0x4d, - 0xc5, 0xa1, 0x1e, 0x13, 0x3e, 0xd0, 0xa8, 0x67, 0x6f, 0x44, 0xe1, 0xf1, 0x0d, 0xf5, 0x8e, 0x82, - 0xe8, 0x37, 0x84, 0xef, 0x25, 0xba, 0xb0, 0xc4, 0x9f, 0x10, 0x26, 0x47, 0xaf, 0x9c, 0x0f, 0xec, - 0xb5, 0xc5, 0x9f, 0x49, 0xc6, 0x6f, 0x2f, 0xed, 0x8e, 0x34, 0x9f, 0xa3, 0x51, 0xcf, 0xde, 0x8e, - 0xdc, 0xb5, 0xaa, 0x53, 0xaf, 0xbf, 0xa5, 0xb1, 0x74, 0x09, 0xdf, 0x39, 0xf6, 0xab, 0x9e, 0x49, - 0x08, 0x16, 0x23, 0xf6, 0xae, 0x1e, 0x8c, 0xbe, 0xc0, 0xce, 0x59, 0x72, 0x96, 0x7c, 0x1c, 0xa7, - 0xcd, 0x53, 0x35, 0x7b, 0x7d, 0x61, 0xac, 0xd7, 0xed, 0x6f, 0xd4, 0xb3, 0x7d, 0x91, 0x5c, 0x74, - 0x4e, 0x3d, 0x1b, 0x40, 0x77, 0x10, 0x1e, 0x31, 0x6a, 0xae, 0x58, 0x05, 0x29, 0x5e, 0x8b, 0xd0, - 0x7f, 0x0e, 0xb0, 0xbe, 0xe0, 0xfb, 0x52, 0x28, 0xf5, 0x9f, 0x3a, 0x5a, 0xb4, 0x63, 0x75, 0x86, - 0x07, 0x4b, 0x35, 0x87, 0xfb, 0x8a, 0x10, 0x6a, 0xc9, 0x8b, 0x3a, 0xcf, 0x7d, 0x3f, 0xb6, 0x32, - 0xd4, 0xa8, 0x67, 0x07, 0xad, 0x95, 0x93, 0xd7, 0xd4, 0xbb, 0x16, 0xff, 0x6e, 0x2a, 0x4d, 0x35, - 0xd2, 0xf8, 0x92, 0xa9, 0x42, 0xbe, 0x22, 0x9c, 0x8e, 0xe6, 0x9b, 0x3c, 0x4c, 0x1e, 0x83, 0xd6, - 0xf5, 0xca, 0x4c, 0xfe, 0x43, 0x46, 0x64, 0x9c, 0x4e, 0xec, 0xec, 0xff, 0xfc, 0xd2, 0x73, 0x9f, - 0x8c, 0xb2, 0x0e, 0x76, 0x9b, 0xfc, 0x46, 0xf8, 0x56, 0xfb, 0xf1, 0x23, 0xf3, 0x1d, 0xd4, 0x4e, - 0x5c, 0xcd, 0xcc, 0xc2, 0x39, 0x14, 0x2c, 0xcd, 0x3b, 0x43, 0xf3, 0x86, 0x2c, 0x27, 0xd3, 0x44, - 0xf3, 0xc5, 0xe2, 0xe3, 0x2d, 0x3b, 0x1c, 0xdb, 0x6c, 0x2b, 0x6e, 0xfb, 0x36, 0x6b, 0xdd, 0x1f, - 0xb2, 0x8f, 0x70, 0x7f, 0xcb, 0x60, 0x93, 0xd9, 0x4e, 0x6d, 0xb7, 0xd9, 0xae, 0xcc, 0xe3, 0xee, - 0x92, 0x2d, 0xee, 0xa2, 0xc1, 0x9d, 0x23, 0xb3, 0x9d, 0xe0, 0xe6, 0x57, 0x25, 0x04, 0x79, 0x8b, - 0x7a, 0xcc, 0x4c, 0x7e, 0x21, 0x7c, 0xb3, 0xed, 0x70, 0x93, 0x27, 0x1d, 0x98, 0x4b, 0x5a, 0xcd, - 0xcc, 0x7c, 0xf7, 0x02, 0x96, 0x70, 0xc5, 0x10, 0x2e, 0x13, 0xef, 0xfc, 0x0d, 0x2d, 0x98, 0x42, - 0x79, 0x25, 0x42, 0x3f, 0xbf, 0x06, 0xb0, 0xee, 0x2e, 0xed, 0x1e, 0x38, 0x68, 0xef, 0xc0, 0x41, - 0x3f, 0x0e, 0x1c, 0xf4, 0xf9, 0xd0, 0x49, 0xed, 0x1d, 0x3a, 0xa9, 0xef, 0x87, 0x4e, 0x6a, 0x65, - 0xba, 0x54, 0xd6, 0x6b, 0xd5, 0x42, 0xae, 0x08, 0x01, 0x0b, 0x45, 0x55, 0x4b, 0x08, 0x1f, 0x80, - 0x2c, 0xc5, 0xdf, 0xec, 0xc3, 0x69, 0x17, 0xba, 0x56, 0x11, 0xaa, 0x90, 0x36, 0x7f, 0x7c, 0xd3, - 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xcf, 0x15, 0xaa, 0xec, 0xd7, 0x07, 0x00, 0x00, + // 673 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x95, 0xcf, 0x4f, 0x13, 0x41, + 0x14, 0xc7, 0x3b, 0xa8, 0x55, 0x46, 0xd1, 0x30, 0xa0, 0xc1, 0x06, 0xb7, 0x32, 0x12, 0x03, 0x09, + 0x76, 0x04, 0x89, 0x07, 0x91, 0x08, 0x8b, 0x31, 0x26, 0x86, 0x04, 0x57, 0x62, 0x22, 0x31, 0x69, + 0xa6, 0xdd, 0xa1, 0x34, 0xb0, 0xfb, 0xca, 0xcc, 0x94, 0xd8, 0x10, 0x2e, 0x98, 0x78, 0x36, 0xf1, + 0xe8, 0xff, 0xe0, 0xdf, 0xc1, 0x91, 0x84, 0x8b, 0xa7, 0xc6, 0x80, 0x7f, 0x41, 0x0f, 0x5e, 0xbc, + 0x98, 0xce, 0xce, 0xf2, 0xc3, 0x96, 0x4d, 0x85, 0xc4, 0xdb, 0x76, 0xe6, 0xbd, 0xef, 0xfb, 0x7e, + 0xe6, 0xbd, 0x97, 0xe2, 0x11, 0x50, 0x01, 0xa8, 0xb2, 0x62, 0x1a, 0x56, 0x45, 0xb8, 0xcc, 0x8b, + 0x1a, 0x64, 0x8d, 0x6d, 0x8c, 0x17, 0x84, 0xe6, 0xe3, 0x6c, 0xbd, 0x2a, 0x64, 0x2d, 0x57, 0x91, + 0xa0, 0x81, 0x0c, 0xda, 0xc8, 0xdc, 0xf1, 0xc8, 0x9c, 0x8d, 0xcc, 0xf4, 0x97, 0xa0, 0x04, 0x26, + 0x90, 0x35, 0xbf, 0xa2, 0x9c, 0xcc, 0x60, 0x09, 0xa0, 0xb4, 0x26, 0x18, 0xaf, 0x94, 0x19, 0x0f, + 0x43, 0xd0, 0x5c, 0x97, 0x21, 0x54, 0xf6, 0x76, 0x32, 0xb1, 0x36, 0xaf, 0xea, 0x15, 0x90, 0x65, + 0x5d, 0x9b, 0x17, 0x9a, 0xfb, 0x5c, 0x73, 0x9b, 0x35, 0x9a, 0x98, 0x55, 0xe1, 0x92, 0x07, 0xb6, + 0x00, 0xed, 0xc7, 0xe4, 0x75, 0x93, 0x60, 0xc1, 0x1c, 0x7a, 0x62, 0xbd, 0x2a, 0x94, 0xa6, 0xef, + 0x70, 0xdf, 0x89, 0x53, 0x55, 0x81, 0x50, 0x09, 0xe2, 0xe2, 0x74, 0x94, 0x3c, 0x80, 0xee, 0xa2, + 0x91, 0xab, 0x13, 0xc3, 0xb9, 0x24, 0xe0, 0x5c, 0x94, 0xed, 0x5e, 0xdc, 0xa9, 0x67, 0x53, 0x9e, + 0xcd, 0xa4, 0x1f, 0x11, 0xa6, 0x46, 0xfb, 0xb9, 0x08, 0x21, 0x98, 0xfd, 0x9b, 0xc0, 0x3a, 0x20, + 0x63, 0xf8, 0x72, 0x51, 0x0a, 0xae, 0x41, 0x9a, 0x5a, 0xdd, 0x2e, 0x69, 0xd4, 0xb3, 0xd7, 0x6b, + 0x3c, 0x58, 0x7b, 0x42, 0xed, 0x05, 0xf5, 0xe2, 0x10, 0xc2, 0xf0, 0x15, 0x55, 0x2d, 0xf8, 0x4d, + 0xc5, 0x81, 0x2e, 0x13, 0xde, 0xd7, 0xa8, 0x67, 0x6f, 0x44, 0xe1, 0xf1, 0x0d, 0xf5, 0x0e, 0x83, + 0xe8, 0x37, 0x84, 0xef, 0x25, 0xba, 0xb0, 0xc4, 0x9f, 0x10, 0x26, 0x87, 0xaf, 0x9c, 0x0f, 0xec, + 0xb5, 0xc5, 0x9f, 0x4c, 0xc6, 0x6f, 0x2f, 0xed, 0x0e, 0x35, 0x9f, 0xa3, 0x51, 0xcf, 0xde, 0x8e, + 0xdc, 0xb5, 0xaa, 0x53, 0xaf, 0xb7, 0xa5, 0xb1, 0x74, 0x1e, 0xdf, 0x39, 0xf2, 0xab, 0x5e, 0x48, + 0x08, 0xe6, 0x22, 0xf6, 0x33, 0x3d, 0x18, 0x7d, 0x85, 0x9d, 0xd3, 0xe4, 0x2c, 0xf9, 0x28, 0x4e, + 0x9b, 0xa7, 0x6a, 0xf6, 0xfa, 0xc2, 0x48, 0xb7, 0xdb, 0xdb, 0xa8, 0x67, 0x7b, 0x22, 0xb9, 0xe8, + 0x9c, 0x7a, 0x36, 0x80, 0x6e, 0x23, 0x3c, 0x64, 0xd4, 0x5c, 0xb1, 0x0c, 0x52, 0xbc, 0x11, 0xa1, + 0xff, 0x12, 0x60, 0x75, 0xd6, 0xf7, 0xa5, 0x50, 0xea, 0x3f, 0x75, 0xb4, 0x68, 0xc7, 0xea, 0x14, + 0x0f, 0x96, 0x6a, 0x1a, 0xf7, 0x14, 0x21, 0xd4, 0x92, 0x17, 0x75, 0x9e, 0xfb, 0x7e, 0x6c, 0x65, + 0xa0, 0x51, 0xcf, 0xf6, 0x5b, 0x2b, 0xc7, 0xaf, 0xa9, 0x77, 0x2d, 0xfe, 0xdd, 0x54, 0x9a, 0x68, + 0xa4, 0xf1, 0x25, 0x53, 0x85, 0x7c, 0x45, 0x38, 0x1d, 0xcd, 0x37, 0x79, 0x98, 0x3c, 0x06, 0xad, + 0xeb, 0x95, 0x19, 0xff, 0x87, 0x8c, 0xc8, 0x38, 0x1d, 0xdb, 0xde, 0xfb, 0xf9, 0xa5, 0xeb, 0x3e, + 0x19, 0x66, 0x1d, 0xec, 0x36, 0xf9, 0x8d, 0xf0, 0xad, 0xf6, 0xe3, 0x47, 0x66, 0x3a, 0xa8, 0x9d, + 0xb8, 0x9a, 0x99, 0xd9, 0x73, 0x28, 0x58, 0x9a, 0xf7, 0x86, 0xe6, 0x2d, 0x59, 0x4c, 0xa6, 0x89, + 0xe6, 0x8b, 0xc5, 0xc7, 0x9b, 0x76, 0x38, 0xb6, 0xd8, 0x66, 0xdc, 0xf6, 0x2d, 0xd6, 0xba, 0x3f, + 0x64, 0x0f, 0xe1, 0xde, 0x96, 0xc1, 0x26, 0x53, 0x9d, 0xda, 0x6e, 0xb3, 0x5d, 0x99, 0xa7, 0x67, + 0x4b, 0xb6, 0xb8, 0x73, 0x06, 0x77, 0x9a, 0x4c, 0x75, 0x82, 0x9b, 0x5f, 0x96, 0x10, 0xe4, 0x2d, + 0xea, 0x11, 0x33, 0xf9, 0x85, 0xf0, 0xcd, 0xb6, 0xc3, 0x4d, 0x9e, 0x75, 0x60, 0x2e, 0x69, 0x35, + 0x33, 0x33, 0x67, 0x17, 0xb0, 0x84, 0x4b, 0x86, 0x70, 0x91, 0x78, 0xe7, 0x6f, 0x68, 0xc1, 0x14, + 0xca, 0x2b, 0x11, 0xfa, 0xf9, 0x15, 0x80, 0x55, 0x77, 0x61, 0x67, 0xdf, 0x41, 0xbb, 0xfb, 0x0e, + 0xfa, 0xb1, 0xef, 0xa0, 0xcf, 0x07, 0x4e, 0x6a, 0xf7, 0xc0, 0x49, 0x7d, 0x3f, 0x70, 0x52, 0x4b, + 0x8f, 0x4b, 0x65, 0xbd, 0x52, 0x2d, 0xe4, 0x8a, 0x10, 0xb0, 0x50, 0x54, 0xb5, 0x84, 0xf0, 0x01, + 0xc8, 0x52, 0xfc, 0xcd, 0x36, 0x26, 0xd8, 0x87, 0x93, 0x46, 0x74, 0xad, 0x22, 0x54, 0x21, 0x6d, + 0xfe, 0xfb, 0x1e, 0xfd, 0x09, 0x00, 0x00, 0xff, 0xff, 0xfa, 0x3c, 0xae, 0x55, 0xda, 0x07, 0x00, + 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/tokenfactory/types/tx.pb.go b/x/tokenfactory/types/tx.pb.go index 33cf27891..2e7079b0b 100644 --- a/x/tokenfactory/types/tx.pb.go +++ b/x/tokenfactory/types/tx.pb.go @@ -857,73 +857,73 @@ func init() { } var fileDescriptor_283b6c9a90a846b4 = []byte{ - // 1045 bytes of a gzipped FileDescriptorProto + // 1048 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0xbd, 0x6f, 0xdb, 0xc6, 0x1b, 0x36, 0x93, 0xfc, 0x1c, 0xfb, 0x62, 0xff, 0x6c, 0xd3, 0x6e, 0x2c, 0xb3, 0x0e, 0x99, 0xb2, - 0x4d, 0xe0, 0x18, 0x95, 0x08, 0x39, 0x69, 0x80, 0x0a, 0x28, 0xd0, 0x28, 0x85, 0x9b, 0xa1, 0x02, - 0x0a, 0xda, 0x5d, 0x8a, 0x00, 0xc2, 0x49, 0x3a, 0x51, 0x84, 0xca, 0x3b, 0xe5, 0xee, 0x14, 0xc7, + 0x4d, 0xe0, 0x18, 0x95, 0x08, 0xbb, 0xa9, 0x81, 0x0a, 0x28, 0xd0, 0x28, 0x85, 0x9b, 0xa1, 0x02, + 0x02, 0xda, 0x5d, 0x8a, 0x00, 0xc2, 0x49, 0x3a, 0x51, 0x84, 0xca, 0x3b, 0xe5, 0xee, 0x64, 0xc7, 0x5b, 0xd1, 0x6e, 0x9d, 0x3a, 0x64, 0xef, 0xda, 0xd1, 0x43, 0xe7, 0xce, 0x1e, 0x83, 0x76, 0x68, 0x27, 0x22, 0xb0, 0x81, 0x7a, 0xd7, 0x5f, 0x50, 0xdc, 0x07, 0x29, 0x51, 0x12, 0xf4, 0x31, 0x14, - 0x59, 0x6c, 0xf2, 0xde, 0xe7, 0x79, 0xee, 0x7d, 0x5e, 0xbe, 0x77, 0xaf, 0xc0, 0x3d, 0xc2, 0x22, - 0xc2, 0x42, 0xe6, 0x71, 0xd2, 0x46, 0xb8, 0x09, 0xeb, 0x9c, 0xd0, 0x53, 0xef, 0x65, 0xb1, 0x86, - 0x38, 0x2c, 0x7a, 0xfc, 0x55, 0xa1, 0x43, 0x09, 0x27, 0xe6, 0xae, 0x86, 0x15, 0x06, 0x61, 0x05, - 0x0d, 0xb3, 0x1e, 0x4c, 0x14, 0xe9, 0x40, 0x0a, 0x23, 0xa6, 0x84, 0xac, 0xad, 0x80, 0x04, 0x44, - 0x3e, 0x7a, 0xe2, 0x49, 0xaf, 0xda, 0x75, 0xa9, 0xe0, 0xd5, 0x20, 0x43, 0x29, 0xaf, 0x4e, 0x42, - 0xac, 0xe3, 0xdb, 0x3a, 0x1e, 0xb1, 0xc0, 0x7b, 0x59, 0x14, 0xff, 0x74, 0x60, 0x47, 0x05, 0xaa, - 0x4a, 0x51, 0xbd, 0xe8, 0xd0, 0x06, 0x8c, 0x42, 0x4c, 0x3c, 0xf9, 0x77, 0x64, 0x1b, 0xdc, 0x4e, - 0xb7, 0x11, 0x2f, 0x2a, 0xee, 0xbe, 0x36, 0xc0, 0xff, 0x2b, 0x2c, 0x78, 0x4a, 0x11, 0xe4, 0xe8, - 0x0b, 0x84, 0x49, 0x64, 0x3e, 0x00, 0x8b, 0x0c, 0xe1, 0x06, 0xa2, 0x39, 0xe3, 0xae, 0xb1, 0xb7, - 0x5c, 0xde, 0xe8, 0xc5, 0xce, 0xea, 0x29, 0x8c, 0xbe, 0x2b, 0xb9, 0x6a, 0xdd, 0xf5, 0x35, 0xc0, - 0xf4, 0xc0, 0x12, 0xeb, 0xd6, 0x1a, 0x82, 0x96, 0xbb, 0x26, 0xc1, 0x9b, 0xbd, 0xd8, 0x59, 0xd3, - 0x60, 0x1d, 0x71, 0xfd, 0x14, 0x54, 0xba, 0xff, 0xd3, 0xd5, 0xd9, 0xfe, 0x07, 0x63, 0x6b, 0x57, - 0x97, 0x29, 0xe4, 0x15, 0xe5, 0x39, 0xb8, 0x9d, 0xcd, 0xca, 0x47, 0xac, 0x43, 0x30, 0x43, 0x66, - 0x19, 0xac, 0x61, 0x74, 0x52, 0x95, 0xd4, 0xaa, 0xda, 0x59, 0xa5, 0x69, 0xf5, 0x62, 0xe7, 0xb6, - 0xda, 0x79, 0x08, 0xe0, 0xfa, 0xab, 0x18, 0x9d, 0x1c, 0x8b, 0x05, 0xa9, 0xe5, 0xbe, 0x35, 0xc0, - 0xcd, 0x0a, 0x0b, 0x2a, 0x21, 0xe6, 0xf3, 0xb8, 0x7d, 0x06, 0x16, 0x61, 0x44, 0xba, 0x98, 0x4b, - 0xaf, 0xb7, 0x0e, 0x76, 0x0a, 0xba, 0xfa, 0xe2, 0x1b, 0x26, 0x9d, 0x51, 0x78, 0x4a, 0x42, 0x5c, - 0x7e, 0xef, 0x3c, 0x76, 0x16, 0xfa, 0x4a, 0x8a, 0xe6, 0xfa, 0x9a, 0x6f, 0x7e, 0x0e, 0x56, 0xa3, - 0x10, 0xf3, 0x63, 0xf2, 0xa4, 0xd1, 0xa0, 0x88, 0xb1, 0xdc, 0xf5, 0x61, 0x0b, 0x22, 0x5c, 0xe5, - 0xa4, 0x0a, 0x15, 0xc0, 0xf5, 0xb3, 0x84, 0x92, 0x2d, 0x0a, 0xb9, 0x33, 0xb6, 0x90, 0x02, 0xe8, - 0x6e, 0x80, 0x35, 0xed, 0x30, 0xa9, 0x9c, 0xfb, 0x8f, 0x72, 0x5d, 0xee, 0x52, 0xfc, 0x6e, 0x5c, - 0x1f, 0x82, 0xb5, 0x5a, 0x97, 0xe2, 0x43, 0x4a, 0xa2, 0xac, 0xef, 0xdd, 0x5e, 0xec, 0xe4, 0x14, - 0x47, 0x00, 0xaa, 0x4d, 0x4a, 0xa2, 0xbe, 0xf3, 0x61, 0xd2, 0x24, 0xef, 0x02, 0xaa, 0xbd, 0x0b, - 0x9f, 0xa9, 0xf7, 0xdf, 0x75, 0x9b, 0xb7, 0x20, 0x0e, 0xd0, 0x93, 0x46, 0x14, 0xce, 0x55, 0x82, - 0xfb, 0xe0, 0x7f, 0x83, 0x3d, 0xbe, 0xde, 0x8b, 0x9d, 0x15, 0x85, 0xd4, 0xfd, 0xa5, 0xc2, 0x66, - 0x11, 0x2c, 0x8b, 0xd6, 0x83, 0x42, 0x5f, 0x5b, 0xdb, 0xea, 0xc5, 0xce, 0x7a, 0xbf, 0x2b, 0x65, - 0xc8, 0xf5, 0x97, 0x30, 0x3a, 0x91, 0x59, 0x4c, 0x3c, 0x10, 0x32, 0xd9, 0xbc, 0xa2, 0xe4, 0xd4, - 0x81, 0xe8, 0xe7, 0x9f, 0x5a, 0xfb, 0xcb, 0x00, 0x5b, 0x15, 0x16, 0x1c, 0x21, 0x5e, 0x46, 0x4d, - 0x42, 0xd1, 0x11, 0xc2, 0x8d, 0x67, 0x84, 0xb4, 0xff, 0x0b, 0x83, 0x9f, 0x81, 0xd5, 0x3a, 0xc1, - 0x9c, 0xc2, 0x3a, 0x97, 0xdf, 0x47, 0x9b, 0xcc, 0xf5, 0x62, 0x67, 0x4b, 0xe1, 0x33, 0x61, 0xd7, - 0x5f, 0x49, 0xde, 0xc5, 0xb7, 0x2b, 0xe5, 0x85, 0xd9, 0xbd, 0xb1, 0x66, 0x19, 0xe2, 0xf9, 0x9a, - 0xcc, 0x5f, 0xa4, 0x94, 0x6f, 0x11, 0xd2, 0x76, 0x6d, 0xb0, 0x3b, 0xce, 0x58, 0xea, 0xfc, 0xb5, - 0x01, 0x36, 0x15, 0x40, 0x1e, 0xeb, 0x0a, 0xe2, 0xb0, 0x01, 0x39, 0x9c, 0xc7, 0xb8, 0x0f, 0x96, - 0x22, 0x4d, 0xd3, 0xed, 0x7d, 0xa7, 0xdf, 0xde, 0xb8, 0x9d, 0xb6, 0x77, 0xa2, 0x5d, 0xde, 0xd6, - 0x2d, 0xae, 0xef, 0xb8, 0x84, 0xec, 0xfa, 0xa9, 0x8e, 0x7b, 0x07, 0xbc, 0x3f, 0x26, 0xab, 0x34, - 0xeb, 0x3f, 0xaf, 0x81, 0xf5, 0x0a, 0x0b, 0x0e, 0x09, 0xad, 0xa3, 0x63, 0x0a, 0x31, 0x6b, 0x22, - 0xfa, 0x6e, 0xce, 0xa3, 0x0f, 0x36, 0xb9, 0x4e, 0x60, 0xf4, 0x4c, 0xde, 0xed, 0xc5, 0xce, 0xae, - 0xe2, 0x25, 0xa0, 0xa1, 0x73, 0x39, 0x8e, 0x6c, 0x7e, 0x05, 0x36, 0x92, 0xe5, 0xfe, 0xed, 0x76, - 0x43, 0x2a, 0xda, 0xbd, 0xd8, 0xb1, 0x86, 0x14, 0x07, 0x6f, 0xb8, 0x51, 0x62, 0x69, 0x4f, 0x34, - 0xcc, 0x87, 0x63, 0x1b, 0xa6, 0x29, 0xea, 0x97, 0x4f, 0x28, 0xae, 0x05, 0x72, 0xc3, 0x45, 0x4d, - 0x2b, 0x7e, 0x6e, 0xc8, 0x0b, 0xe1, 0x9b, 0x4e, 0x03, 0x72, 0xf4, 0xb5, 0x1c, 0xcd, 0xe6, 0x63, - 0xb0, 0x0c, 0xbb, 0xbc, 0x45, 0x68, 0xc8, 0x4f, 0x75, 0xcd, 0x73, 0x7f, 0xfc, 0x96, 0xdf, 0xd2, - 0xb5, 0xd4, 0x09, 0x1c, 0x71, 0x1a, 0xe2, 0xc0, 0xef, 0x43, 0xcd, 0x2f, 0xc1, 0xa2, 0x1a, 0xee, - 0xba, 0xfa, 0x1f, 0x15, 0x26, 0xfd, 0x4c, 0x28, 0xa8, 0xdd, 0xca, 0xcb, 0xe2, 0x43, 0xfc, 0x7a, - 0x75, 0xb6, 0x6f, 0xf8, 0x9a, 0x5e, 0x7a, 0xf4, 0xc3, 0xd5, 0xd9, 0x7e, 0x5f, 0x58, 0x5e, 0x03, - 0x21, 0xe6, 0x88, 0xd6, 0x5b, 0x30, 0xc4, 0x2f, 0xba, 0x88, 0x86, 0x88, 0x79, 0x43, 0x69, 0xbb, - 0x3b, 0x60, 0x7b, 0x68, 0x29, 0x71, 0x79, 0xf0, 0xcb, 0x4d, 0x70, 0xbd, 0xc2, 0x02, 0xf3, 0x05, - 0xb8, 0x35, 0x38, 0xcd, 0x3f, 0x9e, 0x9c, 0x60, 0x76, 0xca, 0x5a, 0x8f, 0xe6, 0x41, 0xa7, 0x33, - 0xf9, 0x39, 0xb8, 0x21, 0x67, 0xe9, 0xbd, 0xa9, 0x6c, 0x01, 0xb3, 0xf2, 0x33, 0xc1, 0x06, 0xd5, - 0xe5, 0xcc, 0x9a, 0xae, 0x2e, 0x60, 0x33, 0xa8, 0x0f, 0x4e, 0x06, 0x59, 0xae, 0x81, 0xa9, 0x30, - 0x43, 0xb9, 0xfa, 0xe8, 0x59, 0xca, 0x35, 0x7a, 0x63, 0x9b, 0xdf, 0x1b, 0x60, 0x7d, 0xe4, 0xd2, - 0x2a, 0x4e, 0x95, 0x1a, 0xa6, 0x58, 0x9f, 0xce, 0x4d, 0x49, 0x53, 0xf8, 0xd1, 0x00, 0x1b, 0xa3, - 0x13, 0xe3, 0x60, 0x16, 0xc1, 0x2c, 0xc7, 0x2a, 0xcd, 0xcf, 0x49, 0xb3, 0x38, 0x01, 0xab, 0xd9, - 0x6b, 0xb0, 0x30, 0x55, 0x2c, 0x83, 0xb7, 0x1e, 0xcf, 0x87, 0x4f, 0x37, 0xe6, 0x60, 0x25, 0x73, - 0x1b, 0x4c, 0xef, 0x99, 0x41, 0xb8, 0xf5, 0xc9, 0x5c, 0xf0, 0x64, 0xd7, 0x72, 0xe5, 0xfc, 0xc2, - 0x36, 0xde, 0x5c, 0xd8, 0xc6, 0xdb, 0x0b, 0xdb, 0xf8, 0xf9, 0xd2, 0x5e, 0x78, 0x73, 0x69, 0x2f, - 0xfc, 0x7d, 0x69, 0x2f, 0x7c, 0xfb, 0x30, 0x08, 0x79, 0xab, 0x5b, 0x2b, 0xd4, 0x49, 0xe4, 0x61, - 0xd4, 0xe5, 0x94, 0xe0, 0x3c, 0xa1, 0x41, 0xf2, 0xec, 0xbd, 0xca, 0xde, 0x7d, 0xfc, 0xb4, 0x83, - 0x58, 0x6d, 0x51, 0xfe, 0x82, 0x7f, 0xf8, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x50, 0x90, 0x4a, - 0xf5, 0xd0, 0x0c, 0x00, 0x00, + 0x59, 0x6c, 0xf2, 0xde, 0xe7, 0x79, 0xee, 0x7d, 0x5e, 0xbe, 0x77, 0xaf, 0xc0, 0x03, 0xc2, 0x22, + 0xc2, 0x42, 0xe6, 0x71, 0xd2, 0x42, 0xb8, 0x01, 0x6b, 0x9c, 0xd0, 0x33, 0xef, 0x64, 0xaf, 0x8a, + 0x38, 0xdc, 0xf3, 0xf8, 0xab, 0x42, 0x9b, 0x12, 0x4e, 0xcc, 0x6d, 0x0d, 0x2b, 0xf4, 0xc3, 0x0a, + 0x1a, 0x66, 0x3d, 0x1a, 0x2b, 0xd2, 0x86, 0x14, 0x46, 0x4c, 0x09, 0x59, 0x1b, 0x01, 0x09, 0x88, + 0x7c, 0xf4, 0xc4, 0x93, 0x5e, 0xb5, 0x6b, 0x52, 0xc1, 0xab, 0x42, 0x86, 0x52, 0x5e, 0x8d, 0x84, + 0x58, 0xc7, 0x37, 0x75, 0x3c, 0x62, 0x81, 0x77, 0xb2, 0x27, 0xfe, 0xe9, 0xc0, 0x96, 0x0a, 0x54, + 0x94, 0xa2, 0x7a, 0xd1, 0xa1, 0x35, 0x18, 0x85, 0x98, 0x78, 0xf2, 0xef, 0xd0, 0x36, 0xb8, 0x95, + 0x6e, 0x23, 0x5e, 0x54, 0xdc, 0x7d, 0x6d, 0x80, 0xff, 0x97, 0x59, 0xf0, 0x94, 0x22, 0xc8, 0xd1, + 0x97, 0x08, 0x93, 0xc8, 0x7c, 0x04, 0xe6, 0x19, 0xc2, 0x75, 0x44, 0x73, 0xc6, 0x7d, 0x63, 0x67, + 0xb1, 0xb4, 0xd6, 0x8d, 0x9d, 0xe5, 0x33, 0x18, 0x7d, 0x57, 0x74, 0xd5, 0xba, 0xeb, 0x6b, 0x80, + 0xe9, 0x81, 0x05, 0xd6, 0xa9, 0xd6, 0x05, 0x2d, 0x77, 0x43, 0x82, 0xd7, 0xbb, 0xb1, 0xb3, 0xa2, + 0xc1, 0x3a, 0xe2, 0xfa, 0x29, 0xa8, 0xf8, 0xf0, 0xa7, 0xeb, 0xf3, 0xdd, 0x0f, 0x46, 0xd6, 0xae, + 0x26, 0x53, 0xc8, 0x2b, 0xca, 0x0b, 0x70, 0x37, 0x9b, 0x95, 0x8f, 0x58, 0x9b, 0x60, 0x86, 0xcc, + 0x12, 0x58, 0xc1, 0xe8, 0xb4, 0x22, 0xa9, 0x15, 0xb5, 0xb3, 0x4a, 0xd3, 0xea, 0xc6, 0xce, 0x5d, + 0xb5, 0xf3, 0x00, 0xc0, 0xf5, 0x97, 0x31, 0x3a, 0x3d, 0x16, 0x0b, 0x52, 0xcb, 0x7d, 0x6b, 0x80, + 0xdb, 0x65, 0x16, 0x94, 0x43, 0xcc, 0x67, 0x71, 0xfb, 0x0c, 0xcc, 0xc3, 0x88, 0x74, 0x30, 0x97, + 0x5e, 0xef, 0xec, 0x6f, 0x15, 0x74, 0xf5, 0xc5, 0x37, 0x4c, 0x3a, 0xa3, 0xf0, 0x94, 0x84, 0xb8, + 0xf4, 0xde, 0x45, 0xec, 0xcc, 0xf5, 0x94, 0x14, 0xcd, 0xf5, 0x35, 0xdf, 0xfc, 0x02, 0x2c, 0x47, + 0x21, 0xe6, 0xc7, 0xe4, 0x49, 0xbd, 0x4e, 0x11, 0x63, 0xb9, 0x9b, 0x83, 0x16, 0x44, 0xb8, 0xc2, + 0x49, 0x05, 0x2a, 0x80, 0xeb, 0x67, 0x09, 0x45, 0x5b, 0x14, 0x72, 0x6b, 0x64, 0x21, 0x05, 0xd0, + 0x5d, 0x03, 0x2b, 0xda, 0x61, 0x52, 0x39, 0xf7, 0x1f, 0xe5, 0xba, 0xd4, 0xa1, 0xf8, 0xdd, 0xb8, + 0x3e, 0x04, 0x2b, 0xd5, 0x0e, 0xc5, 0x87, 0x94, 0x44, 0x59, 0xdf, 0xdb, 0xdd, 0xd8, 0xc9, 0x29, + 0x8e, 0x00, 0x54, 0x1a, 0x94, 0x44, 0x3d, 0xe7, 0x83, 0xa4, 0x71, 0xde, 0x05, 0x54, 0x7b, 0x17, + 0x3e, 0x53, 0xef, 0xbf, 0xeb, 0x36, 0x6f, 0x42, 0x1c, 0xa0, 0x27, 0xf5, 0x28, 0x9c, 0xa9, 0x04, + 0x0f, 0xc1, 0xff, 0xfa, 0x7b, 0x7c, 0xb5, 0x1b, 0x3b, 0x4b, 0x0a, 0xa9, 0xfb, 0x4b, 0x85, 0xcd, + 0x3d, 0xb0, 0x28, 0x5a, 0x0f, 0x0a, 0x7d, 0x6d, 0x6d, 0xa3, 0x1b, 0x3b, 0xab, 0xbd, 0xae, 0x94, + 0x21, 0xd7, 0x5f, 0xc0, 0xe8, 0x54, 0x66, 0x31, 0xf6, 0x40, 0xc8, 0x64, 0xf3, 0x8a, 0x92, 0x53, + 0x07, 0xa2, 0x97, 0x7f, 0x6a, 0xed, 0x2f, 0x03, 0x6c, 0x94, 0x59, 0x70, 0x84, 0x78, 0x09, 0x35, + 0x08, 0x45, 0x47, 0x08, 0xd7, 0x9f, 0x11, 0xd2, 0xfa, 0x2f, 0x0c, 0x7e, 0x0e, 0x96, 0x6b, 0x04, + 0x73, 0x0a, 0x6b, 0x5c, 0x7e, 0x1f, 0x6d, 0x32, 0xd7, 0x8d, 0x9d, 0x0d, 0x85, 0xcf, 0x84, 0x5d, + 0x7f, 0x29, 0x79, 0x17, 0xdf, 0xae, 0x98, 0x17, 0x66, 0x77, 0x46, 0x9a, 0x65, 0x88, 0xe7, 0xab, + 0x32, 0x7f, 0x91, 0x52, 0xbe, 0x49, 0x48, 0xcb, 0xb5, 0xc1, 0xf6, 0x28, 0x63, 0xa9, 0xf3, 0xd7, + 0x06, 0x58, 0x57, 0x00, 0x79, 0xac, 0xcb, 0x88, 0xc3, 0x3a, 0xe4, 0x70, 0x16, 0xe3, 0x3e, 0x58, + 0x88, 0x34, 0x4d, 0xb7, 0xf7, 0xbd, 0x5e, 0x7b, 0xe3, 0x56, 0xda, 0xde, 0x89, 0x76, 0x69, 0x53, + 0xb7, 0xb8, 0xbe, 0xe3, 0x12, 0xb2, 0xeb, 0xa7, 0x3a, 0xee, 0x3d, 0xf0, 0xfe, 0x88, 0xac, 0xd2, + 0xac, 0xff, 0xbc, 0x01, 0x56, 0xcb, 0x2c, 0x38, 0x24, 0xb4, 0x86, 0x8e, 0x29, 0xc4, 0xac, 0x81, + 0xe8, 0xbb, 0x39, 0x8f, 0x3e, 0x58, 0xe7, 0x3a, 0x81, 0xe1, 0x33, 0x79, 0xbf, 0x1b, 0x3b, 0xdb, + 0x8a, 0x97, 0x80, 0x06, 0xce, 0xe5, 0x28, 0xb2, 0xf9, 0x35, 0x58, 0x4b, 0x96, 0x7b, 0xb7, 0xdb, + 0x2d, 0xa9, 0x68, 0x77, 0x63, 0xc7, 0x1a, 0x50, 0xec, 0xbf, 0xe1, 0x86, 0x89, 0xc5, 0x1d, 0xd1, + 0x30, 0x1f, 0x8e, 0x6c, 0x98, 0x86, 0xa8, 0x5f, 0x3e, 0xa1, 0xb8, 0x16, 0xc8, 0x0d, 0x16, 0x35, + 0xad, 0xf8, 0x85, 0x21, 0x2f, 0x84, 0x6f, 0xda, 0x75, 0xc8, 0xd1, 0x73, 0x39, 0x9a, 0xcd, 0x03, + 0xb0, 0x08, 0x3b, 0xbc, 0x49, 0x68, 0xc8, 0xcf, 0x74, 0xcd, 0x73, 0x7f, 0xfc, 0x96, 0xdf, 0xd0, + 0xb5, 0xd4, 0x09, 0x1c, 0x71, 0x1a, 0xe2, 0xc0, 0xef, 0x41, 0xcd, 0xaf, 0xc0, 0xbc, 0x1a, 0xee, + 0xba, 0xfa, 0x1f, 0x15, 0xc6, 0xfd, 0x4c, 0x28, 0xa8, 0xdd, 0x4a, 0x8b, 0xe2, 0x43, 0xfc, 0x7a, + 0x7d, 0xbe, 0x6b, 0xf8, 0x9a, 0x5e, 0x7c, 0xfc, 0xc3, 0xf5, 0xf9, 0x6e, 0x4f, 0x58, 0x5e, 0x03, + 0x21, 0xe6, 0x88, 0xd6, 0x9a, 0x30, 0xc4, 0x2f, 0x3b, 0x88, 0x86, 0x88, 0x79, 0x03, 0x69, 0xbb, + 0x5b, 0x60, 0x73, 0x60, 0x29, 0x71, 0xb9, 0xff, 0xcb, 0x6d, 0x70, 0xb3, 0xcc, 0x02, 0xf3, 0x25, + 0xb8, 0xd3, 0x3f, 0xcd, 0x3f, 0x1e, 0x9f, 0x60, 0x76, 0xca, 0x5a, 0x8f, 0x67, 0x41, 0xa7, 0x33, + 0xf9, 0x05, 0xb8, 0x25, 0x67, 0xe9, 0x83, 0x89, 0x6c, 0x01, 0xb3, 0xf2, 0x53, 0xc1, 0xfa, 0xd5, + 0xe5, 0xcc, 0x9a, 0xac, 0x2e, 0x60, 0x53, 0xa8, 0xf7, 0x4f, 0x06, 0x59, 0xae, 0xbe, 0xa9, 0x30, + 0x45, 0xb9, 0x7a, 0xe8, 0x69, 0xca, 0x35, 0x7c, 0x63, 0x9b, 0xdf, 0x1b, 0x60, 0x75, 0xe8, 0xd2, + 0xda, 0x9b, 0x28, 0x35, 0x48, 0xb1, 0x3e, 0x9b, 0x99, 0x92, 0xa6, 0xf0, 0xa3, 0x01, 0xd6, 0x86, + 0x27, 0xc6, 0xfe, 0x34, 0x82, 0x59, 0x8e, 0x55, 0x9c, 0x9d, 0x93, 0x66, 0x71, 0x0a, 0x96, 0xb3, + 0xd7, 0x60, 0x61, 0xa2, 0x58, 0x06, 0x6f, 0x1d, 0xcc, 0x86, 0x4f, 0x37, 0xe6, 0x60, 0x29, 0x73, + 0x1b, 0x4c, 0xee, 0x99, 0x7e, 0xb8, 0xf5, 0xe9, 0x4c, 0xf0, 0x64, 0xd7, 0xd2, 0xf3, 0x8b, 0x4b, + 0xdb, 0x78, 0x73, 0x69, 0x1b, 0x6f, 0x2f, 0x6d, 0xe3, 0xe7, 0x2b, 0x7b, 0xee, 0xcd, 0x95, 0x3d, + 0xf7, 0xf7, 0x95, 0x3d, 0xf7, 0xed, 0x41, 0x10, 0xf2, 0x66, 0xa7, 0x5a, 0xa8, 0x91, 0xc8, 0xc3, + 0xa8, 0xc3, 0x29, 0xc1, 0x79, 0x42, 0x83, 0xe4, 0xd9, 0x3b, 0xd9, 0xf7, 0x5e, 0x65, 0xaf, 0x3f, + 0x7e, 0xd6, 0x46, 0xac, 0x3a, 0x2f, 0x7f, 0xc4, 0x7f, 0xf2, 0x6f, 0x00, 0x00, 0x00, 0xff, 0xff, + 0x58, 0x4d, 0x1f, 0x45, 0xd3, 0x0c, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/transfer/ibc_handlers.go b/x/transfer/ibc_handlers.go index e14c85f34..371dfdcbc 100644 --- a/x/transfer/ibc_handlers.go +++ b/x/transfer/ibc_handlers.go @@ -7,9 +7,9 @@ import ( transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - "github.com/neutron-org/neutron/x/contractmanager/keeper" - feetypes "github.com/neutron-org/neutron/x/feerefunder/types" - "github.com/neutron-org/neutron/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" + feetypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/interchaintxs/types" ) // HandleAcknowledgement passes the acknowledgement data to the appropriate contract via a sudo call. diff --git a/x/transfer/ibc_handlers_test.go b/x/transfer/ibc_handlers_test.go index eddc57c8d..48fca738a 100644 --- a/x/transfer/ibc_handlers_test.go +++ b/x/transfer/ibc_handlers_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - "github.com/neutron-org/neutron/x/contractmanager/keeper" + "github.com/neutron-org/neutron/v2/x/contractmanager/keeper" sdk "github.com/cosmos/cosmos-sdk/types" transfertypes "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" @@ -12,12 +12,12 @@ import ( "github.com/golang/mock/gomock" "github.com/stretchr/testify/require" - "github.com/neutron-org/neutron/testutil" - mock_types "github.com/neutron-org/neutron/testutil/mocks/transfer/types" - testkeeper "github.com/neutron-org/neutron/testutil/transfer/keeper" - feetypes "github.com/neutron-org/neutron/x/feerefunder/types" - ictxtypes "github.com/neutron-org/neutron/x/interchaintxs/types" - "github.com/neutron-org/neutron/x/transfer" + "github.com/neutron-org/neutron/v2/testutil" + mock_types "github.com/neutron-org/neutron/v2/testutil/mocks/transfer/types" + testkeeper "github.com/neutron-org/neutron/v2/testutil/transfer/keeper" + feetypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" + ictxtypes "github.com/neutron-org/neutron/v2/x/interchaintxs/types" + "github.com/neutron-org/neutron/v2/x/transfer" ) const TestCosmosAddress = "cosmos10h9stc5v6ntgeygf5xf945njqq5h32r53uquvw" diff --git a/x/transfer/keeper/keeper.go b/x/transfer/keeper/keeper.go index 940b716b5..75795bbaf 100644 --- a/x/transfer/keeper/keeper.go +++ b/x/transfer/keeper/keeper.go @@ -16,8 +16,8 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" porttypes "github.com/cosmos/ibc-go/v7/modules/core/05-port/types" - feetypes "github.com/neutron-org/neutron/x/feerefunder/types" - wrappedtypes "github.com/neutron-org/neutron/x/transfer/types" + feetypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" + wrappedtypes "github.com/neutron-org/neutron/v2/x/transfer/types" ) // KeeperTransferWrapper is a wrapper for original ibc keeper to override response for "Transfer" method diff --git a/x/transfer/keeper/keeper_test.go b/x/transfer/keeper/keeper_test.go index c8b857836..de42d8ee5 100644 --- a/x/transfer/keeper/keeper_test.go +++ b/x/transfer/keeper/keeper_test.go @@ -9,10 +9,10 @@ import ( channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" "github.com/stretchr/testify/suite" - "github.com/neutron-org/neutron/app/params" - "github.com/neutron-org/neutron/testutil" - feetypes "github.com/neutron-org/neutron/x/feerefunder/types" - "github.com/neutron-org/neutron/x/transfer/types" + "github.com/neutron-org/neutron/v2/app/params" + "github.com/neutron-org/neutron/v2/testutil" + feetypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/transfer/types" ) const ( diff --git a/x/transfer/module.go b/x/transfer/module.go index a642920f9..f9db91a9b 100644 --- a/x/transfer/module.go +++ b/x/transfer/module.go @@ -15,8 +15,8 @@ import ( "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - wrapkeeper "github.com/neutron-org/neutron/x/transfer/keeper" - neutrontypes "github.com/neutron-org/neutron/x/transfer/types" + wrapkeeper "github.com/neutron-org/neutron/v2/x/transfer/keeper" + neutrontypes "github.com/neutron-org/neutron/v2/x/transfer/types" ) /* diff --git a/x/transfer/types/expected_keepers.go b/x/transfer/types/expected_keepers.go index a834dd3a6..d76811bce 100644 --- a/x/transfer/types/expected_keepers.go +++ b/x/transfer/types/expected_keepers.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/auth/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" - feerefundertypes "github.com/neutron-org/neutron/x/feerefunder/types" + feerefundertypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) type WasmKeeper interface { diff --git a/x/transfer/types/query.pb.go b/x/transfer/types/query.pb.go index e3f548872..3ead3f533 100644 --- a/x/transfer/types/query.pb.go +++ b/x/transfer/types/query.pb.go @@ -31,30 +31,31 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package func init() { proto.RegisterFile("neutron/transfer/v1/query.proto", fileDescriptor_560cfedb574fdf6b) } var fileDescriptor_560cfedb574fdf6b = []byte{ - // 365 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0xcf, 0x4a, 0xc3, 0x30, - 0x1c, 0xc7, 0x57, 0x61, 0x03, 0xe3, 0x45, 0x72, 0x1c, 0x23, 0xc2, 0xd8, 0x41, 0xa7, 0x26, 0x76, - 0x9b, 0x3e, 0x80, 0x78, 0xd0, 0x9b, 0x8a, 0x27, 0x2f, 0x92, 0xd6, 0xd8, 0x16, 0xb6, 0x24, 0x4b, - 0xd2, 0xe1, 0x90, 0x5d, 0x7c, 0x02, 0x61, 0xaf, 0xe0, 0x41, 0xc4, 0x07, 0xf1, 0x38, 0xf0, 0xe2, - 0x51, 0x36, 0x1f, 0x44, 0x9a, 0xb6, 0x4e, 0xc1, 0x3f, 0xeb, 0xad, 0xd0, 0xef, 0x27, 0xdf, 0xcf, - 0xef, 0x97, 0x16, 0xac, 0x71, 0x16, 0x1b, 0x25, 0x38, 0x31, 0x8a, 0x72, 0x7d, 0xc5, 0x14, 0x19, - 0xb8, 0xa4, 0x1f, 0x33, 0x35, 0xc4, 0x52, 0x09, 0x23, 0xe0, 0x6a, 0x16, 0xc0, 0x79, 0xa0, 0xba, - 0x1e, 0x79, 0x3e, 0xa1, 0x52, 0x76, 0x23, 0x9f, 0x9a, 0x48, 0x70, 0xfd, 0x1b, 0x5b, 0xad, 0x05, - 0x42, 0x04, 0x5d, 0x46, 0xa8, 0x8c, 0x08, 0xe5, 0x5c, 0x98, 0x34, 0x9f, 0xbe, 0x6d, 0xdd, 0x97, - 0x41, 0xf9, 0x24, 0x49, 0xc3, 0x27, 0x07, 0x80, 0x03, 0xc6, 0x45, 0xef, 0x4c, 0x51, 0x9f, 0xc1, - 0x0e, 0x8e, 0x3c, 0x1f, 0x7f, 0x6d, 0xf8, 0x2c, 0xc7, 0x03, 0x17, 0x5b, 0x66, 0x1e, 0x3f, 0x65, - 0xfd, 0x98, 0x69, 0x53, 0xdd, 0x2d, 0x48, 0x69, 0x29, 0xb8, 0x66, 0x75, 0xf7, 0xf6, 0xe5, 0x7d, - 0xbc, 0xb4, 0x09, 0x37, 0x48, 0x36, 0xd6, 0xf7, 0x71, 0x2e, 0x13, 0xe2, 0xc2, 0x24, 0x88, 0x26, - 0x37, 0x21, 0xd5, 0xe1, 0x08, 0x3e, 0x38, 0x60, 0x65, 0x7e, 0x92, 0x86, 0xc5, 0x9a, 0x75, 0x2e, - 0xbc, 0x57, 0x14, 0xcb, 0x8c, 0x9b, 0xd6, 0xb8, 0x01, 0xeb, 0xff, 0x1b, 0xc3, 0xb1, 0x03, 0x2a, - 0xc7, 0x54, 0xd1, 0x9e, 0x86, 0x3b, 0x0b, 0xd4, 0xa5, 0xd1, 0x5c, 0xd0, 0x2d, 0x40, 0x64, 0x6e, - 0x0d, 0xeb, 0x86, 0x60, 0xed, 0x67, 0x37, 0x99, 0xaa, 0x3c, 0x3a, 0x60, 0xd9, 0x4e, 0x76, 0x48, - 0x75, 0x08, 0xdb, 0x8b, 0xee, 0x21, 0x49, 0xe7, 0x6e, 0x9d, 0x62, 0x50, 0xa6, 0xd7, 0xb2, 0x7a, - 0x5b, 0xb0, 0xf9, 0xd7, 0xea, 0x92, 0x4b, 0x4e, 0x2e, 0xdb, 0xae, 0x70, 0xb4, 0x7f, 0xf4, 0x3c, - 0x45, 0xce, 0x64, 0x8a, 0x9c, 0xb7, 0x29, 0x72, 0xee, 0x66, 0xa8, 0x34, 0x99, 0xa1, 0xd2, 0xeb, - 0x0c, 0x95, 0xce, 0x49, 0x10, 0x99, 0x30, 0xf6, 0xb0, 0x2f, 0x7a, 0x24, 0xfb, 0x4b, 0xb6, 0x85, - 0x0a, 0xf2, 0x67, 0x72, 0x3d, 0x3f, 0xdc, 0x0c, 0x25, 0xd3, 0x5e, 0xc5, 0x7e, 0xf8, 0xed, 0x8f, - 0x00, 0x00, 0x00, 0xff, 0xff, 0x7c, 0x55, 0x6a, 0x27, 0x75, 0x03, 0x00, 0x00, + // 371 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0x4f, 0x4b, 0xf3, 0x30, + 0x1c, 0xc7, 0xd7, 0x07, 0x36, 0x78, 0xf2, 0x5c, 0x1e, 0x72, 0x1c, 0x23, 0xc2, 0xd8, 0x41, 0xa7, + 0x26, 0xb6, 0x9b, 0xbe, 0x00, 0xf1, 0xe0, 0xc1, 0x83, 0x8a, 0x27, 0x2f, 0x92, 0xd6, 0xd8, 0x16, + 0xb6, 0x24, 0x4b, 0xd2, 0xe1, 0x90, 0x5d, 0x7c, 0x05, 0xc2, 0xde, 0x82, 0x07, 0x11, 0x5f, 0x88, + 0xc7, 0x81, 0x17, 0x8f, 0xb2, 0xf9, 0x42, 0xa4, 0x69, 0xeb, 0x14, 0xfc, 0xb3, 0xde, 0x0a, 0xfd, + 0x7e, 0xf2, 0xfd, 0xfc, 0x7e, 0x69, 0xc1, 0x0a, 0x67, 0x89, 0x51, 0x82, 0x13, 0xa3, 0x28, 0xd7, + 0x17, 0x4c, 0x91, 0xa1, 0x4b, 0x06, 0x09, 0x53, 0x23, 0x2c, 0x95, 0x30, 0x02, 0xfe, 0xcf, 0x03, + 0xb8, 0x08, 0xd4, 0x57, 0x63, 0x3f, 0x20, 0x54, 0xca, 0x5e, 0x1c, 0x50, 0x13, 0x0b, 0xae, 0xbf, + 0x63, 0xeb, 0x8d, 0x50, 0x88, 0xb0, 0xc7, 0x08, 0x95, 0x31, 0xa1, 0x9c, 0x0b, 0x93, 0xe5, 0xb3, + 0xb7, 0xde, 0x6d, 0x15, 0x54, 0x8f, 0xd2, 0x34, 0x7c, 0x70, 0x00, 0xd8, 0x63, 0x5c, 0xf4, 0x4f, + 0x14, 0x0d, 0x18, 0xec, 0xe2, 0xd8, 0x0f, 0xf0, 0xc7, 0x86, 0xf7, 0x72, 0x3c, 0x74, 0xb1, 0x65, + 0x16, 0xf1, 0x63, 0x36, 0x48, 0x98, 0x36, 0xf5, 0xed, 0x92, 0x94, 0x96, 0x82, 0x6b, 0xd6, 0x74, + 0xaf, 0x9f, 0x5e, 0x27, 0x7f, 0xd6, 0xe1, 0x1a, 0xc9, 0xc7, 0xfa, 0x3c, 0xce, 0x79, 0x4a, 0x9c, + 0x99, 0x14, 0xd1, 0xe4, 0x2a, 0xa2, 0x3a, 0x1a, 0xc3, 0x3b, 0x07, 0xfc, 0x5b, 0x9c, 0xa4, 0x61, + 0xb9, 0x66, 0x5d, 0x08, 0xef, 0x94, 0xc5, 0x72, 0xe3, 0xb6, 0x35, 0x6e, 0xc1, 0xe6, 0xef, 0xc6, + 0x70, 0xe2, 0x80, 0xda, 0x21, 0x55, 0xb4, 0xaf, 0xe1, 0xd6, 0x12, 0x75, 0x59, 0xb4, 0x10, 0x74, + 0x4b, 0x10, 0xb9, 0x5b, 0xcb, 0xba, 0x21, 0xd8, 0xf8, 0xda, 0x4d, 0x66, 0x2a, 0xf7, 0x0e, 0xf8, + 0x6b, 0x27, 0xdb, 0xa7, 0x3a, 0x82, 0x9d, 0x65, 0xf7, 0x90, 0xa6, 0x0b, 0xb7, 0x6e, 0x39, 0x28, + 0xd7, 0xf3, 0xac, 0xde, 0x06, 0x6c, 0xff, 0xb4, 0xba, 0xf4, 0x92, 0xd3, 0xcb, 0xb6, 0x2b, 0x1c, + 0xef, 0x1e, 0x3c, 0xce, 0x90, 0x33, 0x9d, 0x21, 0xe7, 0x65, 0x86, 0x9c, 0x9b, 0x39, 0xaa, 0x4c, + 0xe7, 0xa8, 0xf2, 0x3c, 0x47, 0x95, 0x53, 0x2f, 0x8c, 0x4d, 0x94, 0xf8, 0x38, 0x10, 0x7d, 0x92, + 0xff, 0x25, 0x9b, 0x42, 0x85, 0xc5, 0x33, 0x19, 0x7a, 0xe4, 0x72, 0x71, 0xbe, 0x19, 0x49, 0xa6, + 0xfd, 0x9a, 0xfd, 0xf6, 0x3b, 0x6f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x76, 0x20, 0x8f, 0x37, 0x78, + 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/transfer/types/tx.go b/x/transfer/types/tx.go index 464a28c95..1dbdd7bef 100644 --- a/x/transfer/types/tx.go +++ b/x/transfer/types/tx.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/ibc-go/v7/modules/apps/transfer/types" "google.golang.org/grpc" - feerefundertypes "github.com/neutron-org/neutron/x/feerefunder/types" + feerefundertypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/transfer/types/tx.pb.go b/x/transfer/types/tx.pb.go index 2c7d5daf4..21aed0235 100644 --- a/x/transfer/types/tx.pb.go +++ b/x/transfer/types/tx.pb.go @@ -19,7 +19,7 @@ import ( codes "google.golang.org/grpc/codes" status "google.golang.org/grpc/status" - types2 "github.com/neutron-org/neutron/x/feerefunder/types" + types2 "github.com/neutron-org/neutron/v2/x/feerefunder/types" ) // Reference imports to suppress errors if they are not otherwise used. @@ -151,42 +151,42 @@ func init() { func init() { proto.RegisterFile("neutron/transfer/v1/tx.proto", fileDescriptor_c44193c4a9c18e30) } var fileDescriptor_c44193c4a9c18e30 = []byte{ - // 545 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x53, 0xc1, 0x6a, 0xdb, 0x40, - 0x10, 0x95, 0x6a, 0x27, 0x71, 0xd6, 0x24, 0xa4, 0xdb, 0x36, 0x6c, 0x4c, 0x22, 0x05, 0x41, 0x21, - 0x97, 0xee, 0xd6, 0x29, 0xa5, 0x90, 0x53, 0x71, 0xa0, 0xd4, 0x87, 0x80, 0x11, 0x81, 0x42, 0x2f, - 0xae, 0x24, 0x8f, 0x65, 0x51, 0x6b, 0xd7, 0xdd, 0x5d, 0x99, 0xe4, 0x0f, 0x7a, 0xec, 0x27, 0xe4, - 0x73, 0x72, 0xcc, 0xb1, 0x27, 0x53, 0xec, 0x4b, 0x8f, 0xc5, 0x5f, 0x50, 0x24, 0xad, 0x1c, 0xbb, - 0x87, 0x9e, 0x34, 0x33, 0xef, 0xcd, 0xce, 0xbc, 0x99, 0x11, 0x3a, 0xe6, 0x90, 0x69, 0x29, 0x38, - 0xd3, 0x32, 0xe0, 0x6a, 0x08, 0x92, 0x4d, 0xdb, 0x4c, 0xdf, 0xd0, 0x89, 0x14, 0x5a, 0xe0, 0x03, - 0x83, 0xd2, 0x0a, 0x6d, 0x3d, 0x8f, 0x45, 0x2c, 0x0a, 0x90, 0xe5, 0x56, 0xc9, 0x6b, 0x39, 0x91, - 0x50, 0xa9, 0x50, 0x2c, 0x0c, 0x14, 0xb0, 0x69, 0x3b, 0x04, 0x1d, 0xb4, 0x59, 0x24, 0x12, 0x6e, - 0x70, 0x37, 0x09, 0x23, 0x16, 0x09, 0x09, 0x2c, 0x1a, 0x27, 0xc0, 0x75, 0x5e, 0xa4, 0xb4, 0x0c, - 0xe1, 0xa4, 0x6a, 0x63, 0x08, 0x20, 0x61, 0x98, 0xf1, 0x01, 0xc8, 0xdc, 0x2e, 0x61, 0xef, 0x4f, - 0x0d, 0x35, 0xaf, 0x54, 0x7c, 0x6d, 0xba, 0xc0, 0xef, 0x50, 0x53, 0x89, 0x4c, 0x46, 0xd0, 0x9f, - 0x08, 0xa9, 0x89, 0x7d, 0x6a, 0x9f, 0xed, 0x76, 0x0e, 0x97, 0x33, 0x17, 0xdf, 0x06, 0xe9, 0xf8, - 0xc2, 0x5b, 0x03, 0x3d, 0x1f, 0x95, 0x5e, 0x4f, 0x48, 0x8d, 0xdf, 0xa3, 0x7d, 0x83, 0x45, 0xa3, - 0x80, 0x73, 0x18, 0x93, 0x27, 0x45, 0xee, 0xd1, 0x72, 0xe6, 0xbe, 0xd8, 0xc8, 0x35, 0xb8, 0xe7, - 0xef, 0x95, 0x81, 0xcb, 0xd2, 0xc7, 0x6f, 0xd1, 0x96, 0x16, 0x5f, 0x81, 0x93, 0xda, 0xa9, 0x7d, - 0xd6, 0x3c, 0x3f, 0xa2, 0xa5, 0x74, 0x9a, 0x4b, 0xa7, 0x46, 0x3a, 0xbd, 0x14, 0x09, 0xef, 0xd4, - 0xef, 0x67, 0xae, 0xe5, 0x97, 0x6c, 0x7c, 0x88, 0xb6, 0x15, 0xe4, 0xaa, 0x48, 0x3d, 0x2f, 0xe8, - 0x1b, 0x0f, 0xb7, 0x50, 0x43, 0x42, 0x04, 0xc9, 0x14, 0x24, 0xd9, 0x2a, 0x90, 0x95, 0x8f, 0xbf, - 0xa0, 0x7d, 0x9d, 0xa4, 0x20, 0x32, 0xdd, 0x1f, 0x41, 0x12, 0x8f, 0x34, 0xd9, 0x2e, 0x6a, 0xb6, - 0x68, 0x12, 0x46, 0x34, 0x1f, 0x27, 0x35, 0x43, 0x9c, 0xb6, 0xe9, 0xc7, 0x82, 0xd1, 0x39, 0xc9, - 0x8b, 0x3e, 0x8a, 0xd9, 0xcc, 0xf7, 0xfc, 0x3d, 0x13, 0x28, 0xd9, 0xb8, 0x8b, 0x9e, 0x56, 0x8c, - 0xfc, 0xab, 0x74, 0x90, 0x4e, 0xc8, 0xce, 0xa9, 0x7d, 0x56, 0xef, 0x1c, 0x2f, 0x67, 0x2e, 0xd9, - 0x7c, 0x64, 0x45, 0xf1, 0xfc, 0x03, 0x13, 0xbb, 0xae, 0x42, 0x18, 0xa3, 0x7a, 0x0a, 0xa9, 0x20, - 0x8d, 0x42, 0x44, 0x61, 0xe3, 0xd7, 0xa8, 0x36, 0x04, 0x20, 0xbb, 0x45, 0xd7, 0x84, 0x56, 0xc7, - 0xb4, 0xb6, 0x63, 0xfa, 0x01, 0xc0, 0x0c, 0x2a, 0xa7, 0x5e, 0x34, 0xbe, 0xdf, 0xb9, 0xd6, 0xef, - 0x3b, 0xd7, 0xf2, 0x7a, 0xe8, 0xd9, 0xda, 0xc6, 0x7d, 0x50, 0x13, 0xc1, 0x15, 0x60, 0x17, 0x35, - 0x15, 0x7c, 0xcb, 0x80, 0x47, 0xd0, 0x4f, 0x06, 0xc5, 0xe6, 0xeb, 0x3e, 0xaa, 0x42, 0xdd, 0x01, - 0x26, 0x68, 0x67, 0x63, 0xb5, 0x7e, 0xe5, 0x9e, 0x7f, 0x42, 0xb5, 0x2b, 0x15, 0xe3, 0x1e, 0x6a, - 0xac, 0xee, 0xe8, 0x84, 0xfe, 0x7b, 0xe0, 0x74, 0xad, 0x68, 0xeb, 0xe5, 0x7f, 0xe1, 0xaa, 0xa7, - 0x4e, 0xf7, 0x7e, 0xee, 0xd8, 0x0f, 0x73, 0xc7, 0xfe, 0x35, 0x77, 0xec, 0x1f, 0x0b, 0xc7, 0x7a, - 0x58, 0x38, 0xd6, 0xcf, 0x85, 0x63, 0x7d, 0x66, 0x71, 0xa2, 0x47, 0x59, 0x48, 0x23, 0x91, 0x32, - 0xf3, 0xd4, 0x2b, 0x21, 0xe3, 0xca, 0x66, 0x37, 0x8f, 0xbf, 0x9d, 0xbe, 0x9d, 0x80, 0x0a, 0xb7, - 0x8b, 0x7b, 0x7f, 0xf3, 0x37, 0x00, 0x00, 0xff, 0xff, 0xe5, 0xdd, 0x3b, 0xd6, 0x97, 0x03, 0x00, - 0x00, + // 550 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x53, 0xc1, 0x6a, 0xdb, 0x4c, + 0x10, 0x96, 0x7e, 0x3b, 0x89, 0xb3, 0x26, 0x21, 0xff, 0xb6, 0x0d, 0x1b, 0x93, 0x48, 0x41, 0x50, + 0xc8, 0xa5, 0xbb, 0xb5, 0x4b, 0x29, 0xe4, 0x54, 0x1c, 0x28, 0x0d, 0x34, 0x60, 0x44, 0xa0, 0xd0, + 0x8b, 0x2b, 0xc9, 0x63, 0x59, 0xd4, 0xda, 0x75, 0x77, 0x57, 0x26, 0x79, 0x83, 0x1e, 0xfb, 0x08, + 0x79, 0x9c, 0x1c, 0x73, 0xec, 0xc9, 0x14, 0xfb, 0xd2, 0x63, 0xf1, 0x13, 0x14, 0x49, 0x2b, 0xc7, + 0xee, 0xa1, 0x27, 0xcd, 0xcc, 0xf7, 0xcd, 0xce, 0x7c, 0x33, 0x23, 0x74, 0xcc, 0x21, 0xd3, 0x52, + 0x70, 0xa6, 0x65, 0xc0, 0xd5, 0x10, 0x24, 0x9b, 0xb6, 0x99, 0xbe, 0xa1, 0x13, 0x29, 0xb4, 0xc0, + 0x07, 0x06, 0xa5, 0x15, 0xda, 0x7a, 0x1a, 0x8b, 0x58, 0x14, 0x20, 0xcb, 0xad, 0x92, 0xd7, 0x72, + 0x22, 0xa1, 0x52, 0xa1, 0x58, 0x18, 0x28, 0x60, 0xd3, 0x76, 0x08, 0x3a, 0x68, 0xb3, 0x48, 0x24, + 0xdc, 0xe0, 0x6e, 0x12, 0x46, 0x2c, 0x12, 0x12, 0x58, 0x34, 0x4e, 0x80, 0xeb, 0xbc, 0x48, 0x69, + 0x19, 0xc2, 0x49, 0xd5, 0xc6, 0x10, 0x40, 0xc2, 0x30, 0xe3, 0x03, 0x90, 0xb9, 0x5d, 0xc2, 0xde, + 0xef, 0x1a, 0x6a, 0x5e, 0xa9, 0xf8, 0xda, 0x74, 0x81, 0xdf, 0xa0, 0xa6, 0x12, 0x99, 0x8c, 0xa0, + 0x3f, 0x11, 0x52, 0x13, 0xfb, 0xd4, 0x3e, 0xdb, 0xed, 0x1e, 0x2e, 0x67, 0x2e, 0xbe, 0x0d, 0xd2, + 0xf1, 0xb9, 0xb7, 0x06, 0x7a, 0x3e, 0x2a, 0xbd, 0x9e, 0x90, 0x1a, 0xbf, 0x45, 0xfb, 0x06, 0x8b, + 0x46, 0x01, 0xe7, 0x30, 0x26, 0xff, 0x15, 0xb9, 0x47, 0xcb, 0x99, 0xfb, 0x6c, 0x23, 0xd7, 0xe0, + 0x9e, 0xbf, 0x57, 0x06, 0x2e, 0x4a, 0x1f, 0xbf, 0x46, 0x5b, 0x5a, 0x7c, 0x01, 0x4e, 0x6a, 0xa7, + 0xf6, 0x59, 0xb3, 0x73, 0x44, 0x4b, 0xe9, 0x34, 0x97, 0x4e, 0x8d, 0x74, 0x7a, 0x21, 0x12, 0xde, + 0xad, 0xdf, 0xcf, 0x5c, 0xcb, 0x2f, 0xd9, 0xf8, 0x10, 0x6d, 0x2b, 0xc8, 0x55, 0x91, 0x7a, 0x5e, + 0xd0, 0x37, 0x1e, 0x6e, 0xa1, 0x86, 0x84, 0x08, 0x92, 0x29, 0x48, 0xb2, 0x55, 0x20, 0x2b, 0x1f, + 0x7f, 0x46, 0xfb, 0x3a, 0x49, 0x41, 0x64, 0xba, 0x3f, 0x82, 0x24, 0x1e, 0x69, 0xb2, 0x5d, 0xd4, + 0x6c, 0xd1, 0x24, 0x8c, 0x68, 0x3e, 0x4e, 0x6a, 0x86, 0x38, 0x6d, 0xd3, 0xf7, 0x05, 0xa3, 0x7b, + 0x92, 0x17, 0x7d, 0x14, 0xb3, 0x99, 0xef, 0xf9, 0x7b, 0x26, 0x50, 0xb2, 0xf1, 0x25, 0xfa, 0xbf, + 0x62, 0xe4, 0x5f, 0xa5, 0x83, 0x74, 0x42, 0x76, 0x4e, 0xed, 0xb3, 0x7a, 0xf7, 0x78, 0x39, 0x73, + 0xc9, 0xe6, 0x23, 0x2b, 0x8a, 0xe7, 0x1f, 0x98, 0xd8, 0x75, 0x15, 0xc2, 0x18, 0xd5, 0x53, 0x48, + 0x05, 0x69, 0x14, 0x22, 0x0a, 0x1b, 0xbf, 0x44, 0xb5, 0x21, 0x00, 0xd9, 0x2d, 0xba, 0x26, 0xb4, + 0x3a, 0xa6, 0xb5, 0x1d, 0xd3, 0x77, 0x00, 0x66, 0x50, 0x39, 0xf5, 0xbc, 0xf1, 0xed, 0xce, 0xb5, + 0x7e, 0xdd, 0xb9, 0x96, 0xd7, 0x43, 0x4f, 0xd6, 0x36, 0xee, 0x83, 0x9a, 0x08, 0xae, 0x00, 0xbb, + 0xa8, 0xa9, 0xe0, 0x6b, 0x06, 0x3c, 0x82, 0x7e, 0x32, 0x28, 0x36, 0x5f, 0xf7, 0x51, 0x15, 0xba, + 0x1c, 0x60, 0x82, 0x76, 0x36, 0x56, 0xeb, 0x57, 0x6e, 0xe7, 0x23, 0xaa, 0x5d, 0xa9, 0x18, 0xf7, + 0x50, 0x63, 0x75, 0x47, 0x27, 0xf4, 0xef, 0x03, 0xa7, 0x6b, 0x45, 0x5b, 0xcf, 0xff, 0x09, 0x57, + 0x3d, 0x75, 0x3f, 0xdc, 0xcf, 0x1d, 0xfb, 0x61, 0xee, 0xd8, 0x3f, 0xe7, 0x8e, 0xfd, 0x7d, 0xe1, + 0x58, 0x0f, 0x0b, 0xc7, 0xfa, 0xb1, 0x70, 0xac, 0x4f, 0x9d, 0x38, 0xd1, 0xa3, 0x2c, 0xa4, 0x91, + 0x48, 0x99, 0x79, 0xea, 0x85, 0x90, 0x71, 0x65, 0xb3, 0x69, 0x87, 0xdd, 0x3c, 0xfe, 0x79, 0xfa, + 0x76, 0x02, 0x2a, 0xdc, 0x2e, 0x4e, 0xfe, 0xd5, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xd9, 0xd0, + 0x7b, 0x2a, 0x9a, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/transfer/types/tx_test.go b/x/transfer/types/tx_test.go index d6737e814..6aff13509 100644 --- a/x/transfer/types/tx_test.go +++ b/x/transfer/types/tx_test.go @@ -8,8 +8,8 @@ import ( ibcclienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" "github.com/stretchr/testify/require" - feetypes "github.com/neutron-org/neutron/x/feerefunder/types" - "github.com/neutron-org/neutron/x/transfer/types" + feetypes "github.com/neutron-org/neutron/v2/x/feerefunder/types" + "github.com/neutron-org/neutron/v2/x/transfer/types" ) const TestAddress = "cosmos10h9stc5v6ntgeygf5xf945njqq5h32r53uquvw" From 440b072c33bd06f1cef07891bd8c17ba655fa191 Mon Sep 17 00:00:00 2001 From: pr0n00gler Date: Mon, 4 Dec 2023 13:54:34 +0200 Subject: [PATCH 2/2] fix imports and links --- app/upgrades/v2.0.0/upgrades_test.go | 12 ++++++------ testutil/test_helpers.go | 4 ++-- wasmbinding/bindings/msg.go | 2 +- x/contractmanager/keeper/failure.go | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/app/upgrades/v2.0.0/upgrades_test.go b/app/upgrades/v2.0.0/upgrades_test.go index 995e8e728..0de6a6354 100644 --- a/app/upgrades/v2.0.0/upgrades_test.go +++ b/app/upgrades/v2.0.0/upgrades_test.go @@ -24,7 +24,7 @@ import ( globalfeetypes "github.com/cosmos/gaia/v11/x/globalfee/types" "github.com/stretchr/testify/suite" - v110 "github.com/neutron-org/neutron/v2/app/upgrades/v2.0.0" + v200 "github.com/neutron-org/neutron/v2/app/upgrades/v2.0.0" "github.com/neutron-org/neutron/v2/testutil" ) @@ -80,7 +80,7 @@ func (suite *UpgradeTestSuite) TestGlobalFeesUpgrade() { suite.Require().True(globalFeeSubspace.Has(ctx, globalfeetypes.ParamStoreKeyMaxTotalBypassMinFeeMsgGasUsage)) upgrade := upgradetypes.Plan{ - Name: v110.UpgradeName, + Name: v200.UpgradeName, Info: "some text here", Height: 100, } @@ -126,7 +126,7 @@ func (suite *UpgradeTestSuite) TestRewardDenomsUpgrade() { suite.Require().Equal(denomsBefore, []string{params.DefaultDenom}) upgrade := upgradetypes.Plan{ - Name: v110.UpgradeName, + Name: v200.UpgradeName, Info: "some text here", Height: 100, } @@ -154,7 +154,7 @@ func (suite *UpgradeTestSuite) TestAdminModuleUpgrade() { suite.Require().Error(err) upgrade := upgradetypes.Plan{ - Name: v110.UpgradeName, + Name: v200.UpgradeName, Info: "some text here", Height: 100, } @@ -185,7 +185,7 @@ func (suite *UpgradeTestSuite) TestTokenFactoryUpgrade() { suite.Require().Equal(denomFeeBefore, sdk.NewCoins(sdk.NewCoin(params.DefaultDenom, sdk.NewInt(100_000_000)))) upgrade := upgradetypes.Plan{ - Name: v110.UpgradeName, + Name: v200.UpgradeName, Info: "some text here", Height: 100, } @@ -220,7 +220,7 @@ func (suite *UpgradeTestSuite) TestRegisterInterchainAccountCreationFee() { contractAddressBeforeUpgrade := suite.InstantiateTestContract(ctx, sdk.AccAddress("neutron1_ica"), codeIDBefore) upgrade := upgradetypes.Plan{ - Name: v110.UpgradeName, + Name: v200.UpgradeName, Info: "some text here", Height: 100, } diff --git a/testutil/test_helpers.go b/testutil/test_helpers.go index 8a40dcced..b69e28043 100644 --- a/testutil/test_helpers.go +++ b/testutil/test_helpers.go @@ -282,8 +282,8 @@ func (suite *IBCConnectionTestSuite) GetNeutronZoneApp(chain *ibctesting.TestCha } func (suite *IBCConnectionTestSuite) StoreTestCode(ctx sdk.Context, addr sdk.AccAddress, path string) uint64 { - // wasm file built with https://github.com/neutron-org/neutron/v2-contracts/tree/main/contracts/reflect - // wasm file built with https://github.com/neutron-org/neutron/v2-dev/tree/feat/ica-register-fee-update/contracts/neutron_interchain_txs + // wasm file built with https://github.com/neutron-org/neutron-sdk/tree/main/contracts/reflect + // wasm file built with https://github.com/neutron-org/neutron-dev-contracts/tree/feat/ica-register-fee-update/contracts/neutron_interchain_txs wasmCode, err := os.ReadFile(path) suite.Require().NoError(err) diff --git a/wasmbinding/bindings/msg.go b/wasmbinding/bindings/msg.go index 1804032fb..a3d03ecca 100644 --- a/wasmbinding/bindings/msg.go +++ b/wasmbinding/bindings/msg.go @@ -19,7 +19,7 @@ type ProtobufAny struct { } // NeutronMsg is used like a sum type to hold one of custom Neutron messages. -// Follow https://github.com/neutron-org/neutron/v2-sdk/blob/main/packages/neutron-sdk/src/bindings/msg.rs +// Follow https://github.com/neutron-org/neutron-sdk/blob/main/packages/neutron-sdk/src/bindings/msg.rs // for more information. type NeutronMsg struct { SubmitTx *SubmitTx `json:"submit_tx,omitempty"` diff --git a/x/contractmanager/keeper/failure.go b/x/contractmanager/keeper/failure.go index 5cfbd9e59..6b774ef54 100644 --- a/x/contractmanager/keeper/failure.go +++ b/x/contractmanager/keeper/failure.go @@ -19,7 +19,7 @@ import ( // must be OS/library version agnostic and carry a concrete defined error message. One of the good // ways to do so is to redact error using the RedactError func as it is done in SudoLimitWrapper // Sudo method: -// https://github.com/neutron-org/neutron/v2/blob/eb8b5ae50907439ff9af0527a42ef0cb448a78b5/x/contractmanager/ibc_middleware.go#L42. +// https://github.com/neutron-org/neutron/blob/eb8b5ae50907439ff9af0527a42ef0cb448a78b5/x/contractmanager/ibc_middleware.go#L42. // Another good way could be passing here some constant value. func (k Keeper) AddContractFailure(ctx sdk.Context, address string, sudoPayload []byte, errMsg string) types.Failure { failure := types.Failure{