├── .gitattributes ├── .github ├── CODEOWNERS └── workflows │ ├── link-check-config.json │ ├── link-check.yml │ └── markdown-lint.yml ├── .gitignore ├── .markdownlint-cli2.jsonc ├── .markdownlint.jsonc ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── archive ├── README.md ├── papers │ └── 2020-05 │ │ ├── Makefile │ │ ├── README.md │ │ ├── aspell_dict │ │ ├── build │ │ └── paper.pdf │ │ └── src │ │ ├── LICENSE │ │ ├── acknowledgements.md │ │ ├── appendix-a.md │ │ ├── appendix-b.md │ │ ├── appendix-c.md │ │ ├── bibliography.bib │ │ ├── bibliography.csl │ │ ├── channels.md │ │ ├── clients.md │ │ ├── connections.md │ │ ├── fungible-token-transfer.md │ │ ├── host-requirements.md │ │ ├── introduction.md │ │ ├── metadata.yaml │ │ ├── paper.md │ │ ├── relayers.md │ │ ├── structure.md │ │ ├── template.latex │ │ ├── testing-and-deployment.md │ │ └── usage-patterns.md └── v0_3_1_IBC.pdf ├── assets ├── interchain-standards-image.jpg └── interchain-standards.png ├── meta ├── CONTRIBUTING.md ├── PROCESS.md └── STANDARDS_COMMITTEE.md └── spec ├── IBC_V2 ├── README.md └── core │ ├── ics-002-client-semantics │ └── README.md │ ├── ics-004-packet-semantics │ ├── PACKET.md │ └── PACKET_HANDLER.md │ ├── ics-005-port-allocation │ └── README.md │ ├── ics-024-host-requirements │ └── README.md │ └── ics-026-application-callbacks │ └── README.md ├── app ├── ics-020-fungible-token-transfer │ ├── README.md │ └── deprecated │ │ ├── README.md │ │ ├── forwarding-3-chains-failure.png │ │ ├── forwarding-3-chains-success.png │ │ ├── forwarding-3-chains.excalidraw │ │ └── source-and-sink-zones.png ├── ics-027-interchain-accounts │ └── README.md ├── ics-028-cross-chain-validation │ ├── README.md │ ├── data_structures.md │ ├── figures │ │ ├── ccv-distribution-overview.excalidraw │ │ ├── ccv-distribution-overview.png │ │ ├── ccv-evidence-overview.excalidraw │ │ ├── ccv-evidence-overview.png │ │ ├── ccv-height-mapping-overview.excalidraw │ │ ├── ccv-height-mapping-overview.png │ │ ├── ccv-init-overview.excalidraw │ │ ├── ccv-init-overview.png │ │ ├── ccv-mapping-intuition.excalidraw │ │ ├── ccv-mapping-intuition.png │ │ ├── ccv-preccv-init-overview.excalidraw │ │ ├── ccv-preccv-init-overview.png │ │ ├── ccv-unbonding-overview.excalidraw │ │ ├── ccv-unbonding-overview.png │ │ ├── ccv-vsc-overview.excalidraw │ │ └── ccv-vsc-overview.png │ ├── methods.md │ ├── overview_and_basic_concepts.md │ ├── system_model_and_properties.md │ └── technical_specification.md ├── ics-029-fee-payment │ └── README.md ├── ics-030-middleware │ └── README.md ├── ics-031-crosschain-queries │ └── README.md ├── ics-100-atomic-swap │ ├── README.md │ └── ibcswap.png └── ics-721-nft-transfer │ └── README.md ├── client ├── Rollup-Integration-guide.md ├── ics-006-solo-machine-client │ └── README.md ├── ics-007-tendermint-client │ └── README.md ├── ics-008-wasm-client │ └── README.md ├── ics-009-loopback-cilent │ └── README.md └── ics-010-grandpa-client │ └── README.md ├── core ├── ics-002-client-semantics │ └── README.md ├── ics-003-connection-semantics │ ├── README.md │ ├── client-validation-removal.excalidraw │ ├── client-validation-removal.md │ ├── client-validation-removal.png │ └── state.png ├── ics-004-channel-and-packet-semantics │ ├── README.md │ ├── UPGRADES.md │ ├── channel-state-machine.png │ ├── channel-upgrade-flow.png │ ├── dataflow.png │ ├── packet-state-machine.png │ └── packet-transit.png ├── ics-005-port-allocation │ └── README.md ├── ics-023-vector-commitments │ └── README.md ├── ics-024-host-requirements │ └── README.md ├── ics-025-handler-interface │ └── README.md ├── ics-026-routing-module │ ├── README.md │ └── UPGRADES.md └── ics-033-multi-hop │ ├── README.md │ ├── proof_generation.png │ ├── proof_query.png │ ├── proof_query_algorithm.png │ ├── proof_verification.png │ ├── relayer_calc_update_heights.png │ └── relayer_query_proof_and_submit.png ├── ics-001-ics-standard └── README.md ├── ics-template.md └── relayer └── ics-018-relayer-algorithms └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/workflows/link-check-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/.github/workflows/link-check-config.json -------------------------------------------------------------------------------- /.github/workflows/link-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/.github/workflows/link-check.yml -------------------------------------------------------------------------------- /.github/workflows/markdown-lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/.github/workflows/markdown-lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # editors 2 | .idea/ 3 | .vscode/ 4 | 5 | # macOS 6 | .DS_Store 7 | -------------------------------------------------------------------------------- /.markdownlint-cli2.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/.markdownlint-cli2.jsonc -------------------------------------------------------------------------------- /.markdownlint.jsonc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/.markdownlint.jsonc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/README.md -------------------------------------------------------------------------------- /archive/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/README.md -------------------------------------------------------------------------------- /archive/papers/2020-05/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/Makefile -------------------------------------------------------------------------------- /archive/papers/2020-05/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/README.md -------------------------------------------------------------------------------- /archive/papers/2020-05/aspell_dict: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/aspell_dict -------------------------------------------------------------------------------- /archive/papers/2020-05/build/paper.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/build/paper.pdf -------------------------------------------------------------------------------- /archive/papers/2020-05/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/LICENSE -------------------------------------------------------------------------------- /archive/papers/2020-05/src/acknowledgements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/acknowledgements.md -------------------------------------------------------------------------------- /archive/papers/2020-05/src/appendix-a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/appendix-a.md -------------------------------------------------------------------------------- /archive/papers/2020-05/src/appendix-b.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/appendix-b.md -------------------------------------------------------------------------------- /archive/papers/2020-05/src/appendix-c.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/appendix-c.md -------------------------------------------------------------------------------- /archive/papers/2020-05/src/bibliography.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/bibliography.bib -------------------------------------------------------------------------------- /archive/papers/2020-05/src/bibliography.csl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/bibliography.csl -------------------------------------------------------------------------------- /archive/papers/2020-05/src/channels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/channels.md -------------------------------------------------------------------------------- /archive/papers/2020-05/src/clients.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/clients.md -------------------------------------------------------------------------------- /archive/papers/2020-05/src/connections.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/connections.md -------------------------------------------------------------------------------- /archive/papers/2020-05/src/fungible-token-transfer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/fungible-token-transfer.md -------------------------------------------------------------------------------- /archive/papers/2020-05/src/host-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/host-requirements.md -------------------------------------------------------------------------------- /archive/papers/2020-05/src/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/introduction.md -------------------------------------------------------------------------------- /archive/papers/2020-05/src/metadata.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/metadata.yaml -------------------------------------------------------------------------------- /archive/papers/2020-05/src/paper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/paper.md -------------------------------------------------------------------------------- /archive/papers/2020-05/src/relayers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/relayers.md -------------------------------------------------------------------------------- /archive/papers/2020-05/src/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/structure.md -------------------------------------------------------------------------------- /archive/papers/2020-05/src/template.latex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/template.latex -------------------------------------------------------------------------------- /archive/papers/2020-05/src/testing-and-deployment.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/testing-and-deployment.md -------------------------------------------------------------------------------- /archive/papers/2020-05/src/usage-patterns.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/papers/2020-05/src/usage-patterns.md -------------------------------------------------------------------------------- /archive/v0_3_1_IBC.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/archive/v0_3_1_IBC.pdf -------------------------------------------------------------------------------- /assets/interchain-standards-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/assets/interchain-standards-image.jpg -------------------------------------------------------------------------------- /assets/interchain-standards.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/assets/interchain-standards.png -------------------------------------------------------------------------------- /meta/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/meta/CONTRIBUTING.md -------------------------------------------------------------------------------- /meta/PROCESS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/meta/PROCESS.md -------------------------------------------------------------------------------- /meta/STANDARDS_COMMITTEE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/meta/STANDARDS_COMMITTEE.md -------------------------------------------------------------------------------- /spec/IBC_V2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/IBC_V2/README.md -------------------------------------------------------------------------------- /spec/IBC_V2/core/ics-002-client-semantics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/IBC_V2/core/ics-002-client-semantics/README.md -------------------------------------------------------------------------------- /spec/IBC_V2/core/ics-004-packet-semantics/PACKET.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/IBC_V2/core/ics-004-packet-semantics/PACKET.md -------------------------------------------------------------------------------- /spec/IBC_V2/core/ics-004-packet-semantics/PACKET_HANDLER.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/IBC_V2/core/ics-004-packet-semantics/PACKET_HANDLER.md -------------------------------------------------------------------------------- /spec/IBC_V2/core/ics-005-port-allocation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/IBC_V2/core/ics-005-port-allocation/README.md -------------------------------------------------------------------------------- /spec/IBC_V2/core/ics-024-host-requirements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/IBC_V2/core/ics-024-host-requirements/README.md -------------------------------------------------------------------------------- /spec/IBC_V2/core/ics-026-application-callbacks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/IBC_V2/core/ics-026-application-callbacks/README.md -------------------------------------------------------------------------------- /spec/app/ics-020-fungible-token-transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-020-fungible-token-transfer/README.md -------------------------------------------------------------------------------- /spec/app/ics-020-fungible-token-transfer/deprecated/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-020-fungible-token-transfer/deprecated/README.md -------------------------------------------------------------------------------- /spec/app/ics-020-fungible-token-transfer/deprecated/forwarding-3-chains-failure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-020-fungible-token-transfer/deprecated/forwarding-3-chains-failure.png -------------------------------------------------------------------------------- /spec/app/ics-020-fungible-token-transfer/deprecated/forwarding-3-chains-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-020-fungible-token-transfer/deprecated/forwarding-3-chains-success.png -------------------------------------------------------------------------------- /spec/app/ics-020-fungible-token-transfer/deprecated/forwarding-3-chains.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-020-fungible-token-transfer/deprecated/forwarding-3-chains.excalidraw -------------------------------------------------------------------------------- /spec/app/ics-020-fungible-token-transfer/deprecated/source-and-sink-zones.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-020-fungible-token-transfer/deprecated/source-and-sink-zones.png -------------------------------------------------------------------------------- /spec/app/ics-027-interchain-accounts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-027-interchain-accounts/README.md -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/README.md -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/data_structures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/data_structures.md -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/figures/ccv-distribution-overview.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/figures/ccv-distribution-overview.excalidraw -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/figures/ccv-distribution-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/figures/ccv-distribution-overview.png -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/figures/ccv-evidence-overview.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/figures/ccv-evidence-overview.excalidraw -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/figures/ccv-evidence-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/figures/ccv-evidence-overview.png -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/figures/ccv-height-mapping-overview.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/figures/ccv-height-mapping-overview.excalidraw -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/figures/ccv-height-mapping-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/figures/ccv-height-mapping-overview.png -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/figures/ccv-init-overview.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/figures/ccv-init-overview.excalidraw -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/figures/ccv-init-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/figures/ccv-init-overview.png -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/figures/ccv-mapping-intuition.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/figures/ccv-mapping-intuition.excalidraw -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/figures/ccv-mapping-intuition.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/figures/ccv-mapping-intuition.png -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/figures/ccv-preccv-init-overview.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/figures/ccv-preccv-init-overview.excalidraw -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/figures/ccv-preccv-init-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/figures/ccv-preccv-init-overview.png -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/figures/ccv-unbonding-overview.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/figures/ccv-unbonding-overview.excalidraw -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/figures/ccv-unbonding-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/figures/ccv-unbonding-overview.png -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/figures/ccv-vsc-overview.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/figures/ccv-vsc-overview.excalidraw -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/figures/ccv-vsc-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/figures/ccv-vsc-overview.png -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/methods.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/methods.md -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/overview_and_basic_concepts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/overview_and_basic_concepts.md -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/system_model_and_properties.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/system_model_and_properties.md -------------------------------------------------------------------------------- /spec/app/ics-028-cross-chain-validation/technical_specification.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-028-cross-chain-validation/technical_specification.md -------------------------------------------------------------------------------- /spec/app/ics-029-fee-payment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-029-fee-payment/README.md -------------------------------------------------------------------------------- /spec/app/ics-030-middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-030-middleware/README.md -------------------------------------------------------------------------------- /spec/app/ics-031-crosschain-queries/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-031-crosschain-queries/README.md -------------------------------------------------------------------------------- /spec/app/ics-100-atomic-swap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-100-atomic-swap/README.md -------------------------------------------------------------------------------- /spec/app/ics-100-atomic-swap/ibcswap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-100-atomic-swap/ibcswap.png -------------------------------------------------------------------------------- /spec/app/ics-721-nft-transfer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/app/ics-721-nft-transfer/README.md -------------------------------------------------------------------------------- /spec/client/Rollup-Integration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/client/Rollup-Integration-guide.md -------------------------------------------------------------------------------- /spec/client/ics-006-solo-machine-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/client/ics-006-solo-machine-client/README.md -------------------------------------------------------------------------------- /spec/client/ics-007-tendermint-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/client/ics-007-tendermint-client/README.md -------------------------------------------------------------------------------- /spec/client/ics-008-wasm-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/client/ics-008-wasm-client/README.md -------------------------------------------------------------------------------- /spec/client/ics-009-loopback-cilent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/client/ics-009-loopback-cilent/README.md -------------------------------------------------------------------------------- /spec/client/ics-010-grandpa-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/client/ics-010-grandpa-client/README.md -------------------------------------------------------------------------------- /spec/core/ics-002-client-semantics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-002-client-semantics/README.md -------------------------------------------------------------------------------- /spec/core/ics-003-connection-semantics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-003-connection-semantics/README.md -------------------------------------------------------------------------------- /spec/core/ics-003-connection-semantics/client-validation-removal.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-003-connection-semantics/client-validation-removal.excalidraw -------------------------------------------------------------------------------- /spec/core/ics-003-connection-semantics/client-validation-removal.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-003-connection-semantics/client-validation-removal.md -------------------------------------------------------------------------------- /spec/core/ics-003-connection-semantics/client-validation-removal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-003-connection-semantics/client-validation-removal.png -------------------------------------------------------------------------------- /spec/core/ics-003-connection-semantics/state.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-003-connection-semantics/state.png -------------------------------------------------------------------------------- /spec/core/ics-004-channel-and-packet-semantics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-004-channel-and-packet-semantics/README.md -------------------------------------------------------------------------------- /spec/core/ics-004-channel-and-packet-semantics/UPGRADES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-004-channel-and-packet-semantics/UPGRADES.md -------------------------------------------------------------------------------- /spec/core/ics-004-channel-and-packet-semantics/channel-state-machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-004-channel-and-packet-semantics/channel-state-machine.png -------------------------------------------------------------------------------- /spec/core/ics-004-channel-and-packet-semantics/channel-upgrade-flow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-004-channel-and-packet-semantics/channel-upgrade-flow.png -------------------------------------------------------------------------------- /spec/core/ics-004-channel-and-packet-semantics/dataflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-004-channel-and-packet-semantics/dataflow.png -------------------------------------------------------------------------------- /spec/core/ics-004-channel-and-packet-semantics/packet-state-machine.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-004-channel-and-packet-semantics/packet-state-machine.png -------------------------------------------------------------------------------- /spec/core/ics-004-channel-and-packet-semantics/packet-transit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-004-channel-and-packet-semantics/packet-transit.png -------------------------------------------------------------------------------- /spec/core/ics-005-port-allocation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-005-port-allocation/README.md -------------------------------------------------------------------------------- /spec/core/ics-023-vector-commitments/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-023-vector-commitments/README.md -------------------------------------------------------------------------------- /spec/core/ics-024-host-requirements/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-024-host-requirements/README.md -------------------------------------------------------------------------------- /spec/core/ics-025-handler-interface/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-025-handler-interface/README.md -------------------------------------------------------------------------------- /spec/core/ics-026-routing-module/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-026-routing-module/README.md -------------------------------------------------------------------------------- /spec/core/ics-026-routing-module/UPGRADES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-026-routing-module/UPGRADES.md -------------------------------------------------------------------------------- /spec/core/ics-033-multi-hop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-033-multi-hop/README.md -------------------------------------------------------------------------------- /spec/core/ics-033-multi-hop/proof_generation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-033-multi-hop/proof_generation.png -------------------------------------------------------------------------------- /spec/core/ics-033-multi-hop/proof_query.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-033-multi-hop/proof_query.png -------------------------------------------------------------------------------- /spec/core/ics-033-multi-hop/proof_query_algorithm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-033-multi-hop/proof_query_algorithm.png -------------------------------------------------------------------------------- /spec/core/ics-033-multi-hop/proof_verification.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-033-multi-hop/proof_verification.png -------------------------------------------------------------------------------- /spec/core/ics-033-multi-hop/relayer_calc_update_heights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-033-multi-hop/relayer_calc_update_heights.png -------------------------------------------------------------------------------- /spec/core/ics-033-multi-hop/relayer_query_proof_and_submit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/core/ics-033-multi-hop/relayer_query_proof_and_submit.png -------------------------------------------------------------------------------- /spec/ics-001-ics-standard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/ics-001-ics-standard/README.md -------------------------------------------------------------------------------- /spec/ics-template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/ics-template.md -------------------------------------------------------------------------------- /spec/relayer/ics-018-relayer-algorithms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/ibc/HEAD/spec/relayer/ics-018-relayer-algorithms/README.md --------------------------------------------------------------------------------