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.
Merge branch 'wagmi-dev:main' into main
- Loading branch information
Showing
85 changed files
with
1,732 additions
and
812 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 Emerald, Sapphire & Sapphire Testnet 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@wagmi/chains": minor | ||
--- | ||
|
||
Added `ewc` & `volta` 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
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,36 @@ | ||
import { Chain } from './types' | ||
|
||
export const base = { | ||
id: 8453, | ||
network: 'base', | ||
name: 'Base', | ||
nativeCurrency: { name: 'Base', symbol: 'ETH', decimals: 18 }, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://mainnet.base.org'], | ||
}, | ||
public: { | ||
http: ['https://mainnet.base.org'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
blockscout: { | ||
name: 'Basescout', | ||
url: 'https://base.blockscout.com', | ||
}, | ||
default: { | ||
name: 'Basescan', | ||
url: 'https://basescan.org', | ||
}, | ||
etherscan: { | ||
name: 'Basescan', | ||
url: 'https://basescan.org', | ||
}, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0xca11bde05977b3631167028862be2a173976ca11', | ||
blockCreated: 5022, | ||
}, | ||
}, | ||
} 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
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,22 @@ | ||
import { Chain } from './types' | ||
|
||
export const bxn = { | ||
id: 4999, | ||
name: 'BlackFort Exchange Network', | ||
network: 'bxn', | ||
nativeCurrency: { name: 'BlackFort Token', symbol: 'BXN', decimals: 18 }, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://mainnet.blackfort.network/rpc'], | ||
}, | ||
public: { | ||
http: ['https://mainnet.blackfort.network/rpc'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Blockscout', | ||
url: 'https://explorer.blackfort.network', | ||
}, | ||
}, | ||
} 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,26 @@ | ||
import { Chain } from './types' | ||
|
||
export const bxnTestnet = { | ||
id: 4777, | ||
name: 'BlackFort Exchange Network Testnet', | ||
network: 'bxnTestnet', | ||
nativeCurrency: { | ||
name: 'BlackFort Testnet Token', | ||
symbol: 'TBXN', | ||
decimals: 18, | ||
}, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://testnet.blackfort.network/rpc'], | ||
}, | ||
public: { | ||
http: ['https://testnet.blackfort.network/rpc'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Blockscout', | ||
url: 'https://testnet-explorer.blackfort.network', | ||
}, | ||
}, | ||
} 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
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,22 @@ | ||
import { Chain } from './types' | ||
|
||
export const classic = { | ||
id: 61, | ||
name: 'Ethereum Classic', | ||
network: 'classic', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'ETC', | ||
symbol: 'ETC', | ||
}, | ||
rpcUrls: { | ||
default: { http: ['https://etc.rivet.link'] }, | ||
public: { http: ['https://etc.rivet.link'] }, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Blockscout', | ||
url: 'https://blockscout.com/etc/mainnet', | ||
}, | ||
}, | ||
} 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
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,29 @@ | ||
import { Chain } from './types' | ||
|
||
export const cronosTestnet = { | ||
id: 338, | ||
name: 'Cronos Testnet', | ||
network: 'cronos-testnet', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'CRO', | ||
symbol: 'tCRO', | ||
}, | ||
rpcUrls: { | ||
default: { http: ['https://evm-t3.cronos.org'] }, | ||
public: { http: ['https://evm-t3.cronos.org'] }, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Cronos Explorer', | ||
url: 'https://cronos.org/explorer/testnet3', | ||
}, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0xcA11bde05977b3631167028862bE2a173976CA11', | ||
blockCreated: 10191251, | ||
}, | ||
}, | ||
testnet: true, | ||
} 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
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 emerald = { | ||
id: 42262, | ||
name: 'Oasis Emerald', | ||
network: 'emerald', | ||
nativeCurrency: { | ||
decimals: 18, | ||
name: 'Oasis ROSE', | ||
symbol: 'ROSE', | ||
}, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://emerald.oasis.dev'], | ||
webSocket: ['wss://emerald.oasis.dev/ws'], | ||
}, | ||
public: { | ||
http: ['https://emerald.oasis.dev'], | ||
webSocket: ['wss://emerald.oasis.dev/ws'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Oasis Explorer', | ||
url: 'https://explorer.emerald.oasis.dev', | ||
}, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0xcA11bde05977b3631167028862bE2a173976CA11', | ||
blockCreated: 1481392, | ||
}, | ||
}, | ||
} as const satisfies Chain |
Oops, something went wrong.