├── .dockerignore ├── .gitattributes ├── .github └── workflows │ ├── build.yml │ ├── codeql.yml │ ├── interchaintest.yaml │ ├── lint.yml │ ├── push_docker_image.yml │ ├── push_protobuf_image.yml │ └── tests.yml ├── .gitignore ├── .gitmodules ├── .golangci.yml ├── .markdownlint.jsonc ├── .mergify.yml ├── CODEOWNERS ├── Dockerfile ├── Makefile ├── README.md ├── app ├── README.md ├── ante.go ├── app.go ├── app_test.go ├── encoding.go ├── export.go ├── genesis.go ├── params │ ├── doc.go │ ├── encoding.go │ └── proto.go ├── sim_test.go ├── test_access.go ├── test_helpers.go └── test_supports.go ├── cmd └── feeappd │ ├── commands.go │ ├── main.go │ ├── root.go │ └── testnet.go ├── go.mod ├── go.sum ├── proto ├── Dockerfile ├── buf.gen.gogo.yaml ├── buf.lock ├── buf.yaml └── feeabstraction │ └── feeabs │ └── v1beta1 │ ├── epoch.proto │ ├── genesis.proto │ ├── osmosisibc.proto │ ├── params.proto │ ├── proposal.proto │ ├── query.proto │ └── tx.proto ├── sample_pool.json ├── scripts ├── README.md ├── bytecode │ ├── crosschain_registry.wasm │ ├── crosschain_swaps.wasm │ └── swaprouter.wasm ├── host_zone_gaia.json ├── ibc_swap │ ├── deploy_osmosis_contract.sh │ └── setup.sh ├── node_start │ ├── runnode_custom.sh │ ├── runnode_gaia.sh │ └── runnode_osmosis.sh ├── proposal.json ├── protocgen.sh ├── relayer_hermes │ ├── alice.json │ ├── bob.json │ ├── config_feeabs_gaia.toml │ ├── config_feeabs_osmosis.toml │ ├── config_osmosis_gaia.toml │ └── gnad.json ├── run_relayer_feeabs_gaia.sh ├── run_relayer_feeabs_osmo.sh └── run_relayer_osmo_gaia.sh ├── testnode.sh ├── tests ├── integration │ ├── README.md │ ├── build-binary.sh │ ├── contracts_version.json │ ├── cosmoshub │ │ ├── README.md │ │ ├── keys │ │ │ ├── osmo_admin.info │ │ │ └── relayer.info │ │ ├── pools │ │ │ └── pool.json │ │ ├── proposals │ │ │ ├── add_host_zone.json │ │ │ ├── params.json │ │ │ └── set_host_zone.json │ │ ├── relayers │ │ │ ├── gaia.json │ │ │ └── osmosis.json │ │ └── tools │ │ │ ├── add_host_zone.sh │ │ │ ├── change_feeabs_params.sh │ │ │ ├── create_pool.sh │ │ │ ├── set_host_zone.sh │ │ │ ├── set_route.sh │ │ │ └── setup_relayer.sh │ └── stargaze │ │ ├── README.md │ │ └── relayer │ │ ├── chains │ │ ├── osmosis.json │ │ └── stargaze.json │ │ ├── keys │ │ └── relayer.info │ │ ├── paths │ │ ├── feeabs.json │ │ └── transfer.json │ │ └── proposals │ │ └── params.json └── interchaintest │ ├── bytecode │ ├── crosschain_registry.wasm │ ├── crosschain_swaps.wasm │ └── swaprouter.wasm │ ├── chain_start_test.go │ ├── feeabs │ ├── events.go │ ├── osmosis.go │ ├── proposal.go │ ├── query.go │ ├── tx.go │ └── types.go │ ├── go.mod │ ├── go.sum │ ├── host_zone_proposal_test.go │ ├── ibc_transfer_customfee_test.go │ ├── ibc_transfer_test.go │ ├── packet_foward_test.go │ ├── proposal │ ├── add_host_zone_example.json │ ├── delete_host_zone_example.json │ ├── params_change_example.json │ └── set_host_zone_example.json │ ├── query_osmosis_twap_test.go │ ├── setup.go │ ├── tendermint │ └── events.go │ └── testnet │ ├── configs │ ├── feeapp.json │ └── osmosis.json │ ├── paths │ └── transfer.json │ ├── pool │ └── pool-1.json │ └── proposal │ └── add_host_zone.json ├── tools └── tools.go └── x └── feeabs ├── ante ├── ante_test.go ├── decorate.go ├── expected_keepers.go ├── fee_utils.go └── testutil_test.go ├── client └── cli │ ├── query.go │ ├── tx.go │ ├── tx_test.go │ └── util.go ├── ibc_module.go ├── keeper ├── abci.go ├── config.go ├── epoch.go ├── epoch_test.go ├── exchange_rate.go ├── genesis.go ├── genesis_test.go ├── grpc_query.go ├── grpc_query_test.go ├── host_zone_test.go ├── ibc.go ├── ibc_test.go ├── keeper.go ├── keeper_test.go ├── msg_server.go ├── msg_server_test.go ├── proposal.go └── proposal_test.go ├── module.go ├── proposal_handler.go ├── relay_test.go ├── spec ├── 01_concepts.md ├── 02_state.md ├── 03_epoch.md ├── 04_events.md ├── 05_params.md ├── 06_gov.md ├── 07_ibc.md ├── 08_feeabs.md ├── Integration.md ├── README.md └── kelpr_testnet.json ├── testutil └── expected_keeper_mocks.go └── types ├── build_memo.go ├── build_memo_test.go ├── codec.go ├── codec_test.go ├── epoch.go ├── epoch.pb.go ├── errors.go ├── events.go ├── expected_keepers.go ├── genesis.go ├── genesis.pb.go ├── ibc.go ├── keys.go ├── msg.go ├── osmosisibc.pb.go ├── params.go ├── params.pb.go ├── params_test.go ├── pool.go ├── proposal.go ├── proposal.pb.go ├── query.pb.go ├── query.pb.gw.go └── tx.pb.go /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/.dockerignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/interchaintest.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/.github/workflows/interchaintest.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/push_docker_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/.github/workflows/push_docker_image.yml -------------------------------------------------------------------------------- /.github/workflows/push_protobuf_image.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/.github/workflows/push_protobuf_image.yml -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/.gitmodules -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.markdownlint.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/.markdownlint.jsonc -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/.mergify.yml -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | @GNaD13 2 | @vuong177 3 | @anhductn2001 4 | @expertdicer 5 | @faddat 6 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/README.md -------------------------------------------------------------------------------- /app/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/app/README.md -------------------------------------------------------------------------------- /app/ante.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/app/ante.go -------------------------------------------------------------------------------- /app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/app/app.go -------------------------------------------------------------------------------- /app/app_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/app/app_test.go -------------------------------------------------------------------------------- /app/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/app/encoding.go -------------------------------------------------------------------------------- /app/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/app/export.go -------------------------------------------------------------------------------- /app/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/app/genesis.go -------------------------------------------------------------------------------- /app/params/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/app/params/doc.go -------------------------------------------------------------------------------- /app/params/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/app/params/encoding.go -------------------------------------------------------------------------------- /app/params/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/app/params/proto.go -------------------------------------------------------------------------------- /app/sim_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/app/sim_test.go -------------------------------------------------------------------------------- /app/test_access.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/app/test_access.go -------------------------------------------------------------------------------- /app/test_helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/app/test_helpers.go -------------------------------------------------------------------------------- /app/test_supports.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/app/test_supports.go -------------------------------------------------------------------------------- /cmd/feeappd/commands.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/cmd/feeappd/commands.go -------------------------------------------------------------------------------- /cmd/feeappd/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/cmd/feeappd/main.go -------------------------------------------------------------------------------- /cmd/feeappd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/cmd/feeappd/root.go -------------------------------------------------------------------------------- /cmd/feeappd/testnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/cmd/feeappd/testnet.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/go.sum -------------------------------------------------------------------------------- /proto/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/proto/Dockerfile -------------------------------------------------------------------------------- /proto/buf.gen.gogo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/proto/buf.gen.gogo.yaml -------------------------------------------------------------------------------- /proto/buf.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/proto/buf.lock -------------------------------------------------------------------------------- /proto/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/proto/buf.yaml -------------------------------------------------------------------------------- /proto/feeabstraction/feeabs/v1beta1/epoch.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/proto/feeabstraction/feeabs/v1beta1/epoch.proto -------------------------------------------------------------------------------- /proto/feeabstraction/feeabs/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/proto/feeabstraction/feeabs/v1beta1/genesis.proto -------------------------------------------------------------------------------- /proto/feeabstraction/feeabs/v1beta1/osmosisibc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/proto/feeabstraction/feeabs/v1beta1/osmosisibc.proto -------------------------------------------------------------------------------- /proto/feeabstraction/feeabs/v1beta1/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/proto/feeabstraction/feeabs/v1beta1/params.proto -------------------------------------------------------------------------------- /proto/feeabstraction/feeabs/v1beta1/proposal.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/proto/feeabstraction/feeabs/v1beta1/proposal.proto -------------------------------------------------------------------------------- /proto/feeabstraction/feeabs/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/proto/feeabstraction/feeabs/v1beta1/query.proto -------------------------------------------------------------------------------- /proto/feeabstraction/feeabs/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/proto/feeabstraction/feeabs/v1beta1/tx.proto -------------------------------------------------------------------------------- /sample_pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/sample_pool.json -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/bytecode/crosschain_registry.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/bytecode/crosschain_registry.wasm -------------------------------------------------------------------------------- /scripts/bytecode/crosschain_swaps.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/bytecode/crosschain_swaps.wasm -------------------------------------------------------------------------------- /scripts/bytecode/swaprouter.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/bytecode/swaprouter.wasm -------------------------------------------------------------------------------- /scripts/host_zone_gaia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/host_zone_gaia.json -------------------------------------------------------------------------------- /scripts/ibc_swap/deploy_osmosis_contract.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/ibc_swap/deploy_osmosis_contract.sh -------------------------------------------------------------------------------- /scripts/ibc_swap/setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/ibc_swap/setup.sh -------------------------------------------------------------------------------- /scripts/node_start/runnode_custom.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/node_start/runnode_custom.sh -------------------------------------------------------------------------------- /scripts/node_start/runnode_gaia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/node_start/runnode_gaia.sh -------------------------------------------------------------------------------- /scripts/node_start/runnode_osmosis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/node_start/runnode_osmosis.sh -------------------------------------------------------------------------------- /scripts/proposal.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/proposal.json -------------------------------------------------------------------------------- /scripts/protocgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/protocgen.sh -------------------------------------------------------------------------------- /scripts/relayer_hermes/alice.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/relayer_hermes/alice.json -------------------------------------------------------------------------------- /scripts/relayer_hermes/bob.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/relayer_hermes/bob.json -------------------------------------------------------------------------------- /scripts/relayer_hermes/config_feeabs_gaia.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/relayer_hermes/config_feeabs_gaia.toml -------------------------------------------------------------------------------- /scripts/relayer_hermes/config_feeabs_osmosis.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/relayer_hermes/config_feeabs_osmosis.toml -------------------------------------------------------------------------------- /scripts/relayer_hermes/config_osmosis_gaia.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/relayer_hermes/config_osmosis_gaia.toml -------------------------------------------------------------------------------- /scripts/relayer_hermes/gnad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/relayer_hermes/gnad.json -------------------------------------------------------------------------------- /scripts/run_relayer_feeabs_gaia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/run_relayer_feeabs_gaia.sh -------------------------------------------------------------------------------- /scripts/run_relayer_feeabs_osmo.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/run_relayer_feeabs_osmo.sh -------------------------------------------------------------------------------- /scripts/run_relayer_osmo_gaia.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/scripts/run_relayer_osmo_gaia.sh -------------------------------------------------------------------------------- /testnode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/testnode.sh -------------------------------------------------------------------------------- /tests/integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/README.md -------------------------------------------------------------------------------- /tests/integration/build-binary.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/build-binary.sh -------------------------------------------------------------------------------- /tests/integration/contracts_version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/contracts_version.json -------------------------------------------------------------------------------- /tests/integration/cosmoshub/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/cosmoshub/README.md -------------------------------------------------------------------------------- /tests/integration/cosmoshub/keys/osmo_admin.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/cosmoshub/keys/osmo_admin.info -------------------------------------------------------------------------------- /tests/integration/cosmoshub/keys/relayer.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/cosmoshub/keys/relayer.info -------------------------------------------------------------------------------- /tests/integration/cosmoshub/pools/pool.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/cosmoshub/pools/pool.json -------------------------------------------------------------------------------- /tests/integration/cosmoshub/proposals/add_host_zone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/cosmoshub/proposals/add_host_zone.json -------------------------------------------------------------------------------- /tests/integration/cosmoshub/proposals/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/cosmoshub/proposals/params.json -------------------------------------------------------------------------------- /tests/integration/cosmoshub/proposals/set_host_zone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/cosmoshub/proposals/set_host_zone.json -------------------------------------------------------------------------------- /tests/integration/cosmoshub/relayers/gaia.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/cosmoshub/relayers/gaia.json -------------------------------------------------------------------------------- /tests/integration/cosmoshub/relayers/osmosis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/cosmoshub/relayers/osmosis.json -------------------------------------------------------------------------------- /tests/integration/cosmoshub/tools/add_host_zone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/cosmoshub/tools/add_host_zone.sh -------------------------------------------------------------------------------- /tests/integration/cosmoshub/tools/change_feeabs_params.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/cosmoshub/tools/change_feeabs_params.sh -------------------------------------------------------------------------------- /tests/integration/cosmoshub/tools/create_pool.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/cosmoshub/tools/create_pool.sh -------------------------------------------------------------------------------- /tests/integration/cosmoshub/tools/set_host_zone.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/cosmoshub/tools/set_host_zone.sh -------------------------------------------------------------------------------- /tests/integration/cosmoshub/tools/set_route.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/cosmoshub/tools/set_route.sh -------------------------------------------------------------------------------- /tests/integration/cosmoshub/tools/setup_relayer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/cosmoshub/tools/setup_relayer.sh -------------------------------------------------------------------------------- /tests/integration/stargaze/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/stargaze/README.md -------------------------------------------------------------------------------- /tests/integration/stargaze/relayer/chains/osmosis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/stargaze/relayer/chains/osmosis.json -------------------------------------------------------------------------------- /tests/integration/stargaze/relayer/chains/stargaze.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/stargaze/relayer/chains/stargaze.json -------------------------------------------------------------------------------- /tests/integration/stargaze/relayer/keys/relayer.info: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/stargaze/relayer/keys/relayer.info -------------------------------------------------------------------------------- /tests/integration/stargaze/relayer/paths/feeabs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/stargaze/relayer/paths/feeabs.json -------------------------------------------------------------------------------- /tests/integration/stargaze/relayer/paths/transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/stargaze/relayer/paths/transfer.json -------------------------------------------------------------------------------- /tests/integration/stargaze/relayer/proposals/params.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/integration/stargaze/relayer/proposals/params.json -------------------------------------------------------------------------------- /tests/interchaintest/bytecode/crosschain_registry.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/bytecode/crosschain_registry.wasm -------------------------------------------------------------------------------- /tests/interchaintest/bytecode/crosschain_swaps.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/bytecode/crosschain_swaps.wasm -------------------------------------------------------------------------------- /tests/interchaintest/bytecode/swaprouter.wasm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/bytecode/swaprouter.wasm -------------------------------------------------------------------------------- /tests/interchaintest/chain_start_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/chain_start_test.go -------------------------------------------------------------------------------- /tests/interchaintest/feeabs/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/feeabs/events.go -------------------------------------------------------------------------------- /tests/interchaintest/feeabs/osmosis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/feeabs/osmosis.go -------------------------------------------------------------------------------- /tests/interchaintest/feeabs/proposal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/feeabs/proposal.go -------------------------------------------------------------------------------- /tests/interchaintest/feeabs/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/feeabs/query.go -------------------------------------------------------------------------------- /tests/interchaintest/feeabs/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/feeabs/tx.go -------------------------------------------------------------------------------- /tests/interchaintest/feeabs/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/feeabs/types.go -------------------------------------------------------------------------------- /tests/interchaintest/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/go.mod -------------------------------------------------------------------------------- /tests/interchaintest/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/go.sum -------------------------------------------------------------------------------- /tests/interchaintest/host_zone_proposal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/host_zone_proposal_test.go -------------------------------------------------------------------------------- /tests/interchaintest/ibc_transfer_customfee_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/ibc_transfer_customfee_test.go -------------------------------------------------------------------------------- /tests/interchaintest/ibc_transfer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/ibc_transfer_test.go -------------------------------------------------------------------------------- /tests/interchaintest/packet_foward_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/packet_foward_test.go -------------------------------------------------------------------------------- /tests/interchaintest/proposal/add_host_zone_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/proposal/add_host_zone_example.json -------------------------------------------------------------------------------- /tests/interchaintest/proposal/delete_host_zone_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/proposal/delete_host_zone_example.json -------------------------------------------------------------------------------- /tests/interchaintest/proposal/params_change_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/proposal/params_change_example.json -------------------------------------------------------------------------------- /tests/interchaintest/proposal/set_host_zone_example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/proposal/set_host_zone_example.json -------------------------------------------------------------------------------- /tests/interchaintest/query_osmosis_twap_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/query_osmosis_twap_test.go -------------------------------------------------------------------------------- /tests/interchaintest/setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/setup.go -------------------------------------------------------------------------------- /tests/interchaintest/tendermint/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/tendermint/events.go -------------------------------------------------------------------------------- /tests/interchaintest/testnet/configs/feeapp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/testnet/configs/feeapp.json -------------------------------------------------------------------------------- /tests/interchaintest/testnet/configs/osmosis.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/testnet/configs/osmosis.json -------------------------------------------------------------------------------- /tests/interchaintest/testnet/paths/transfer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/testnet/paths/transfer.json -------------------------------------------------------------------------------- /tests/interchaintest/testnet/pool/pool-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/testnet/pool/pool-1.json -------------------------------------------------------------------------------- /tests/interchaintest/testnet/proposal/add_host_zone.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tests/interchaintest/testnet/proposal/add_host_zone.json -------------------------------------------------------------------------------- /tools/tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/tools/tools.go -------------------------------------------------------------------------------- /x/feeabs/ante/ante_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/ante/ante_test.go -------------------------------------------------------------------------------- /x/feeabs/ante/decorate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/ante/decorate.go -------------------------------------------------------------------------------- /x/feeabs/ante/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/ante/expected_keepers.go -------------------------------------------------------------------------------- /x/feeabs/ante/fee_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/ante/fee_utils.go -------------------------------------------------------------------------------- /x/feeabs/ante/testutil_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/ante/testutil_test.go -------------------------------------------------------------------------------- /x/feeabs/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/client/cli/query.go -------------------------------------------------------------------------------- /x/feeabs/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/client/cli/tx.go -------------------------------------------------------------------------------- /x/feeabs/client/cli/tx_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/client/cli/tx_test.go -------------------------------------------------------------------------------- /x/feeabs/client/cli/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/client/cli/util.go -------------------------------------------------------------------------------- /x/feeabs/ibc_module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/ibc_module.go -------------------------------------------------------------------------------- /x/feeabs/keeper/abci.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/abci.go -------------------------------------------------------------------------------- /x/feeabs/keeper/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/config.go -------------------------------------------------------------------------------- /x/feeabs/keeper/epoch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/epoch.go -------------------------------------------------------------------------------- /x/feeabs/keeper/epoch_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/epoch_test.go -------------------------------------------------------------------------------- /x/feeabs/keeper/exchange_rate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/exchange_rate.go -------------------------------------------------------------------------------- /x/feeabs/keeper/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/genesis.go -------------------------------------------------------------------------------- /x/feeabs/keeper/genesis_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/genesis_test.go -------------------------------------------------------------------------------- /x/feeabs/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/feeabs/keeper/grpc_query_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/grpc_query_test.go -------------------------------------------------------------------------------- /x/feeabs/keeper/host_zone_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/host_zone_test.go -------------------------------------------------------------------------------- /x/feeabs/keeper/ibc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/ibc.go -------------------------------------------------------------------------------- /x/feeabs/keeper/ibc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/ibc_test.go -------------------------------------------------------------------------------- /x/feeabs/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/keeper.go -------------------------------------------------------------------------------- /x/feeabs/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/feeabs/keeper/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/msg_server.go -------------------------------------------------------------------------------- /x/feeabs/keeper/msg_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/msg_server_test.go -------------------------------------------------------------------------------- /x/feeabs/keeper/proposal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/proposal.go -------------------------------------------------------------------------------- /x/feeabs/keeper/proposal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/keeper/proposal_test.go -------------------------------------------------------------------------------- /x/feeabs/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/module.go -------------------------------------------------------------------------------- /x/feeabs/proposal_handler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/proposal_handler.go -------------------------------------------------------------------------------- /x/feeabs/relay_test.go: -------------------------------------------------------------------------------- 1 | package feeabs_test 2 | 3 | // TO DO: put relay test in here 4 | -------------------------------------------------------------------------------- /x/feeabs/spec/01_concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/spec/01_concepts.md -------------------------------------------------------------------------------- /x/feeabs/spec/02_state.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/spec/02_state.md -------------------------------------------------------------------------------- /x/feeabs/spec/03_epoch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/spec/03_epoch.md -------------------------------------------------------------------------------- /x/feeabs/spec/04_events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/spec/04_events.md -------------------------------------------------------------------------------- /x/feeabs/spec/05_params.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/spec/05_params.md -------------------------------------------------------------------------------- /x/feeabs/spec/06_gov.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/spec/06_gov.md -------------------------------------------------------------------------------- /x/feeabs/spec/07_ibc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/spec/07_ibc.md -------------------------------------------------------------------------------- /x/feeabs/spec/08_feeabs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/spec/08_feeabs.md -------------------------------------------------------------------------------- /x/feeabs/spec/Integration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/spec/Integration.md -------------------------------------------------------------------------------- /x/feeabs/spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/spec/README.md -------------------------------------------------------------------------------- /x/feeabs/spec/kelpr_testnet.json: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /x/feeabs/testutil/expected_keeper_mocks.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/testutil/expected_keeper_mocks.go -------------------------------------------------------------------------------- /x/feeabs/types/build_memo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/build_memo.go -------------------------------------------------------------------------------- /x/feeabs/types/build_memo_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/build_memo_test.go -------------------------------------------------------------------------------- /x/feeabs/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/codec.go -------------------------------------------------------------------------------- /x/feeabs/types/codec_test.go: -------------------------------------------------------------------------------- 1 | package types 2 | -------------------------------------------------------------------------------- /x/feeabs/types/epoch.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/epoch.go -------------------------------------------------------------------------------- /x/feeabs/types/epoch.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/epoch.pb.go -------------------------------------------------------------------------------- /x/feeabs/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/errors.go -------------------------------------------------------------------------------- /x/feeabs/types/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/events.go -------------------------------------------------------------------------------- /x/feeabs/types/expected_keepers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/expected_keepers.go -------------------------------------------------------------------------------- /x/feeabs/types/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/genesis.go -------------------------------------------------------------------------------- /x/feeabs/types/genesis.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/genesis.pb.go -------------------------------------------------------------------------------- /x/feeabs/types/ibc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/ibc.go -------------------------------------------------------------------------------- /x/feeabs/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/keys.go -------------------------------------------------------------------------------- /x/feeabs/types/msg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/msg.go -------------------------------------------------------------------------------- /x/feeabs/types/osmosisibc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/osmosisibc.pb.go -------------------------------------------------------------------------------- /x/feeabs/types/params.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/params.go -------------------------------------------------------------------------------- /x/feeabs/types/params.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/params.pb.go -------------------------------------------------------------------------------- /x/feeabs/types/params_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/params_test.go -------------------------------------------------------------------------------- /x/feeabs/types/pool.go: -------------------------------------------------------------------------------- 1 | package types 2 | -------------------------------------------------------------------------------- /x/feeabs/types/proposal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/proposal.go -------------------------------------------------------------------------------- /x/feeabs/types/proposal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/proposal.pb.go -------------------------------------------------------------------------------- /x/feeabs/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/query.pb.go -------------------------------------------------------------------------------- /x/feeabs/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/feeabs/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osmosis-labs/fee-abstraction/HEAD/x/feeabs/types/tx.pb.go --------------------------------------------------------------------------------