-
Notifications
You must be signed in to change notification settings - Fork 411
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(chains): add & update chains (#2019)
- Loading branch information
Showing
31 changed files
with
534 additions
and
106 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,5 @@ | ||
--- | ||
"@thirdweb-dev/chains": patch | ||
--- | ||
|
||
add & update chains |
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,37 @@ | ||
import type { Chain } from "../src/types"; | ||
export default { | ||
"chain": "parallel-stormy-spica", | ||
"chainId": 1350216234, | ||
"explorers": [ | ||
{ | ||
"name": "Blockscout", | ||
"url": "https://parallel-stormy-spica.explorer.mainnet.skalenodes.com", | ||
"standard": "EIP3091" | ||
} | ||
], | ||
"faucets": [ | ||
"https://sfuel.skale.network/" | ||
], | ||
"icon": { | ||
"url": "ipfs://bafkreiagrt5dhgltg2kmw7hf24kslstr5h42e745luuxwp2wbg24gm6zza", | ||
"width": 500, | ||
"height": 500, | ||
"format": "png" | ||
}, | ||
"name": "SKALE Titan Hub", | ||
"nativeCurrency": { | ||
"name": "sFUEL", | ||
"symbol": "sFUEL", | ||
"decimals": 18 | ||
}, | ||
"networkId": 1350216234, | ||
"rpc": [ | ||
"https://skale-titan-hub.rpc.thirdweb.com/${THIRDWEB_API_KEY}", | ||
"https://1350216234.rpc.thirdweb.com/${THIRDWEB_API_KEY}", | ||
"https://mainnet.skalenodes.com/v1/parallel-stormy-spica", | ||
"wss://mainnet.skalenodes.com/v1/ws/parallel-stormy-spica" | ||
], | ||
"shortName": "titan-mainnet", | ||
"slug": "skale-titan-hub", | ||
"testnet": false | ||
} as const satisfies Chain; |
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,37 @@ | ||
import type { Chain } from "../src/types"; | ||
export default { | ||
"chain": "staging-aware-chief-gianfar", | ||
"chainId": 1517929550, | ||
"explorers": [ | ||
{ | ||
"name": "Blockscout", | ||
"url": "https://staging-aware-chief-gianfar.explorer.staging-v3.skalenodes.com", | ||
"standard": "EIP3091" | ||
} | ||
], | ||
"faucets": [ | ||
"https://sfuel.dirtroad.dev/staging" | ||
], | ||
"icon": { | ||
"url": "ipfs://bafkreiagrt5dhgltg2kmw7hf24kslstr5h42e745luuxwp2wbg24gm6zza", | ||
"width": 500, | ||
"height": 500, | ||
"format": "png" | ||
}, | ||
"name": "SKALE Titan Hub Testnet", | ||
"nativeCurrency": { | ||
"name": "sFUEL", | ||
"symbol": "sFUEL", | ||
"decimals": 18 | ||
}, | ||
"networkId": 1517929550, | ||
"rpc": [ | ||
"https://skale-titan-hub-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", | ||
"https://1517929550.rpc.thirdweb.com/${THIRDWEB_API_KEY}", | ||
"https://staging-v3.skalenodes.com/v1/staging-aware-chief-gianfar", | ||
"wss://staging-v3.skalenodes.com/v1/ws/staging-aware-chief-gianfar" | ||
], | ||
"shortName": "titan-testnet", | ||
"slug": "skale-titan-hub-testnet", | ||
"testnet": true | ||
} as const satisfies Chain; |
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,31 @@ | ||
import type { Chain } from "../src/types"; | ||
export default { | ||
"chain": "Avalanche", | ||
"chainId": 15535, | ||
"explorers": [], | ||
"faucets": [], | ||
"features": [], | ||
"icon": { | ||
"url": "https://images.ctfassets.net/9bazykntljf6/62CceHSYsRS4D9fgDSkLRB/877cb8f26954e1743ff535fd7fdaf78f/avacloud-placeholder.svg", | ||
"width": 256, | ||
"height": 256, | ||
"format": ".svg" | ||
}, | ||
"infoURL": "https://avacloud.io", | ||
"name": "QI M 11271", | ||
"nativeCurrency": { | ||
"name": "QI M 11271 Token", | ||
"symbol": "JZW", | ||
"decimals": 18 | ||
}, | ||
"networkId": 15535, | ||
"redFlags": [], | ||
"rpc": [ | ||
"https://qi-m-11271.rpc.thirdweb.com/${THIRDWEB_API_KEY}", | ||
"https://15535.rpc.thirdweb.com/${THIRDWEB_API_KEY}", | ||
"https://subnets.avacloud-dev.io/a47e1c06-fa75-4536-a900-1574d198e197" | ||
], | ||
"shortName": "QI M 11271", | ||
"slug": "qi-m-11271", | ||
"testnet": true | ||
} as const satisfies Chain; |
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 |
---|---|---|
@@ -1,35 +1,28 @@ | ||
import type { Chain } from "../src/types"; | ||
export default { | ||
"chain": "Yuma", | ||
"chain": "LQC", | ||
"chainId": 1662, | ||
"explorers": [], | ||
"faucets": [], | ||
"features": [ | ||
{ | ||
"name": "EIP155" | ||
}, | ||
"explorers": [ | ||
{ | ||
"name": "EIP1559" | ||
"name": "Liquichain Mainnet", | ||
"url": "https://mainnet.liquichain.io", | ||
"standard": "EIP3091" | ||
} | ||
], | ||
"icon": { | ||
"url": "ipfs://QmSFMBk3rMyu45Sy9KQHjgArFj4HdywANNYrSosLMUdcti", | ||
"width": 1213, | ||
"height": 1213, | ||
"format": "png" | ||
}, | ||
"infoURL": "https://horizen.io/", | ||
"name": "Horizen Yuma Testnet Deprecated", | ||
"faucets": [], | ||
"infoURL": "https://liquichain.io/", | ||
"name": "Liquichain", | ||
"nativeCurrency": { | ||
"name": "Testnet Zen", | ||
"symbol": "tZEN", | ||
"name": "Licoin", | ||
"symbol": "LCN", | ||
"decimals": 18 | ||
}, | ||
"networkId": 1662, | ||
"redFlags": [ | ||
"reusedChainId" | ||
], | ||
"rpc": [], | ||
"shortName": "Yuma", | ||
"slip44": 121, | ||
"slug": "horizen-yuma-testnet-deprecated", | ||
"status": "deprecated", | ||
"testnet": true | ||
"shortName": "Liquichain", | ||
"slug": "liquichain", | ||
"testnet": false | ||
} as const satisfies Chain; |
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,41 @@ | ||
import type { Chain } from "../src/types"; | ||
export default { | ||
"chain": "ETH", | ||
"chainId": 17001, | ||
"explorers": [ | ||
{ | ||
"name": "Redstone Holesky Explorer", | ||
"url": "https://explorer.holesky.redstone.xyz", | ||
"standard": "EIP3091", | ||
"icon": { | ||
"url": "ipfs://QmdwQDr6vmBtXmK2TmknkEuZNoaDqTasFdZdu3DRw8b2wt", | ||
"width": 1000, | ||
"height": 1628, | ||
"format": "png" | ||
} | ||
} | ||
], | ||
"faucets": [], | ||
"icon": { | ||
"url": "ipfs://bafkreieyaqgkgntvxuo5tnhgseladga5q6gutc37dab7kqqfdguhq7vkxq", | ||
"width": 5836, | ||
"height": 5836, | ||
"format": "png" | ||
}, | ||
"infoURL": "https://redstone.xyz/docs/network-info", | ||
"name": "Redstone Holesky Testnet", | ||
"nativeCurrency": { | ||
"name": "Redstone Testnet Ether", | ||
"symbol": "ETH", | ||
"decimals": 18 | ||
}, | ||
"networkId": 17001, | ||
"rpc": [ | ||
"https://redstone-holesky-testnet.rpc.thirdweb.com/${THIRDWEB_API_KEY}", | ||
"https://17001.rpc.thirdweb.com/${THIRDWEB_API_KEY}", | ||
"https://rpc.holesky.redstone.xyz" | ||
], | ||
"shortName": "redstone", | ||
"slug": "redstone-holesky-testnet", | ||
"testnet": true | ||
} as const satisfies Chain; |
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
Oops, something went wrong.