-
Notifications
You must be signed in to change notification settings - Fork 135
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
11 changed files
with
125 additions
and
97 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Archway Netowrks | ||
|
||
This repo contains a chain.json and assetlist.json for Archway Protocol based networks. A chain.json contains data that makes it easy to start running or interacting with a node. | ||
|
||
Schema files containing the recommended metadata structure can be found in the *.schema.json files located in the root directory. Schemas are still undergoing revision as user needs are surfaced. Optional fields may be added beyond what is contained in the schema files. | ||
|
||
# Adding new IBC paths | ||
|
||
If you are a relayer operator and wish to add a new IBC path connecting to Archway Networks, please follow the below mentioned criteria and create a PR after creating the path. | ||
## Requirements for the IBC channel: | ||
- Archway client's trusting period should be set to 2/3 of unbonding period e.g. for archway-1 (mainnet) the clients trusting period must be 1209600s | ||
- IBC client for the counterparty chain should also have a trusting period set to exactly 2/3 of the chains unbonding period | ||
|
||
## Steps to create new IBC paths | ||
|
||
We recommend using hermes relayer implementation and use this [tutorial](https://hermes.informal.systems/tutorials/local-chains/add-a-new-relay-path.html) to create new paths. | ||
|
||
# Requesting a new IBC path | ||
|
||
If you are builder on Archway protocol and/or looking to connect Archway Networks to another chain through IBC, but do have the expertise or the capacity to operate relayers, you can still create an issue with a proposal in this repo requesting a new path and we would try our best to get that public infrastructure setup. | ||
|
||
# Feegrants Program | ||
|
||
Relayers operating IBC paths connecting to archway-1 (mainnet) may apply for a feegrant to pay for IBC transfer fees. | ||
|
||
To apply for a feegrant fill out the following form: https://forms.gle/AfUbwRpHU5XGBquM6 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
{ | ||
"$schema": "../ibc_data.schema.json", | ||
"chain_1": { | ||
"chain_name": "archway-1", | ||
"client_id": "07-tendermint-22", | ||
"connection_id": "connection-20" | ||
}, | ||
"chain_2": { | ||
"chain_name": "nois-1", | ||
"client_id": "07-tendermint-15", | ||
"connection_id": "connection-9" | ||
}, | ||
"channels": [ | ||
{ | ||
"chain_1": { | ||
"channel_id": "channel-17", | ||
"port_id": "transfer" | ||
}, | ||
"chain_2": { | ||
"channel_id": "channel-21", | ||
"port_id": "transfer" | ||
}, | ||
"ordering": "unordered", | ||
"version": "ics20-1", | ||
"tags": { | ||
"status": "live" | ||
} | ||
}, | ||
{ | ||
"chain_1": { | ||
"channel_id": "channel-19", | ||
"port_id": "wasm.archway10f3aasgsnpv84ymjyld50jayc4ecu267sdpjamauwm8nvxlzex9qj4dkwr" | ||
}, | ||
"chain_2": { | ||
"channel_id": "channel-22", | ||
"port_id": "wasm.nois1acyc05v6fgcdgj88nmz2t40aex9nlnptqpwp5hf8hwg7rhce9uuqgqz5wp" | ||
}, | ||
"ordering": "unordered", | ||
"version": "nois-v7", | ||
"tags": { | ||
"status": "live" | ||
} | ||
} | ||
] | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters