This repository has been archived by the owner on Sep 6, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 205
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Taiko (Alpha-3 Testnet) (#411)
* Add chain: Taiko (Alpha-3 Testnet) * Update clever-squids-compare.md --------- Co-authored-by: jxom <[email protected]>
- Loading branch information
1 parent
56c127d
commit df697ac
Showing
4 changed files
with
29 additions
and
0 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 @@ | ||
--- | ||
"@wagmi/chains": minor | ||
--- | ||
|
||
Added Taiko (Alpha-3 Testnet) |
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,22 @@ | ||
import { Chain } from './types' | ||
|
||
export const taikoTestnetSepolia = { | ||
id: 167005, | ||
name: 'Taiko (Alpha-3 Testnet)', | ||
network: 'taiko-sepolia', | ||
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://rpc.test.taiko.xyz'], | ||
}, | ||
public: { | ||
http: ['https://rpc.test.taiko.xyz'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'blockscout', | ||
url: 'https://explorer.test.taiko.xyz', | ||
}, | ||
}, | ||
} as const satisfies Chain |