-
-
Notifications
You must be signed in to change notification settings - Fork 837
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(chains): add Artela Testnet chain (#2479)
* feat: add Artela Testnet chain * Update dry-mirrors-remain.md --------- Co-authored-by: jxom <j@wevm.dev>
- Loading branch information
Showing
4 changed files
with
32 additions
and
1 deletion.
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 Artela Testnet chain. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 { defineChain } from '../../utils/chain/defineChain.js' | ||
|
||
export const artelaTestnet = /*#__PURE__*/ defineChain({ | ||
id: 11822, | ||
name: 'Artela Testnet', | ||
nativeCurrency: { name: 'ART', symbol: 'ART', decimals: 18 }, | ||
rpcUrls: { | ||
default: { | ||
http: ['https://betanet-rpc1.artela.network'], | ||
}, | ||
}, | ||
blockExplorers: { | ||
default: { | ||
name: 'Artela', | ||
url: 'https://betanet-scan.artela.network', | ||
apiUrl: 'https://betanet-scan.artela.network/api', | ||
}, | ||
}, | ||
contracts: { | ||
multicall3: { | ||
address: '0xd07c8635f76e8745Ee7092fbb6e8fbc5FeF09DD7', | ||
blockCreated: 7001871, | ||
}, | ||
}, | ||
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