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.
* Added MEV and MEVTestnet Chain * applied multicall3 * Create beige-toys-perform.md
- Loading branch information
1 parent
dee1782
commit 3c3143d
Showing
4 changed files
with
72 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 MEV and MEVTestnet 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,32 @@ | ||
import { Chain } from './types' | ||
|
||
export const mev = { | ||
id: 7518, | ||
network: 'MEVerse', | ||
name: 'MEVerse Chain Mainnet', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'MEVerse', | ||
symbol: 'MEV', | ||
}, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://rpc.meversemainnet.io'], | ||
}, | ||
public: { | ||
http: ['https://rpc.meversemainnet.io'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Explorer', | ||
url: 'https://www.meversescan.io', | ||
}, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0xca11bde05977b3631167028862be2a173976ca11', | ||
blockCreated: 86881340, | ||
}, | ||
}, | ||
} as const satisfies 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
import { Chain } from './types' | ||
|
||
export const mevTestnet = { | ||
id: 4759, | ||
network: 'MEVerse Testnet', | ||
name: 'MEVerse Chain Testnet', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'MEVerse', | ||
symbol: 'MEV', | ||
}, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://rpc.meversetestnet.io'], | ||
}, | ||
public: { | ||
http: ['https://rpc.meversetestnet.io'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Explorer', | ||
url: 'https://testnet.meversescan.io/', | ||
}, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0xca11bde05977b3631167028862be2a173976ca11', | ||
blockCreated: 64371115, | ||
}, | ||
}, | ||
testnet: true, | ||
} as const satisfies Chain |