Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Chain Configurations: Add Explorer Links, Developer Docs, and Chain Info #273

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions scripts/src/chains/arbitrum.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"title": "Arbitrum",
"homepage": "https://arbitrum.io/",
"mainnet":{
"name":"Arbitrum One",
"id":"42161"
"mainnet": {
"name": "Arbitrum One",
"id": "42161"
},
"testnet":{
"name":"Goerli",
"id":"421613"
"testnet": {
"name": "Arbitrum Sepolia",
"id": "421614"
},
"explorer": [
{
Expand All @@ -22,8 +22,8 @@
}
],
"finality": {
"details":"https://developer.arbitrum.io/tx-lifecycle",
"details": "https://developer.arbitrum.io/tx-lifecycle",
"instant": 200,
"otherwise": "finalized"
}
}
}
15 changes: 10 additions & 5 deletions scripts/src/chains/arbitrum_sepolia.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,20 @@
{
"title": "Arbitrum Sepolia",
"homepage": "https://arbitrum.io/",
"testnet":{
"name":"Sepolia",
"id":"421614"
"testnet": {
"name": "Sepolia",
"id": "421614"
},
"explorer": [
{
"url": "https://sepolia.arbiscan.io/",
"description": "Arbitrum Explorer"
}
],
"developer": [ ]
}
"developer": [
{
"url": "https://docs.arbitrum.io/build-decentralized-apps/quickstart-solidity-hardhat",
"description": "Developer docs"
}
]
}
32 changes: 18 additions & 14 deletions scripts/src/chains/base.json
Original file line number Diff line number Diff line change
@@ -1,29 +1,33 @@
{
"title": "Base",
"homepage": "https://base.org/",
"mainnet":{
"name":"Base",
"id":"8453"
"mainnet": {
"name": "Base",
"id": "8453"
},
"testnet":{
"name":"Base Goerli",
"id":"84531"
"testnet": {
"name": "Base Sepolia",
"id": "84532"
},
"developer": [
{
"url": "https://docs.base.org/",
"description":"Developer docs"
}
],
{
"url": "https://docs.base.org/",
"description": "Developer docs"
}
],
"explorer": [
{
"url": "https://goerli.basescan.org/",
"url": "https://basescan.org/",
"description": "Etherscan"
},
{
"url": "https://base-goerli.blockscout.com/",
"url": "https://base.blockscout.com/",
"description": "Blockscout"
},
{
"url": "https://base.xangle.io/",
"description": "Xangle"
}
],
"contractSource": "ethereum/contracts/bridge/Bridge.sol"
}
}
22 changes: 13 additions & 9 deletions scripts/src/chains/base_sepolia.json
Original file line number Diff line number Diff line change
@@ -1,21 +1,25 @@
{
"title": "Base Sepolia",
"homepage": "https://base.org/",
"testnet":{
"name":"Base Sepolia",
"id":"84532"
"testnet": {
"name": "Base Sepolia",
"id": "84532"
},
"developer": [
{
"url": "https://docs.base.org/",
"description":"Developer docs"
}
],
{
"url": "https://docs.base.org/",
"description": "Developer docs"
}
],
"explorer": [
{
"url": "https://sepolia.basescan.org/",
"description": "Etherscan"
},
{
"url": "https://base-sepolia.blockscout.com/",
"description": "Blockscout"
}
],
"contractSource": "ethereum/contracts/bridge/Bridge.sol"
}
}
32 changes: 21 additions & 11 deletions scripts/src/chains/polygon_sepolia.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,24 @@
{
"title": "Polygon Sepolia",
"homepage": "https://polygon.technology/",
"testnet":{
"name":"Sepolia",
"id":"80002"
"title": "Polygon Polygon Amoy Testnet",
"homepage": "https://polygon.technology/",
"testnet": {
"name": "Polygon Amoy Testnet",
"id": "80002"
},
"explorer": [
{
"url": "https://amoy.polygonscan.com/",
"description": "Etherscan"
},
"contractSource": "ethereum/contracts/bridge/Bridge.sol",
"finality": {
"details":"https://docs.polygon.technology/pos/architecture/heimdall/checkpoints/",
"instant": 200,
"otherwise": "finalized"
{
"url": "https://www.oklink.com/amoy",
"description": "Oklink"
}
}
],
"contractSource": "ethereum/contracts/bridge/Bridge.sol",
"finality": {
"details": "https://docs.polygon.technology/pos/architecture/heimdall/checkpoints/",
"instant": 200,
"otherwise": "finalized"
}
}