├── .clang-format ├── .github ├── compatibility-test-matrices │ ├── v0.2.x │ │ ├── ica-chain-a.json │ │ ├── ica-chain-b.json │ │ ├── incentivized-ica-chain-a.json │ │ └── incentivized-ica-chain-b.json │ ├── v0.3.x │ │ ├── ica-chain-a.json │ │ ├── ica-chain-b.json │ │ ├── incentivized-ica-chain-a.json │ │ └── incentivized-ica-chain-b.json │ ├── v0.4.x │ │ ├── ica-chain-a.json │ │ ├── ica-chain-b.json │ │ ├── incentivized-ica-chain-a.json │ │ └── incentivized-ica-chain-b.json │ └── v0.5.x │ │ ├── ica-chain-a.json │ │ ├── ica-chain-b.json │ │ ├── incentivized-ica-chain-a.json │ │ └── incentivized-ica-chain-b.json ├── dependabot.yml ├── mergify.yml └── workflows │ ├── build-icad-image-from-tag.yml │ ├── build.yml │ ├── docker-build-fork.yml │ ├── docker-build.yml │ ├── e2e-compatibility.yaml │ ├── lint.yml │ └── test.yml ├── .gitignore ├── .golangci.yml ├── Dockerfile ├── Makefile ├── README.md ├── app ├── app.go ├── encoding.go ├── export.go ├── genesis.go ├── params │ ├── encoding.go │ └── proto.go ├── prefix.go ├── types.go └── upgrades │ └── v6 │ └── upgrades.go ├── buf.work.yaml ├── cmd └── icad │ ├── cmd │ ├── root.go │ └── testnet.go │ └── main.go ├── go.mod ├── go.sum ├── images ├── post-fund.png ├── post-init.png ├── post-register.png ├── post-sendtx.png └── pre-init.png ├── network ├── hermes │ ├── README.md │ ├── config.toml │ ├── create-conn.sh │ ├── restore-keys.sh │ ├── start.sh │ └── variables.sh ├── init.sh ├── relayer │ └── interchain-acc-config │ │ ├── chains │ │ ├── test-1.json │ │ └── test-2.json │ │ ├── paths │ │ └── test1-test2.json │ │ ├── rly-init.sh │ │ └── rly-start.sh └── start.sh ├── proto ├── buf.gen.gogo.yaml ├── buf.lock ├── buf.yaml └── intertx │ ├── query.proto │ └── tx.proto ├── scripts └── protocgen.sh ├── third_party └── proto │ ├── buf.yaml │ ├── confio │ └── proofs.proto │ ├── cosmos │ ├── auth │ │ └── v1beta1 │ │ │ ├── auth.proto │ │ │ ├── genesis.proto │ │ │ └── query.proto │ ├── bank │ │ └── v1beta1 │ │ │ ├── bank.proto │ │ │ ├── genesis.proto │ │ │ ├── query.proto │ │ │ └── tx.proto │ ├── base │ │ ├── abci │ │ │ └── v1beta1 │ │ │ │ └── abci.proto │ │ ├── kv │ │ │ └── v1beta1 │ │ │ │ └── kv.proto │ │ ├── query │ │ │ └── v1beta1 │ │ │ │ └── pagination.proto │ │ ├── reflection │ │ │ └── v1beta1 │ │ │ │ └── reflection.proto │ │ ├── snapshots │ │ │ └── v1beta1 │ │ │ │ └── snapshot.proto │ │ ├── store │ │ │ └── v1beta1 │ │ │ │ ├── commit_info.proto │ │ │ │ └── snapshot.proto │ │ ├── tendermint │ │ │ └── v1beta1 │ │ │ │ └── query.proto │ │ └── v1beta1 │ │ │ └── coin.proto │ ├── capability │ │ └── v1beta1 │ │ │ ├── capability.proto │ │ │ └── genesis.proto │ ├── crisis │ │ └── v1beta1 │ │ │ ├── genesis.proto │ │ │ └── tx.proto │ ├── crypto │ │ ├── ed25519 │ │ │ └── keys.proto │ │ ├── multisig │ │ │ ├── keys.proto │ │ │ └── v1beta1 │ │ │ │ └── multisig.proto │ │ └── secp256k1 │ │ │ └── keys.proto │ ├── distribution │ │ └── v1beta1 │ │ │ ├── distribution.proto │ │ │ ├── genesis.proto │ │ │ ├── query.proto │ │ │ └── tx.proto │ ├── evidence │ │ └── v1beta1 │ │ │ ├── evidence.proto │ │ │ ├── genesis.proto │ │ │ ├── query.proto │ │ │ └── tx.proto │ ├── genutil │ │ └── v1beta1 │ │ │ └── genesis.proto │ ├── gov │ │ └── v1beta1 │ │ │ ├── genesis.proto │ │ │ ├── gov.proto │ │ │ ├── query.proto │ │ │ └── tx.proto │ ├── mint │ │ └── v1beta1 │ │ │ ├── genesis.proto │ │ │ ├── mint.proto │ │ │ └── query.proto │ ├── params │ │ └── v1beta1 │ │ │ ├── params.proto │ │ │ └── query.proto │ ├── slashing │ │ └── v1beta1 │ │ │ ├── genesis.proto │ │ │ ├── query.proto │ │ │ ├── slashing.proto │ │ │ └── tx.proto │ ├── staking │ │ └── v1beta1 │ │ │ ├── genesis.proto │ │ │ ├── query.proto │ │ │ ├── staking.proto │ │ │ └── tx.proto │ ├── tx │ │ ├── signing │ │ │ └── v1beta1 │ │ │ │ └── signing.proto │ │ └── v1beta1 │ │ │ ├── service.proto │ │ │ └── tx.proto │ ├── upgrade │ │ └── v1beta1 │ │ │ ├── query.proto │ │ │ └── upgrade.proto │ └── vesting │ │ └── v1beta1 │ │ ├── tx.proto │ │ └── vesting.proto │ ├── cosmos_proto │ └── cosmos.proto │ ├── gogoproto │ └── gogo.proto │ ├── google │ ├── api │ │ ├── annotations.proto │ │ ├── http.proto │ │ └── httpbody.proto │ └── protobuf │ │ └── any.proto │ ├── ibc │ ├── applications │ │ ├── interchain_accounts │ │ │ └── v1 │ │ │ │ ├── account.proto │ │ │ │ ├── genesis.proto │ │ │ │ ├── query.proto │ │ │ │ └── types.proto │ │ └── transfer │ │ │ └── v1 │ │ │ ├── genesis.proto │ │ │ ├── query.proto │ │ │ ├── transfer.proto │ │ │ └── tx.proto │ ├── core │ │ ├── channel │ │ │ └── v1 │ │ │ │ ├── channel.proto │ │ │ │ ├── genesis.proto │ │ │ │ ├── query.proto │ │ │ │ └── tx.proto │ │ ├── client │ │ │ └── v1 │ │ │ │ ├── client.proto │ │ │ │ ├── genesis.proto │ │ │ │ ├── query.proto │ │ │ │ └── tx.proto │ │ ├── commitment │ │ │ └── v1 │ │ │ │ └── commitment.proto │ │ ├── connection │ │ │ └── v1 │ │ │ │ ├── connection.proto │ │ │ │ ├── genesis.proto │ │ │ │ ├── query.proto │ │ │ │ └── tx.proto │ │ └── types │ │ │ └── v1 │ │ │ └── genesis.proto │ └── lightclients │ │ ├── localhost │ │ └── v1 │ │ │ └── localhost.proto │ │ ├── solomachine │ │ └── v1 │ │ │ └── solomachine.proto │ │ └── tendermint │ │ └── v1 │ │ └── tendermint.proto │ ├── proofs.proto │ └── tendermint │ ├── abci │ └── types.proto │ ├── crypto │ ├── keys.proto │ └── proof.proto │ ├── libs │ └── bits │ │ └── types.proto │ ├── p2p │ └── types.proto │ ├── types │ ├── block.proto │ ├── evidence.proto │ ├── params.proto │ ├── types.proto │ └── validator.proto │ └── version │ └── types.proto └── x └── inter-tx ├── client └── cli │ ├── flags.go │ ├── query.go │ └── tx.go ├── ibc_module.go ├── keeper ├── grpc_query.go ├── keeper.go ├── keeper_test.go ├── msg_server.go └── msg_server_test.go ├── module.go └── types ├── codec.go ├── errors.go ├── keys.go ├── msgs.go ├── msgs_test.go ├── query.go ├── query.pb.go ├── query.pb.gw.go └── tx.pb.go /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.clang-format -------------------------------------------------------------------------------- /.github/compatibility-test-matrices/v0.2.x/ica-chain-a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/compatibility-test-matrices/v0.2.x/ica-chain-a.json -------------------------------------------------------------------------------- /.github/compatibility-test-matrices/v0.2.x/ica-chain-b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/compatibility-test-matrices/v0.2.x/ica-chain-b.json -------------------------------------------------------------------------------- /.github/compatibility-test-matrices/v0.2.x/incentivized-ica-chain-a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/compatibility-test-matrices/v0.2.x/incentivized-ica-chain-a.json -------------------------------------------------------------------------------- /.github/compatibility-test-matrices/v0.2.x/incentivized-ica-chain-b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/compatibility-test-matrices/v0.2.x/incentivized-ica-chain-b.json -------------------------------------------------------------------------------- /.github/compatibility-test-matrices/v0.3.x/ica-chain-a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/compatibility-test-matrices/v0.3.x/ica-chain-a.json -------------------------------------------------------------------------------- /.github/compatibility-test-matrices/v0.3.x/ica-chain-b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/compatibility-test-matrices/v0.3.x/ica-chain-b.json -------------------------------------------------------------------------------- /.github/compatibility-test-matrices/v0.3.x/incentivized-ica-chain-a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/compatibility-test-matrices/v0.3.x/incentivized-ica-chain-a.json -------------------------------------------------------------------------------- /.github/compatibility-test-matrices/v0.3.x/incentivized-ica-chain-b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/compatibility-test-matrices/v0.3.x/incentivized-ica-chain-b.json -------------------------------------------------------------------------------- /.github/compatibility-test-matrices/v0.4.x/ica-chain-a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/compatibility-test-matrices/v0.4.x/ica-chain-a.json -------------------------------------------------------------------------------- /.github/compatibility-test-matrices/v0.4.x/ica-chain-b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/compatibility-test-matrices/v0.4.x/ica-chain-b.json -------------------------------------------------------------------------------- /.github/compatibility-test-matrices/v0.4.x/incentivized-ica-chain-a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/compatibility-test-matrices/v0.4.x/incentivized-ica-chain-a.json -------------------------------------------------------------------------------- /.github/compatibility-test-matrices/v0.4.x/incentivized-ica-chain-b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/compatibility-test-matrices/v0.4.x/incentivized-ica-chain-b.json -------------------------------------------------------------------------------- /.github/compatibility-test-matrices/v0.5.x/ica-chain-a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/compatibility-test-matrices/v0.5.x/ica-chain-a.json -------------------------------------------------------------------------------- /.github/compatibility-test-matrices/v0.5.x/ica-chain-b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/compatibility-test-matrices/v0.5.x/ica-chain-b.json -------------------------------------------------------------------------------- /.github/compatibility-test-matrices/v0.5.x/incentivized-ica-chain-a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/compatibility-test-matrices/v0.5.x/incentivized-ica-chain-a.json -------------------------------------------------------------------------------- /.github/compatibility-test-matrices/v0.5.x/incentivized-ica-chain-b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/compatibility-test-matrices/v0.5.x/incentivized-ica-chain-b.json -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/mergify.yml -------------------------------------------------------------------------------- /.github/workflows/build-icad-image-from-tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/workflows/build-icad-image-from-tag.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build-fork.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/workflows/docker-build-fork.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/e2e-compatibility.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/workflows/e2e-compatibility.yaml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/.golangci.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/Dockerfile -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/README.md -------------------------------------------------------------------------------- /app/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/app/app.go -------------------------------------------------------------------------------- /app/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/app/encoding.go -------------------------------------------------------------------------------- /app/export.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/app/export.go -------------------------------------------------------------------------------- /app/genesis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/app/genesis.go -------------------------------------------------------------------------------- /app/params/encoding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/app/params/encoding.go -------------------------------------------------------------------------------- /app/params/proto.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/app/params/proto.go -------------------------------------------------------------------------------- /app/prefix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/app/prefix.go -------------------------------------------------------------------------------- /app/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/app/types.go -------------------------------------------------------------------------------- /app/upgrades/v6/upgrades.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/app/upgrades/v6/upgrades.go -------------------------------------------------------------------------------- /buf.work.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/buf.work.yaml -------------------------------------------------------------------------------- /cmd/icad/cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/cmd/icad/cmd/root.go -------------------------------------------------------------------------------- /cmd/icad/cmd/testnet.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/cmd/icad/cmd/testnet.go -------------------------------------------------------------------------------- /cmd/icad/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/cmd/icad/main.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/go.sum -------------------------------------------------------------------------------- /images/post-fund.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/images/post-fund.png -------------------------------------------------------------------------------- /images/post-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/images/post-init.png -------------------------------------------------------------------------------- /images/post-register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/images/post-register.png -------------------------------------------------------------------------------- /images/post-sendtx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/images/post-sendtx.png -------------------------------------------------------------------------------- /images/pre-init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/images/pre-init.png -------------------------------------------------------------------------------- /network/hermes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/network/hermes/README.md -------------------------------------------------------------------------------- /network/hermes/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/network/hermes/config.toml -------------------------------------------------------------------------------- /network/hermes/create-conn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/network/hermes/create-conn.sh -------------------------------------------------------------------------------- /network/hermes/restore-keys.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/network/hermes/restore-keys.sh -------------------------------------------------------------------------------- /network/hermes/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/network/hermes/start.sh -------------------------------------------------------------------------------- /network/hermes/variables.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/network/hermes/variables.sh -------------------------------------------------------------------------------- /network/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/network/init.sh -------------------------------------------------------------------------------- /network/relayer/interchain-acc-config/chains/test-1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/network/relayer/interchain-acc-config/chains/test-1.json -------------------------------------------------------------------------------- /network/relayer/interchain-acc-config/chains/test-2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/network/relayer/interchain-acc-config/chains/test-2.json -------------------------------------------------------------------------------- /network/relayer/interchain-acc-config/paths/test1-test2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/network/relayer/interchain-acc-config/paths/test1-test2.json -------------------------------------------------------------------------------- /network/relayer/interchain-acc-config/rly-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/network/relayer/interchain-acc-config/rly-init.sh -------------------------------------------------------------------------------- /network/relayer/interchain-acc-config/rly-start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/network/relayer/interchain-acc-config/rly-start.sh -------------------------------------------------------------------------------- /network/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/network/start.sh -------------------------------------------------------------------------------- /proto/buf.gen.gogo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/proto/buf.gen.gogo.yaml -------------------------------------------------------------------------------- /proto/buf.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/proto/buf.lock -------------------------------------------------------------------------------- /proto/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/proto/buf.yaml -------------------------------------------------------------------------------- /proto/intertx/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/proto/intertx/query.proto -------------------------------------------------------------------------------- /proto/intertx/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/proto/intertx/tx.proto -------------------------------------------------------------------------------- /scripts/protocgen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/scripts/protocgen.sh -------------------------------------------------------------------------------- /third_party/proto/buf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/buf.yaml -------------------------------------------------------------------------------- /third_party/proto/confio/proofs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/confio/proofs.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/auth/v1beta1/auth.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/auth/v1beta1/auth.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/auth/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/auth/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/auth/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/auth/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/bank/v1beta1/bank.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/bank/v1beta1/bank.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/bank/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/bank/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/bank/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/bank/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/bank/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/bank/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/abci/v1beta1/abci.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/base/abci/v1beta1/abci.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/kv/v1beta1/kv.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/base/kv/v1beta1/kv.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/query/v1beta1/pagination.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/base/query/v1beta1/pagination.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/reflection/v1beta1/reflection.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/base/reflection/v1beta1/reflection.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/snapshots/v1beta1/snapshot.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/base/snapshots/v1beta1/snapshot.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/store/v1beta1/commit_info.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/base/store/v1beta1/commit_info.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/store/v1beta1/snapshot.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/base/store/v1beta1/snapshot.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/tendermint/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/base/tendermint/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/base/v1beta1/coin.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/base/v1beta1/coin.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/capability/v1beta1/capability.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/capability/v1beta1/capability.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/capability/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/capability/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/crisis/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/crisis/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/crisis/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/crisis/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/crypto/ed25519/keys.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/crypto/ed25519/keys.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/crypto/multisig/keys.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/crypto/multisig/keys.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/crypto/multisig/v1beta1/multisig.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/crypto/multisig/v1beta1/multisig.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/crypto/secp256k1/keys.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/crypto/secp256k1/keys.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/distribution/v1beta1/distribution.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/distribution/v1beta1/distribution.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/distribution/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/distribution/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/distribution/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/distribution/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/distribution/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/distribution/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/evidence/v1beta1/evidence.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/evidence/v1beta1/evidence.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/evidence/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/evidence/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/evidence/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/evidence/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/evidence/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/evidence/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/genutil/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/genutil/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/gov/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/gov/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/gov/v1beta1/gov.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/gov/v1beta1/gov.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/gov/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/gov/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/gov/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/gov/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/mint/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/mint/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/mint/v1beta1/mint.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/mint/v1beta1/mint.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/mint/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/mint/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/params/v1beta1/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/params/v1beta1/params.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/params/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/params/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/slashing/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/slashing/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/slashing/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/slashing/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/slashing/v1beta1/slashing.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/slashing/v1beta1/slashing.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/slashing/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/slashing/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/staking/v1beta1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/staking/v1beta1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/staking/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/staking/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/staking/v1beta1/staking.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/staking/v1beta1/staking.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/staking/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/staking/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/tx/signing/v1beta1/signing.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/tx/signing/v1beta1/signing.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/tx/v1beta1/service.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/tx/v1beta1/service.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/tx/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/tx/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/upgrade/v1beta1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/upgrade/v1beta1/query.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/upgrade/v1beta1/upgrade.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/upgrade/v1beta1/upgrade.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/vesting/v1beta1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/vesting/v1beta1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos/vesting/v1beta1/vesting.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos/vesting/v1beta1/vesting.proto -------------------------------------------------------------------------------- /third_party/proto/cosmos_proto/cosmos.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/cosmos_proto/cosmos.proto -------------------------------------------------------------------------------- /third_party/proto/gogoproto/gogo.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/gogoproto/gogo.proto -------------------------------------------------------------------------------- /third_party/proto/google/api/annotations.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/google/api/annotations.proto -------------------------------------------------------------------------------- /third_party/proto/google/api/http.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/google/api/http.proto -------------------------------------------------------------------------------- /third_party/proto/google/api/httpbody.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/google/api/httpbody.proto -------------------------------------------------------------------------------- /third_party/proto/google/protobuf/any.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/google/protobuf/any.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/applications/interchain_accounts/v1/account.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/applications/interchain_accounts/v1/account.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/applications/interchain_accounts/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/applications/interchain_accounts/v1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/applications/interchain_accounts/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/applications/interchain_accounts/v1/query.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/applications/interchain_accounts/v1/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/applications/interchain_accounts/v1/types.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/applications/transfer/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/applications/transfer/v1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/applications/transfer/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/applications/transfer/v1/query.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/applications/transfer/v1/transfer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/applications/transfer/v1/transfer.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/applications/transfer/v1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/applications/transfer/v1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/channel/v1/channel.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/core/channel/v1/channel.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/channel/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/core/channel/v1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/channel/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/core/channel/v1/query.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/channel/v1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/core/channel/v1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/client/v1/client.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/core/client/v1/client.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/client/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/core/client/v1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/client/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/core/client/v1/query.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/client/v1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/core/client/v1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/commitment/v1/commitment.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/core/commitment/v1/commitment.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/connection/v1/connection.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/core/connection/v1/connection.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/connection/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/core/connection/v1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/connection/v1/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/core/connection/v1/query.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/connection/v1/tx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/core/connection/v1/tx.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/core/types/v1/genesis.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/core/types/v1/genesis.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/lightclients/localhost/v1/localhost.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/lightclients/localhost/v1/localhost.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/lightclients/solomachine/v1/solomachine.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/lightclients/solomachine/v1/solomachine.proto -------------------------------------------------------------------------------- /third_party/proto/ibc/lightclients/tendermint/v1/tendermint.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/ibc/lightclients/tendermint/v1/tendermint.proto -------------------------------------------------------------------------------- /third_party/proto/proofs.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/proofs.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/abci/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/tendermint/abci/types.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/crypto/keys.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/tendermint/crypto/keys.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/crypto/proof.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/tendermint/crypto/proof.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/libs/bits/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/tendermint/libs/bits/types.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/p2p/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/tendermint/p2p/types.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/types/block.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/tendermint/types/block.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/types/evidence.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/tendermint/types/evidence.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/types/params.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/tendermint/types/params.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/types/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/tendermint/types/types.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/types/validator.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/tendermint/types/validator.proto -------------------------------------------------------------------------------- /third_party/proto/tendermint/version/types.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/third_party/proto/tendermint/version/types.proto -------------------------------------------------------------------------------- /x/inter-tx/client/cli/flags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/client/cli/flags.go -------------------------------------------------------------------------------- /x/inter-tx/client/cli/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/client/cli/query.go -------------------------------------------------------------------------------- /x/inter-tx/client/cli/tx.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/client/cli/tx.go -------------------------------------------------------------------------------- /x/inter-tx/ibc_module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/ibc_module.go -------------------------------------------------------------------------------- /x/inter-tx/keeper/grpc_query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/keeper/grpc_query.go -------------------------------------------------------------------------------- /x/inter-tx/keeper/keeper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/keeper/keeper.go -------------------------------------------------------------------------------- /x/inter-tx/keeper/keeper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/keeper/keeper_test.go -------------------------------------------------------------------------------- /x/inter-tx/keeper/msg_server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/keeper/msg_server.go -------------------------------------------------------------------------------- /x/inter-tx/keeper/msg_server_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/keeper/msg_server_test.go -------------------------------------------------------------------------------- /x/inter-tx/module.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/module.go -------------------------------------------------------------------------------- /x/inter-tx/types/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/types/codec.go -------------------------------------------------------------------------------- /x/inter-tx/types/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/types/errors.go -------------------------------------------------------------------------------- /x/inter-tx/types/keys.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/types/keys.go -------------------------------------------------------------------------------- /x/inter-tx/types/msgs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/types/msgs.go -------------------------------------------------------------------------------- /x/inter-tx/types/msgs_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/types/msgs_test.go -------------------------------------------------------------------------------- /x/inter-tx/types/query.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/types/query.go -------------------------------------------------------------------------------- /x/inter-tx/types/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/types/query.pb.go -------------------------------------------------------------------------------- /x/inter-tx/types/query.pb.gw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/types/query.pb.gw.go -------------------------------------------------------------------------------- /x/inter-tx/types/tx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/interchain-accounts-demo/HEAD/x/inter-tx/types/tx.pb.go --------------------------------------------------------------------------------