-
-
Notifications
You must be signed in to change notification settings - Fork 915
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add shibarium testnet, multicall3 contract to dogechain, fix do…
…gechain nativeCurrency name and symbol (#2451) * fix: wrong native currency and symbol dogechain fixed incorrect native currency and symbol on Dogechain network * feat: add multicall3 contract to dogechain * feat: add shibarium testnet chain definition * feat: add shibarium testnet chain definition * Update shibariumTestnet.ts * Update shibariumTestnet.ts * Create light-donuts-flash.md --------- Co-authored-by: jxom <j@wevm.dev>
- Loading branch information
Showing
4 changed files
with
43 additions
and
2 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,6 @@ | ||
--- | ||
"viem": patch | ||
--- | ||
|
||
Added Dogechain multicall address. | ||
Added Puppynet Shibarium 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,28 @@ | ||
import { defineChain } from '../../utils/chain/defineChain.js' | ||
|
||
export const bscTestnet = /*#__PURE__*/ defineChain({ | ||
id: 157, | ||
name: 'Puppynet Shibarium', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'Bone', | ||
symbol: 'BONE', | ||
}, | ||
rpcUrls: { | ||
default: { http: ['https://puppynet.shibrpc.com'] }, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Blockscout', | ||
url: 'https://puppyscan.shib.io', | ||
apiUrl: 'https://puppyscan.shib.io/api', | ||
}, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0xA4029b74FBA366c926eDFA7Dd10B21C621170a4c', | ||
blockCreated: 3035769, | ||
}, | ||
}, | ||
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