-
-
Notifications
You must be signed in to change notification settings - Fork 868
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* ci: canary with provenance * add taiko * typo * Bun * bun * bun * Update taiko.ts * Update index.ts --------- Co-authored-by: Tom Meagher <tom@meagher.co> Co-authored-by: abs3ntdev <abs3ntdev@users.noreply.github.com> Co-authored-by: jxom <j@wevm.dev>
- Loading branch information
1 parent
7ab8e52
commit c612197
Showing
3 changed files
with
35 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 @@ | ||
--- | ||
"viem": patch | ||
--- | ||
|
||
Added taiko mainnet |
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,29 @@ | ||
import { defineChain } from '../../utils/chain/defineChain.js' | ||
|
||
export const taiko = /*#__PURE__*/ defineChain({ | ||
id: 167000, | ||
name: 'Taiko Mainnet', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'Ether', | ||
symbol: 'ETH', | ||
}, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://rpc.mainnet.taiko.xyz'], | ||
webSocket: ['wss://ws.mainnet.taiko.xyz'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Taikoscan', | ||
url: 'https://taikoscan.network', | ||
apiUrl: 'https://taikoscan.network/api', | ||
}, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0xcb2436774C3e191c85056d248EF4260ce5f27A9D', | ||
}, | ||
}, | ||
}) |
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