-
-
Notifications
You must be signed in to change notification settings - Fork 914
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added creatorTestnet * feat: Added Creator Testnet Chain * feat: added creatorTestnet chain * Update creatorTestnet.ts * Create old-kiwis-sneeze.md --------- Co-authored-by: jxom <7336481+jxom@users.noreply.github.com>
- Loading branch information
1 parent
f8c002f
commit fb9d292
Showing
3 changed files
with
31 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 Creator 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,25 @@ | ||
import { defineChain } from '../../utils/chain/defineChain.js' | ||
|
||
export const creatorTestnet = defineChain({ | ||
id: 66665, | ||
name: 'Creator', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'Ether', | ||
symbol: 'ETH', | ||
}, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://rpc.creatorchain.io'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { name: 'Explorer', url: 'https://explorer.creatorchain.io' }, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0xcA11bde05977b3631167028862bE2a173976CA11', | ||
}, | ||
}, | ||
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