Skip to content

Commit ffe0e95

Browse files
authored
feat: add Arthera Mainnet (#3160)
1 parent 34e0d0d commit ffe0e95

File tree

3 files changed

+31
-0
lines changed

3 files changed

+31
-0
lines changed

.changeset/honest-dragons-wash.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"viem": patch
3+
---
4+
5+
Added Arthera chain.

src/chains/definitions/arthera.ts

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
import { defineChain } from '../../utils/chain/defineChain.js'
2+
3+
export const arthera = /*#__PURE__*/ defineChain({
4+
id: 10242,
5+
name: 'Arthera',
6+
nativeCurrency: { name: 'Arthera', symbol: 'AA', decimals: 18 },
7+
rpcUrls: {
8+
default: {
9+
http: ['https://rpc.arthera.net'],
10+
},
11+
},
12+
blockExplorers: {
13+
default: {
14+
name: 'Arthera EVM Explorer',
15+
url: 'https://explorer.arthera.net',
16+
apiUrl: 'https://explorer.arthera.net/api',
17+
},
18+
},
19+
contracts: {
20+
multicall3: {
21+
address: '0xca11bde05977b3631167028862be2a173976ca11',
22+
blockCreated: 4502791,
23+
},
24+
},
25+
})

src/chains/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ export { arbitrumSepolia } from './definitions/arbitrumSepolia.js'
2222
export { areonNetwork } from './definitions/areonNetwork.js'
2323
export { areonNetworkTestnet } from './definitions/areonNetworkTestnet.js'
2424
export { artelaTestnet } from './definitions/artelaTestnet.js'
25+
export { arthera } from './definitions/arthera.js'
2526
export { assetChain } from './definitions/assetChain.js'
2627
export { assetChainTestnet } from './definitions/assetChainTestnet.js'
2728
export { astar } from './definitions/astar.js'

0 commit comments

Comments
 (0)