├── CODEOWNERS ├── README.md ├── localnet ├── genesis.json.gz ├── genesis.json.sum ├── light-roots │ └── heights.json └── peers.json └── pooltoy-5 ├── genesis.json.gz ├── genesis.json.sum ├── light-roots └── heights.json └── peers.json /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @okwme @jackzampolin @cosmos/ape-unit_registry_write 2 | /pooltoy-5/ @okwme 3 | /localnet/ @randomshinichi 4 | /pooltoy-5/ @okwme 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | > # **ARCHIVED**: Work on this repo has moved to https://github.com/cosmos/chain-registry 2 | 3 | # Overview 4 | 5 | This repository holds data for chains in the cosmos ecosystem, the [registrar](https://github.com/cosmos/cosmos-registrar) can be used to submit chains to the registry. 6 | 7 | # Motivation 8 | Conversations in the Interchain [UX Working Group](http://hackmd.io/@okwme/ux-wg) and [Chain Agnostic Improvement Proposals](https://github.com/ChainAgnostic/CAIPs/issues/27) around multi-chain assets have shown the need for a registry to discover chains and keep basic information up-to-date in order to enable communication with these chains. 9 | 10 | 11 | # Goal 12 | Create and maintain a global chain registry for applications to discover and communicate with different chains that support the [IBC protocol](https://github.com/cosmos/ics). 13 | 14 | * Allow contributors to take ownership of the data they submit 15 | * Provide all information necessary to communicate with each chain 16 | * Introduce state of chains to navigate active/inactive chains easily 17 | * Make the submission process as easy as possible with [cosmos-registrar](https://github.com/cosmos/cosmos-registrar) 18 | 19 | To utilize a github repository is seen as an intermediate solution by parts of the interchain community that could be replaced by a more decentralized approach like a registry chain or a solution that is anchored on an existing chain in the future. 20 | 21 | # Roadmap 22 | 23 | 1) Finalize registry specification and mechanisms 24 | 25 | 2) Test specification with active chains 26 | 27 | 3) Move to a more decentralized approach with a well tested specification 28 | -------------------------------------------------------------------------------- /localnet/genesis.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/registry/b739ca136cf1f8b11334f33a17b1fe5dbe5b38be/localnet/genesis.json.gz -------------------------------------------------------------------------------- /localnet/genesis.json.sum: -------------------------------------------------------------------------------- 1 | 140739c5b05b991845d77ac9fbb309d92b4bb72adbf2a5278460544f0c494b4d -------------------------------------------------------------------------------- /localnet/light-roots/heights.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "trust-height": 704, 4 | "trust-hash": "1FBFFB44B84BFF31217FA6FAA74042817535186164CB413839E31437291955A3" 5 | }, 6 | { 7 | "trust-height": 975, 8 | "trust-hash": "5F707210ABD1C55EA909EBAB83211612272AF828C820CEF8FA0D84AB9F85ACC2" 9 | }, 10 | { 11 | "trust-height": 990, 12 | "trust-hash": "401369E589EFCCB49244277D2D5F5AC22ADFE5A65E790ECFF87DFD7CE5E3B837" 13 | }, 14 | { 15 | "trust-height": 996, 16 | "trust-hash": "2756EEC8C7F36A5C817CCF1F36FD8EE71B676A26D37AC74FFC80CCF9FB6AED42" 17 | }, 18 | { 19 | "trust-height": 1000, 20 | "trust-hash": "C93D43E742B28356E2F895A0FD29E8413940963C21A5FAB7E31FF2556397AC8B" 21 | } 22 | ] -------------------------------------------------------------------------------- /localnet/peers.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "id": "13df7a4f0ad60842b00d663445a508bf97094e54", 4 | "address": "http://localhost:26657", 5 | "is_seed": true, 6 | "last_contact_height": 704, 7 | "last_contact_date": "2021-07-28T16:49:49.802092652+02:00", 8 | "updated_at": "2021-07-28T16:49:49.802092652+02:00", 9 | "reachable": true 10 | } 11 | ] -------------------------------------------------------------------------------- /pooltoy-5/genesis.json.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cosmos/registry/b739ca136cf1f8b11334f33a17b1fe5dbe5b38be/pooltoy-5/genesis.json.gz -------------------------------------------------------------------------------- /pooltoy-5/genesis.json.sum: -------------------------------------------------------------------------------- 1 | 773a40d61317ac64de85e0e82f239109f0e8370f2c8c9098d60f27464daca5d4 -------------------------------------------------------------------------------- /pooltoy-5/light-roots/heights.json: -------------------------------------------------------------------------------- 1 | [ 2 | { 3 | "trust-height": 1224485, 4 | "trust-hash": "7015818599012C02E9185E3B0A1D264AA7218F5495E3726E21AE46922A423C0D" 5 | } 6 | ] -------------------------------------------------------------------------------- /pooltoy-5/peers.json: -------------------------------------------------------------------------------- 1 | [{"id":"0a8161e5aa34d24fc1fb06a1418994a0f6e66d0c","address":"http://pooltoy.interchain.berlin:26657","is_seed":true,"last_contact_height":1224485,"last_contact_date":"2021-07-29T19:05:15.089873+02:00","updated_at":"2021-07-29T19:05:15.089873+02:00","reachable":true}] --------------------------------------------------------------------------------