forked from wevm/viem
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Story Odyssey testnet (wevm#3095)
* feat: add Story Odyssey testnet * Update storyOdyssey.ts * Create many-lies-drum.md --------- Co-authored-by: jxom <[email protected]>
- Loading branch information
1 parent
8b70d75
commit 1d2ae84
Showing
3 changed files
with
27 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 Story Odyssey 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
import { defineChain } from '../../utils/chain/defineChain.js' | ||
|
||
export const storyOdyssey = /*#__PURE__*/ defineChain({ | ||
id: 1516, | ||
name: 'Story Odyssey', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'IP', | ||
symbol: 'IP', | ||
}, | ||
rpcUrls: { | ||
default: { http: ['https://rpc.odyssey.storyrpc.io'] }, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Story Odyssey Explorer', | ||
url: 'https://odyssey.storyscan.xyz', | ||
}, | ||
}, | ||
testnet: true, | ||
}) |
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