Skip to content

Commit a68a605

Browse files
committed
feat: add moonbeam and moonriver
1 parent 4b0dfaa commit a68a605

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed

libs/blockchain/src/blockchain.config.ts

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -132,6 +132,32 @@ export const blockchainConfigList = () => ({
132132
multicall2Address: '0xc39aBB6c4451089dE48Cffb013c39d3110530e5C',
133133
nativeSymbol: 'METIS',
134134
},
135+
[ChainId.MOONBEAM]: {
136+
key: 'moonbeam',
137+
url: process.env.MOONBEAM_RPC_URL!,
138+
explorers: [
139+
new EtherScanExplorer({
140+
baseUrl: 'moonbeam.moonscan.io',
141+
apiUrl: 'https://api-moonbeam.moonscan.io/api',
142+
apiKey: process.env.MOONBEAMSCAN_KEY!,
143+
}),
144+
],
145+
multicall2Address: '0x34c471ddceb20018bbb73f6d13709936fc870acc',
146+
nativeSymbol: 'GLMR',
147+
},
148+
[ChainId.MOONRIVER]: {
149+
key: 'moonriver',
150+
url: process.env.MOONRIVER_RPC_URL!,
151+
explorers: [
152+
new EtherScanExplorer({
153+
baseUrl: 'moonriver.moonscan.io',
154+
apiUrl: 'https://api-moonriver.moonscan.io/api',
155+
apiKey: process.env.MOONRIVERSCAN_KEY!,
156+
}),
157+
],
158+
multicall2Address: '0x8C8BF5Dea280A1eC68219D66E8A21E60585830F5',
159+
nativeSymbol: 'MOVR',
160+
},
135161
[ChainId.OPTIMISM]: {
136162
key: 'optimism',
137163
url: process.env.OPTIMISM_RPC_URL!,

0 commit comments

Comments
 (0)