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.
Add Arbitrum Nova to chain list (#216)
* Adding Arbitrum Nova to chain list * Updated changeset and README * Adding export to index
- Loading branch information
1 parent
b06e508
commit a1bd7c6
Showing
4 changed files
with
41 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': patch | ||
--- | ||
|
||
Added Arbitrum Nova to list of supported chains |
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,34 @@ | ||
import { Chain } from './types' | ||
|
||
export const arbitrumNova = { | ||
id: 42_170, | ||
name: 'Arbitrum Nova', | ||
network: 'arbitrum-nova', | ||
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 }, | ||
rpcUrls: { | ||
blast: { | ||
http: ['https://arbitrum-nova.public.blastapi.io'], | ||
webSocket: ['wss://arbitrum-nova.public.blastapi.io'], | ||
}, | ||
default: { | ||
http: ['https://nova.arbitrum.io/rpc'], | ||
}, | ||
public: { | ||
http: ['https://nova.arbitrum.io/rpc'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
etherscan: { name: 'Arbiscan', url: 'https://nova.arbiscan.io' }, | ||
blockScout: { | ||
name: 'BlockScout', | ||
url: 'https://nova-explorer.arbitrum.io/', | ||
}, | ||
default: { name: 'Arbiscan', url: 'https://nova.arbiscan.io' }, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0xca11bde05977b3631167028862be2a173976ca11', | ||
blockCreated: 1746963, | ||
}, | ||
}, | ||
} 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