@cryptorubic/web3 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/package.json +17 -0
- package/src/index.d.ts +25 -0
- package/src/index.js +27 -0
- package/src/index.js.map +1 -0
- package/src/lib/adapter/adapters/abstract-adapter.d.ts +19 -0
- package/src/lib/adapter/adapters/abstract-adapter.js +50 -0
- package/src/lib/adapter/adapters/abstract-adapter.js.map +1 -0
- package/src/lib/adapter/adapters/constants/erc20-token-abi.d.ts +2 -0
- package/src/lib/adapter/adapters/constants/erc20-token-abi.js +87 -0
- package/src/lib/adapter/adapters/constants/erc20-token-abi.js.map +1 -0
- package/src/lib/adapter/adapters/constants/trc-20-contract-abi.d.ts +12 -0
- package/src/lib/adapter/adapters/constants/trc-20-contract-abi.js +85 -0
- package/src/lib/adapter/adapters/constants/trc-20-contract-abi.js.map +1 -0
- package/src/lib/adapter/adapters/constants/tron-multicall-abi.d.ts +2 -0
- package/src/lib/adapter/adapters/constants/tron-multicall-abi.js +27 -0
- package/src/lib/adapter/adapters/constants/tron-multicall-abi.js.map +1 -0
- package/src/lib/adapter/adapters/evm-adapter.d.ts +20 -0
- package/src/lib/adapter/adapters/evm-adapter.js +208 -0
- package/src/lib/adapter/adapters/evm-adapter.js.map +1 -0
- package/src/lib/adapter/adapters/models/evm-adapter-options.d.ts +6 -0
- package/src/lib/adapter/adapters/models/evm-adapter-options.js +3 -0
- package/src/lib/adapter/adapters/models/evm-adapter-options.js.map +1 -0
- package/src/lib/adapter/adapters/solana-adapter.d.ts +15 -0
- package/src/lib/adapter/adapters/solana-adapter.js +60 -0
- package/src/lib/adapter/adapters/solana-adapter.js.map +1 -0
- package/src/lib/adapter/adapters/tron-adapter.d.ts +25 -0
- package/src/lib/adapter/adapters/tron-adapter.js +190 -0
- package/src/lib/adapter/adapters/tron-adapter.js.map +1 -0
- package/src/lib/adapter/blockchain-adapter-factory.service.d.ts +19 -0
- package/src/lib/adapter/blockchain-adapter-factory.service.js +86 -0
- package/src/lib/adapter/blockchain-adapter-factory.service.js.map +1 -0
- package/src/lib/adapter/constants/chain-configs/chain-configs.d.ts +3 -0
- package/src/lib/adapter/constants/chain-configs/chain-configs.js +1040 -0
- package/src/lib/adapter/constants/chain-configs/chain-configs.js.map +1 -0
- package/src/lib/adapter/constants/models/solana-web3.d.ts +26 -0
- package/src/lib/adapter/constants/models/solana-web3.js +3 -0
- package/src/lib/adapter/constants/models/solana-web3.js.map +1 -0
- package/src/lib/adapter/constants/models/viem-chain-type.d.ts +2 -0
- package/src/lib/adapter/constants/models/viem-chain-type.js +3 -0
- package/src/lib/adapter/constants/models/viem-chain-type.js.map +1 -0
- package/src/lib/adapter/constants/models/wallet-provider.d.ts +28 -0
- package/src/lib/adapter/constants/models/wallet-provider.js +4 -0
- package/src/lib/adapter/constants/models/wallet-provider.js.map +1 -0
- package/src/lib/adapter/constants/viem-blockchain-mapping.d.ts +3 -0
- package/src/lib/adapter/constants/viem-blockchain-mapping.js +74 -0
- package/src/lib/adapter/constants/viem-blockchain-mapping.js.map +1 -0
- package/src/lib/utils/constants/changenow-api-blockchain.d.ts +123 -0
- package/src/lib/utils/constants/changenow-api-blockchain.js +109 -0
- package/src/lib/utils/constants/changenow-api-blockchain.js.map +1 -0
- package/src/lib/utils/constants/web3-pure-store.d.ts +3 -0
- package/src/lib/utils/constants/web3-pure-store.js +335 -0
- package/src/lib/utils/constants/web3-pure-store.js.map +1 -0
- package/src/lib/utils/models/abi-types.d.ts +26 -0
- package/src/lib/utils/models/abi-types.js +3 -0
- package/src/lib/utils/models/abi-types.js.map +1 -0
- package/src/lib/utils/models/cn-validation-response.d.ts +5 -0
- package/src/lib/utils/models/cn-validation-response.js +3 -0
- package/src/lib/utils/models/cn-validation-response.js.map +1 -0
- package/src/lib/utils/models/contract-multicall-response.d.ts +5 -0
- package/src/lib/utils/models/contract-multicall-response.js +3 -0
- package/src/lib/utils/models/contract-multicall-response.js.map +1 -0
- package/src/lib/utils/models/evm-transaction-config.d.ts +9 -0
- package/src/lib/utils/models/evm-transaction-config.js +3 -0
- package/src/lib/utils/models/evm-transaction-config.js.map +1 -0
- package/src/lib/utils/models/method-data.d.ts +4 -0
- package/src/lib/utils/models/method-data.js +3 -0
- package/src/lib/utils/models/method-data.js.map +1 -0
- package/src/lib/utils/models/primitive-types.d.ts +7 -0
- package/src/lib/utils/models/primitive-types.js +3 -0
- package/src/lib/utils/models/primitive-types.js.map +1 -0
- package/src/lib/utils/models/tron-block.d.ts +7 -0
- package/src/lib/utils/models/tron-block.js +3 -0
- package/src/lib/utils/models/tron-block.js.map +1 -0
- package/src/lib/utils/models/tron-call.d.ts +5 -0
- package/src/lib/utils/models/tron-call.js +3 -0
- package/src/lib/utils/models/tron-call.js.map +1 -0
- package/src/lib/utils/models/tron-multicall-response.d.ts +4 -0
- package/src/lib/utils/models/tron-multicall-response.js +3 -0
- package/src/lib/utils/models/tron-multicall-response.js.map +1 -0
- package/src/lib/utils/models/tron-parameters.d.ts +4 -0
- package/src/lib/utils/models/tron-parameters.js +3 -0
- package/src/lib/utils/models/tron-parameters.js.map +1 -0
- package/src/lib/utils/models/tron-transaction-config.d.ts +6 -0
- package/src/lib/utils/models/tron-transaction-config.js +3 -0
- package/src/lib/utils/models/tron-transaction-config.js.map +1 -0
- package/src/lib/utils/models/tron-transaction-info.d.ts +15 -0
- package/src/lib/utils/models/tron-transaction-info.js +3 -0
- package/src/lib/utils/models/tron-transaction-info.js.map +1 -0
- package/src/lib/utils/web3-pure.d.ts +16 -0
- package/src/lib/utils/web3-pure.js +46 -0
- package/src/lib/utils/web3-pure.js.map +1 -0
- package/src/lib/utils/web3-types/bitcoin-web3-pure.d.ts +5 -0
- package/src/lib/utils/web3-types/bitcoin-web3-pure.js +15 -0
- package/src/lib/utils/web3-types/bitcoin-web3-pure.js.map +1 -0
- package/src/lib/utils/web3-types/common-web3-pure.d.ts +15 -0
- package/src/lib/utils/web3-types/common-web3-pure.js +47 -0
- package/src/lib/utils/web3-types/common-web3-pure.js.map +1 -0
- package/src/lib/utils/web3-types/evm-web3-pure.d.ts +5 -0
- package/src/lib/utils/web3-types/evm-web3-pure.js +15 -0
- package/src/lib/utils/web3-types/evm-web3-pure.js.map +1 -0
- package/src/lib/utils/web3-types/icp-web3-pure.d.ts +6 -0
- package/src/lib/utils/web3-types/icp-web3-pure.js +29 -0
- package/src/lib/utils/web3-types/icp-web3-pure.js.map +1 -0
- package/src/lib/utils/web3-types/solana-web3-pure.d.ts +5 -0
- package/src/lib/utils/web3-types/solana-web3-pure.js +16 -0
- package/src/lib/utils/web3-types/solana-web3-pure.js.map +1 -0
- package/src/lib/utils/web3-types/ton-web3-pure.d.ts +4 -0
- package/src/lib/utils/web3-types/ton-web3-pure.js +13 -0
- package/src/lib/utils/web3-types/ton-web3-pure.js.map +1 -0
- package/src/lib/utils/web3-types/tron-web3-pure.d.ts +38 -0
- package/src/lib/utils/web3-types/tron-web3-pure.js +117 -0
- package/src/lib/utils/web3-types/tron-web3-pure.js.map +1 -0
|
@@ -0,0 +1,1040 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.viemConfig = void 0;
|
|
4
|
+
const viem_1 = require("viem");
|
|
5
|
+
exports.viemConfig = {
|
|
6
|
+
ARTHERA: (0, viem_1.defineChain)({
|
|
7
|
+
blockExplorers: {
|
|
8
|
+
default: {
|
|
9
|
+
apiUrl: 'https://explorer-test.arthera.net',
|
|
10
|
+
name: 'Arthera Explorer',
|
|
11
|
+
url: 'https://explorer-test.arthera.net'
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
id: 10242,
|
|
15
|
+
name: 'Arthera',
|
|
16
|
+
nativeCurrency: { decimals: 18, name: 'Arthera', symbol: 'AA' },
|
|
17
|
+
rpcUrls: {
|
|
18
|
+
default: {
|
|
19
|
+
http: ['https://rpc.arthera.net']
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
testnet: true,
|
|
23
|
+
contracts: {
|
|
24
|
+
multicall3: {
|
|
25
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
}),
|
|
29
|
+
AVALANCHE: (0, viem_1.defineChain)({
|
|
30
|
+
blockExplorers: { default: { apiUrl: 'https://snowtrace.io/', name: 'AVALANCHE Explorer', url: 'https://snowtrace.io/' } },
|
|
31
|
+
id: 43114,
|
|
32
|
+
name: 'Avalanche Mainnet',
|
|
33
|
+
nativeCurrency: { decimals: 18, name: 'AVAX', symbol: 'AVAX' },
|
|
34
|
+
rpcUrls: { default: { http: ['https://api.avax.network/ext/bc/C/rpc'] } },
|
|
35
|
+
testnet: false,
|
|
36
|
+
contracts: {
|
|
37
|
+
multicall3: {
|
|
38
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}),
|
|
42
|
+
BERACHAIN: (0, viem_1.defineChain)({
|
|
43
|
+
blockExplorers: {
|
|
44
|
+
default: { apiUrl: 'https://artio.beratrail.io/', name: 'BERACHAIN Explorer', url: 'https://artio.beratrail.io/' }
|
|
45
|
+
},
|
|
46
|
+
id: 80084,
|
|
47
|
+
name: 'Berachain Testnet',
|
|
48
|
+
nativeCurrency: { decimals: 18, name: 'BERA', symbol: 'BERA' },
|
|
49
|
+
rpcUrls: { default: { http: ['https://bartio.rpc.b-harvest.io'] } },
|
|
50
|
+
testnet: true,
|
|
51
|
+
contracts: {
|
|
52
|
+
multicall3: {
|
|
53
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
}),
|
|
57
|
+
BLAST_TESTNET: (0, viem_1.defineChain)({
|
|
58
|
+
blockExplorers: {
|
|
59
|
+
default: { apiUrl: 'https://testnet.blastscan.io/', name: 'BLAST_TESTNET Explorer', url: 'https://testnet.blastscan.io/' }
|
|
60
|
+
},
|
|
61
|
+
id: 168587773,
|
|
62
|
+
name: 'Blast Testnet',
|
|
63
|
+
nativeCurrency: { decimals: 18, name: 'Ether', symbol: 'ETH' },
|
|
64
|
+
rpcUrls: { default: { http: ['https://sepolia.blast.io'] } },
|
|
65
|
+
testnet: true,
|
|
66
|
+
contracts: {
|
|
67
|
+
multicall3: {
|
|
68
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}),
|
|
72
|
+
BSCT: (0, viem_1.defineChain)({
|
|
73
|
+
blockExplorers: {
|
|
74
|
+
default: { apiUrl: 'https://testnet.bscscan.com/', name: 'BSCT Explorer', url: 'https://testnet.bscscan.com/' }
|
|
75
|
+
},
|
|
76
|
+
id: 87,
|
|
77
|
+
name: 'BSC Testnet',
|
|
78
|
+
nativeCurrency: { decimals: 18, name: 'Test Binance Coin', symbol: 'tBNB' },
|
|
79
|
+
rpcUrls: { default: { http: ['https://rpctestnet.binarychain.org '] } },
|
|
80
|
+
testnet: true,
|
|
81
|
+
contracts: {
|
|
82
|
+
multicall3: {
|
|
83
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
}),
|
|
87
|
+
BSC: (0, viem_1.defineChain)({
|
|
88
|
+
blockExplorers: { default: { apiUrl: 'https://bscscan.com/', name: 'BSC Explorer', url: 'https://bscscan.com/' } },
|
|
89
|
+
id: 56,
|
|
90
|
+
name: 'Binance Smart Chain Mainnet',
|
|
91
|
+
nativeCurrency: { decimals: 18, name: 'Binance Coin', symbol: 'BNB' },
|
|
92
|
+
rpcUrls: { default: { http: ['https://bsc-dataseed1.binance.org'] } },
|
|
93
|
+
testnet: false,
|
|
94
|
+
contracts: {
|
|
95
|
+
multicall3: {
|
|
96
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
97
|
+
}
|
|
98
|
+
}
|
|
99
|
+
}),
|
|
100
|
+
AURORA: (0, viem_1.defineChain)({
|
|
101
|
+
blockExplorers: {
|
|
102
|
+
default: {
|
|
103
|
+
apiUrl: 'https://explorer.mainnet.aurora.dev/',
|
|
104
|
+
name: 'AURORA Explorer',
|
|
105
|
+
url: 'https://explorer.mainnet.aurora.dev/'
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
id: 1313161554,
|
|
109
|
+
name: 'Aurora MainNet',
|
|
110
|
+
nativeCurrency: { decimals: 18, name: 'aETH', symbol: 'aETH' },
|
|
111
|
+
rpcUrls: { default: { http: ['https://mainnet.aurora.dev'] } },
|
|
112
|
+
testnet: false,
|
|
113
|
+
contracts: {
|
|
114
|
+
multicall3: {
|
|
115
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
116
|
+
}
|
|
117
|
+
}
|
|
118
|
+
}),
|
|
119
|
+
ETH: (0, viem_1.defineChain)({
|
|
120
|
+
blockExplorers: { default: { apiUrl: 'https://etherscan.io/', name: 'ETH Explorer', url: 'https://etherscan.io/' } },
|
|
121
|
+
id: 1,
|
|
122
|
+
name: 'Ethereum Mainnet',
|
|
123
|
+
nativeCurrency: { decimals: 18, name: 'Ethereum', symbol: 'ETH' },
|
|
124
|
+
rpcUrls: { default: { http: ['https://rpc.ankr.com/eth'] } },
|
|
125
|
+
testnet: false,
|
|
126
|
+
contracts: {
|
|
127
|
+
multicall3: {
|
|
128
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}),
|
|
132
|
+
FANTOM: (0, viem_1.defineChain)({
|
|
133
|
+
blockExplorers: { default: { apiUrl: 'https://ftmscan.com/', name: 'FANTOM Explorer', url: 'https://ftmscan.com/' } },
|
|
134
|
+
id: 250,
|
|
135
|
+
name: 'Fantom Opera',
|
|
136
|
+
nativeCurrency: { decimals: 18, name: 'FTM', symbol: 'FTM' },
|
|
137
|
+
rpcUrls: { default: { http: ['https://rpc.ankr.com/fantom'] } },
|
|
138
|
+
testnet: false,
|
|
139
|
+
contracts: {
|
|
140
|
+
multicall3: {
|
|
141
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
142
|
+
}
|
|
143
|
+
}
|
|
144
|
+
}),
|
|
145
|
+
ARBITRUM: (0, viem_1.defineChain)({
|
|
146
|
+
blockExplorers: { default: { apiUrl: 'https://arbiscan.io/', name: 'ARBITRUM Explorer', url: 'https://arbiscan.io/' } },
|
|
147
|
+
id: 42161,
|
|
148
|
+
name: 'Arbitrum One',
|
|
149
|
+
nativeCurrency: { decimals: 18, name: 'AETH', symbol: 'AETH' },
|
|
150
|
+
rpcUrls: { default: { http: ['https://arb1.arbitrum.io/rpc'] } },
|
|
151
|
+
testnet: false,
|
|
152
|
+
contracts: {
|
|
153
|
+
multicall3: {
|
|
154
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
155
|
+
}
|
|
156
|
+
}
|
|
157
|
+
}),
|
|
158
|
+
FUJI: (0, viem_1.defineChain)({
|
|
159
|
+
blockExplorers: {
|
|
160
|
+
default: { apiUrl: 'https://testnet.snowtrace.io/', name: 'FUJI Explorer', url: 'https://testnet.snowtrace.io/' }
|
|
161
|
+
},
|
|
162
|
+
id: 43113,
|
|
163
|
+
name: 'Fuji Testnet',
|
|
164
|
+
nativeCurrency: { decimals: 18, name: 'AVAX', symbol: 'AVAX' },
|
|
165
|
+
rpcUrls: { default: { http: ['https://endpoints.omniatech.io/v1/avax/fuji/public'] } },
|
|
166
|
+
testnet: true,
|
|
167
|
+
contracts: {
|
|
168
|
+
multicall3: {
|
|
169
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
}),
|
|
173
|
+
GOERLI: (0, viem_1.defineChain)({
|
|
174
|
+
blockExplorers: {
|
|
175
|
+
default: { apiUrl: 'https://goerli.etherscan.io//', name: 'GOERLI Explorer', url: 'https://goerli.etherscan.io//' }
|
|
176
|
+
},
|
|
177
|
+
id: 5,
|
|
178
|
+
name: 'Goerli Testnet',
|
|
179
|
+
nativeCurrency: { decimals: 18, name: 'Ethereum', symbol: 'ETH' },
|
|
180
|
+
rpcUrls: { default: { http: ['https://eth-goerli.public.blastapi.io'] } },
|
|
181
|
+
testnet: true,
|
|
182
|
+
contracts: {
|
|
183
|
+
multicall3: {
|
|
184
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
185
|
+
}
|
|
186
|
+
}
|
|
187
|
+
}),
|
|
188
|
+
CRONOS: (0, viem_1.defineChain)({
|
|
189
|
+
blockExplorers: { default: { apiUrl: 'https://cronoscan.com/', name: 'CRONOS Explorer', url: 'https://cronoscan.com/' } },
|
|
190
|
+
id: 25,
|
|
191
|
+
name: 'Cronos Mainnet Beta',
|
|
192
|
+
nativeCurrency: { decimals: 18, name: 'CRO', symbol: 'CRO' },
|
|
193
|
+
rpcUrls: { default: { http: ['https://evm.cronos.org'] } },
|
|
194
|
+
testnet: false,
|
|
195
|
+
contracts: {
|
|
196
|
+
multicall3: {
|
|
197
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
}),
|
|
201
|
+
MUMBAI: (0, viem_1.defineChain)({
|
|
202
|
+
blockExplorers: {
|
|
203
|
+
default: { apiUrl: 'https://mumbai.polygonscan.com/', name: 'MUMBAI Explorer', url: 'https://mumbai.polygonscan.com/' }
|
|
204
|
+
},
|
|
205
|
+
id: 80001,
|
|
206
|
+
name: 'Mumbai Testnet',
|
|
207
|
+
nativeCurrency: { decimals: 18, name: 'Matic Network', symbol: 'MATIC' },
|
|
208
|
+
rpcUrls: { default: { http: ['https://polygon-testnet.public.blastapi.io'] } },
|
|
209
|
+
testnet: true,
|
|
210
|
+
contracts: {
|
|
211
|
+
multicall3: {
|
|
212
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
213
|
+
}
|
|
214
|
+
}
|
|
215
|
+
}),
|
|
216
|
+
GNOSIS: (0, viem_1.defineChain)({
|
|
217
|
+
blockExplorers: {
|
|
218
|
+
default: {
|
|
219
|
+
apiUrl: 'https://blockscout.com/xdai/mainnet/',
|
|
220
|
+
name: 'GNOSIS Explorer',
|
|
221
|
+
url: 'https://blockscout.com/xdai/mainnet/'
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
id: 100,
|
|
225
|
+
name: 'Gnosis Chain',
|
|
226
|
+
nativeCurrency: { decimals: 18, name: 'xDAI', symbol: 'xDAI' },
|
|
227
|
+
rpcUrls: { default: { http: ['https://rpc.gnosischain.com'] } },
|
|
228
|
+
testnet: false,
|
|
229
|
+
contracts: {
|
|
230
|
+
multicall3: {
|
|
231
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}),
|
|
235
|
+
HARMONY: (0, viem_1.defineChain)({
|
|
236
|
+
blockExplorers: {
|
|
237
|
+
default: { apiUrl: 'https://explorer.harmony.one/', name: 'HARMONY Explorer', url: 'https://explorer.harmony.one/' }
|
|
238
|
+
},
|
|
239
|
+
id: 1666600000,
|
|
240
|
+
name: 'Harmony Mainnet Shard 0',
|
|
241
|
+
nativeCurrency: { decimals: 18, name: 'ONE', symbol: 'ONE' },
|
|
242
|
+
rpcUrls: { default: { http: ['https://api.harmony.one'] } },
|
|
243
|
+
testnet: false,
|
|
244
|
+
contracts: {
|
|
245
|
+
multicall3: {
|
|
246
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
247
|
+
}
|
|
248
|
+
}
|
|
249
|
+
}),
|
|
250
|
+
FUSE: (0, viem_1.defineChain)({
|
|
251
|
+
blockExplorers: { default: { apiUrl: 'https://explorer.fuse.io/', name: 'FUSE Explorer', url: 'https://explorer.fuse.io/' } },
|
|
252
|
+
id: 122,
|
|
253
|
+
name: 'Fuse Mainnet',
|
|
254
|
+
nativeCurrency: { decimals: 18, name: 'FUSE', symbol: 'FUSE' },
|
|
255
|
+
rpcUrls: { default: { http: ['https://rpc.fuse.io'] } },
|
|
256
|
+
testnet: false,
|
|
257
|
+
contracts: {
|
|
258
|
+
multicall3: {
|
|
259
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
260
|
+
}
|
|
261
|
+
}
|
|
262
|
+
}),
|
|
263
|
+
SCROLL_SEPOLIA: (0, viem_1.defineChain)({
|
|
264
|
+
blockExplorers: {
|
|
265
|
+
default: {
|
|
266
|
+
apiUrl: 'https://sepolia-blockscout.scroll.io/',
|
|
267
|
+
name: 'SCROLL_SEPOLIA Explorer',
|
|
268
|
+
url: 'https://sepolia-blockscout.scroll.io/'
|
|
269
|
+
}
|
|
270
|
+
},
|
|
271
|
+
id: 534351,
|
|
272
|
+
name: 'ScrollSepolia Testnet',
|
|
273
|
+
nativeCurrency: { decimals: 18, name: 'ETH', symbol: 'ETH' },
|
|
274
|
+
rpcUrls: { default: { http: ['https://sepolia-rpc.scroll.io'] } },
|
|
275
|
+
testnet: true,
|
|
276
|
+
contracts: {
|
|
277
|
+
multicall3: {
|
|
278
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
279
|
+
}
|
|
280
|
+
}
|
|
281
|
+
}),
|
|
282
|
+
CELO: (0, viem_1.defineChain)({
|
|
283
|
+
blockExplorers: { default: { apiUrl: 'https://explorer.celo.org/', name: 'CELO Explorer', url: 'https://explorer.celo.org/' } },
|
|
284
|
+
id: 42220,
|
|
285
|
+
name: 'Celo Mainnet',
|
|
286
|
+
nativeCurrency: { decimals: 18, name: 'CELO', symbol: 'CELO' },
|
|
287
|
+
rpcUrls: { default: { http: ['https://forno.celo.org'] } },
|
|
288
|
+
testnet: false,
|
|
289
|
+
contracts: {
|
|
290
|
+
multicall3: {
|
|
291
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
}),
|
|
295
|
+
SEPOLIA: (0, viem_1.defineChain)({
|
|
296
|
+
blockExplorers: {
|
|
297
|
+
default: { apiUrl: 'https://sepolia.etherscan.io/', name: 'SEPOLIA Explorer', url: 'https://sepolia.etherscan.io/' }
|
|
298
|
+
},
|
|
299
|
+
id: 11155111,
|
|
300
|
+
name: 'Sepolia Testnet',
|
|
301
|
+
nativeCurrency: { decimals: 18, name: 'Ether', symbol: 'ETH' },
|
|
302
|
+
rpcUrls: { default: { http: ['wss://ethereum-sepolia-rpc.publicnode.com'] } },
|
|
303
|
+
testnet: true,
|
|
304
|
+
contracts: {
|
|
305
|
+
multicall3: {
|
|
306
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
307
|
+
}
|
|
308
|
+
}
|
|
309
|
+
}),
|
|
310
|
+
BOBA: (0, viem_1.defineChain)({
|
|
311
|
+
blockExplorers: { default: { apiUrl: 'https://bobascan.com/', name: 'BOBA Explorer', url: 'https://bobascan.com/' } },
|
|
312
|
+
id: 288,
|
|
313
|
+
name: 'Boba',
|
|
314
|
+
nativeCurrency: { decimals: 18, name: 'BOBA', symbol: 'BOBA' },
|
|
315
|
+
rpcUrls: { default: { http: ['https://mainnet.boba.network'] } },
|
|
316
|
+
testnet: false,
|
|
317
|
+
contracts: {
|
|
318
|
+
multicall3: {
|
|
319
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
320
|
+
}
|
|
321
|
+
}
|
|
322
|
+
}),
|
|
323
|
+
ASTAR_EVM: (0, viem_1.defineChain)({
|
|
324
|
+
blockExplorers: {
|
|
325
|
+
default: { apiUrl: 'https://blockscout.com/astar/', name: 'ASTAR_EVM Explorer', url: 'https://blockscout.com/astar/' }
|
|
326
|
+
},
|
|
327
|
+
id: 592,
|
|
328
|
+
name: 'Astar EVM',
|
|
329
|
+
nativeCurrency: { decimals: 18, name: 'ASTR', symbol: 'ASTR' },
|
|
330
|
+
rpcUrls: { default: { http: ['https://evm.astar.network/'] } },
|
|
331
|
+
testnet: false,
|
|
332
|
+
contracts: {
|
|
333
|
+
multicall3: {
|
|
334
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
}),
|
|
338
|
+
HOLESKY: (0, viem_1.defineChain)({
|
|
339
|
+
blockExplorers: {
|
|
340
|
+
default: { apiUrl: 'https://holesky.etherscan.io/', name: 'HOLESKY Explorer', url: 'https://holesky.etherscan.io/' }
|
|
341
|
+
},
|
|
342
|
+
id: 17000,
|
|
343
|
+
name: 'Holesky Testnet',
|
|
344
|
+
nativeCurrency: { decimals: 18, name: 'Ether', symbol: 'ETH' },
|
|
345
|
+
rpcUrls: { default: { http: ['https://ethereum-holesky-rpc.publicnode.com'] } },
|
|
346
|
+
testnet: true,
|
|
347
|
+
contracts: {
|
|
348
|
+
multicall3: {
|
|
349
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
350
|
+
}
|
|
351
|
+
}
|
|
352
|
+
}),
|
|
353
|
+
BITGERT: (0, viem_1.defineChain)({
|
|
354
|
+
blockExplorers: { default: { apiUrl: 'https://brisescan.com/', name: 'BITGERT Explorer', url: 'https://brisescan.com/' } },
|
|
355
|
+
id: 32520,
|
|
356
|
+
name: 'Bitgert',
|
|
357
|
+
nativeCurrency: { decimals: 18, name: 'Brise', symbol: 'BRISE' },
|
|
358
|
+
rpcUrls: { default: { http: ['https://serverrpc.com'] } },
|
|
359
|
+
testnet: false,
|
|
360
|
+
contracts: {
|
|
361
|
+
multicall3: {
|
|
362
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
363
|
+
}
|
|
364
|
+
}
|
|
365
|
+
}),
|
|
366
|
+
POLYGON: (0, viem_1.defineChain)({
|
|
367
|
+
blockExplorers: { default: { apiUrl: 'https://polygonscan.com/', name: 'POLYGON Explorer', url: 'https://polygonscan.com/' } },
|
|
368
|
+
id: 137,
|
|
369
|
+
name: 'Polygon Mainnet',
|
|
370
|
+
nativeCurrency: { decimals: 18, name: 'Matic Network', symbol: 'MATIC' },
|
|
371
|
+
rpcUrls: { default: { http: ['https://rpc-mainnet.maticvigil.com'] } },
|
|
372
|
+
testnet: false,
|
|
373
|
+
contracts: {
|
|
374
|
+
multicall3: {
|
|
375
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
}),
|
|
379
|
+
BOBA_BSC: (0, viem_1.defineChain)({
|
|
380
|
+
blockExplorers: {
|
|
381
|
+
default: {
|
|
382
|
+
apiUrl: 'https://blockexplorer.bnb.boba.network/',
|
|
383
|
+
name: 'BOBA_BSC Explorer',
|
|
384
|
+
url: 'https://blockexplorer.bnb.boba.network/'
|
|
385
|
+
}
|
|
386
|
+
},
|
|
387
|
+
id: 56288,
|
|
388
|
+
name: 'Boba BSC',
|
|
389
|
+
nativeCurrency: { decimals: 18, name: 'BOBA', symbol: 'BOBA' },
|
|
390
|
+
rpcUrls: { default: { http: ['https://bnb.boba.network'] } },
|
|
391
|
+
testnet: false,
|
|
392
|
+
contracts: {
|
|
393
|
+
multicall3: {
|
|
394
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
395
|
+
}
|
|
396
|
+
}
|
|
397
|
+
}),
|
|
398
|
+
POLYGON_ZKEVM: (0, viem_1.defineChain)({
|
|
399
|
+
blockExplorers: {
|
|
400
|
+
default: { apiUrl: 'https://zkevm.polygonscan.com/', name: 'POLYGON_ZKEVM Explorer', url: 'https://zkevm.polygonscan.com/' }
|
|
401
|
+
},
|
|
402
|
+
id: 1101,
|
|
403
|
+
name: 'Polygon zkEVM',
|
|
404
|
+
nativeCurrency: { decimals: 18, name: 'ETH', symbol: 'ETH' },
|
|
405
|
+
rpcUrls: { default: { http: ['https://zkevm-rpc.com'] } },
|
|
406
|
+
testnet: false,
|
|
407
|
+
contracts: {
|
|
408
|
+
multicall3: {
|
|
409
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
}),
|
|
413
|
+
ETHEREUM_CLASSIC: (0, viem_1.defineChain)({
|
|
414
|
+
blockExplorers: {
|
|
415
|
+
default: {
|
|
416
|
+
apiUrl: 'https://blockscout.com/etc/mainnet/',
|
|
417
|
+
name: 'ETHEREUM_CLASSIC Explorer',
|
|
418
|
+
url: 'https://blockscout.com/etc/mainnet/'
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
id: 61,
|
|
422
|
+
name: 'Ethereum Classic',
|
|
423
|
+
nativeCurrency: { decimals: 18, name: 'Ether', symbol: 'ETH' },
|
|
424
|
+
rpcUrls: { default: { http: ['https://besu-at.etc-network.info'] } },
|
|
425
|
+
testnet: false,
|
|
426
|
+
contracts: {
|
|
427
|
+
multicall3: {
|
|
428
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
}),
|
|
432
|
+
MOONRIVER: (0, viem_1.defineChain)({
|
|
433
|
+
blockExplorers: {
|
|
434
|
+
default: { apiUrl: 'https://moonriver.moonscan.io/', name: 'MOONRIVER Explorer', url: 'https://moonriver.moonscan.io/' }
|
|
435
|
+
},
|
|
436
|
+
id: 1285,
|
|
437
|
+
name: 'Moonriver',
|
|
438
|
+
nativeCurrency: { decimals: 18, name: 'MOVR', symbol: 'MOVR' },
|
|
439
|
+
rpcUrls: { default: { http: ['https://rpc.moonriver.moonbeam.network'] } },
|
|
440
|
+
testnet: false,
|
|
441
|
+
contracts: {
|
|
442
|
+
multicall3: {
|
|
443
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
444
|
+
}
|
|
445
|
+
}
|
|
446
|
+
}),
|
|
447
|
+
DEFIKINGDOMS: (0, viem_1.defineChain)({
|
|
448
|
+
blockExplorers: {
|
|
449
|
+
default: {
|
|
450
|
+
apiUrl: 'https://subnets.avax.network/defi-kingdoms/dfk-chain/explorer/',
|
|
451
|
+
name: 'DEFIKINGDOMS Explorer',
|
|
452
|
+
url: 'https://subnets.avax.network/defi-kingdoms/dfk-chain/explorer/'
|
|
453
|
+
}
|
|
454
|
+
},
|
|
455
|
+
id: 53935,
|
|
456
|
+
name: 'DeFi Kingdoms',
|
|
457
|
+
nativeCurrency: { decimals: 18, name: 'JEWEL', symbol: 'JEWEL' },
|
|
458
|
+
rpcUrls: { default: { http: ['https://subnets.avax.network/defi-kingdoms/dfk-chain/rpc'] } },
|
|
459
|
+
testnet: false,
|
|
460
|
+
contracts: {
|
|
461
|
+
multicall3: {
|
|
462
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
463
|
+
}
|
|
464
|
+
}
|
|
465
|
+
}),
|
|
466
|
+
FLARE: (0, viem_1.defineChain)({
|
|
467
|
+
blockExplorers: {
|
|
468
|
+
default: {
|
|
469
|
+
apiUrl: 'https://flare-explorer.flare.network/',
|
|
470
|
+
name: 'FLARE Explorer',
|
|
471
|
+
url: 'https://flare-explorer.flare.network/'
|
|
472
|
+
}
|
|
473
|
+
},
|
|
474
|
+
id: 14,
|
|
475
|
+
name: 'Flare',
|
|
476
|
+
nativeCurrency: { decimals: 18, name: 'FLR', symbol: 'FLR' },
|
|
477
|
+
rpcUrls: { default: { http: ['https://flare-api.flare.network/ext/C/rpc'] } },
|
|
478
|
+
testnet: false,
|
|
479
|
+
contracts: {
|
|
480
|
+
multicall3: {
|
|
481
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
482
|
+
}
|
|
483
|
+
}
|
|
484
|
+
}),
|
|
485
|
+
ETHW: (0, viem_1.defineChain)({
|
|
486
|
+
blockExplorers: {
|
|
487
|
+
default: { apiUrl: 'https://www.oklink.com/en/ethw/', name: 'ETHW Explorer', url: 'https://www.oklink.com/en/ethw/' }
|
|
488
|
+
},
|
|
489
|
+
id: 10001,
|
|
490
|
+
name: 'Ethereum POW',
|
|
491
|
+
nativeCurrency: { decimals: 18, name: 'Ethereum PoW', symbol: 'ETHW' },
|
|
492
|
+
rpcUrls: { default: { http: ['https://mainnet.ethereumpow.org'] } },
|
|
493
|
+
testnet: false,
|
|
494
|
+
contracts: {
|
|
495
|
+
multicall3: {
|
|
496
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
497
|
+
}
|
|
498
|
+
}
|
|
499
|
+
}),
|
|
500
|
+
OPTIMISM: (0, viem_1.defineChain)({
|
|
501
|
+
blockExplorers: {
|
|
502
|
+
default: { apiUrl: 'https://optimism.blockscout.com/', name: 'OPTIMISM Explorer', url: 'https://optimism.blockscout.com/' }
|
|
503
|
+
},
|
|
504
|
+
id: 10,
|
|
505
|
+
name: 'Optimism',
|
|
506
|
+
nativeCurrency: { decimals: 18, name: 'ETH', symbol: 'ETH' },
|
|
507
|
+
rpcUrls: { default: { http: ['https://rpc.ankr.com/optimism'] } },
|
|
508
|
+
testnet: false,
|
|
509
|
+
contracts: {
|
|
510
|
+
multicall3: {
|
|
511
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
512
|
+
}
|
|
513
|
+
}
|
|
514
|
+
}),
|
|
515
|
+
BITCOIN_CASH: (0, viem_1.defineChain)({
|
|
516
|
+
blockExplorers: {
|
|
517
|
+
default: {
|
|
518
|
+
apiUrl: 'https://blockchair.com/bitcoin-cash/',
|
|
519
|
+
name: 'BITCOIN_CASH Explorer',
|
|
520
|
+
url: 'https://blockchair.com/bitcoin-cash/'
|
|
521
|
+
}
|
|
522
|
+
},
|
|
523
|
+
id: 10000,
|
|
524
|
+
name: 'Bitcoin Cash',
|
|
525
|
+
nativeCurrency: { decimals: 18, name: 'BCH', symbol: 'BCH' },
|
|
526
|
+
rpcUrls: { default: { http: ['https://smartbch.greyh.at'] } },
|
|
527
|
+
testnet: false,
|
|
528
|
+
contracts: {
|
|
529
|
+
multicall3: {
|
|
530
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
531
|
+
}
|
|
532
|
+
}
|
|
533
|
+
}),
|
|
534
|
+
TELOS: (0, viem_1.defineChain)({
|
|
535
|
+
blockExplorers: { default: { apiUrl: 'https://www.teloscan.io/', name: 'TELOS Explorer', url: 'https://www.teloscan.io/' } },
|
|
536
|
+
id: 40,
|
|
537
|
+
name: 'Telos EVM Mainnet',
|
|
538
|
+
nativeCurrency: { decimals: 18, name: 'TLOS', symbol: 'TLOS' },
|
|
539
|
+
rpcUrls: { default: { http: ['https://mainnet.telos.net/evm'] } },
|
|
540
|
+
testnet: false,
|
|
541
|
+
contracts: {
|
|
542
|
+
multicall3: {
|
|
543
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
544
|
+
}
|
|
545
|
+
}
|
|
546
|
+
}),
|
|
547
|
+
IOTEX: (0, viem_1.defineChain)({
|
|
548
|
+
blockExplorers: { default: { apiUrl: 'https://iotexscan.io/', name: 'IOTEX Explorer', url: 'https://iotexscan.io/' } },
|
|
549
|
+
id: 4689,
|
|
550
|
+
name: 'Iotex',
|
|
551
|
+
nativeCurrency: { decimals: 18, name: 'IoTex', symbol: 'IOTX' },
|
|
552
|
+
rpcUrls: { default: { http: ['https://rpc.ankr.com/iotex'] } },
|
|
553
|
+
testnet: false,
|
|
554
|
+
contracts: {
|
|
555
|
+
multicall3: {
|
|
556
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
557
|
+
}
|
|
558
|
+
}
|
|
559
|
+
}),
|
|
560
|
+
OKX: (0, viem_1.defineChain)({
|
|
561
|
+
blockExplorers: {
|
|
562
|
+
default: { apiUrl: 'https://www.oklink.com/en/okc/', name: 'OKX Explorer', url: 'https://www.oklink.com/en/okc/' }
|
|
563
|
+
},
|
|
564
|
+
id: 66,
|
|
565
|
+
name: 'OKXChain Mainnet',
|
|
566
|
+
nativeCurrency: { decimals: 18, name: 'OKT', symbol: 'OKT' },
|
|
567
|
+
rpcUrls: { default: { http: ['https://exchainrpc.okex.org'] } },
|
|
568
|
+
testnet: false,
|
|
569
|
+
contracts: {
|
|
570
|
+
multicall3: {
|
|
571
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
572
|
+
}
|
|
573
|
+
}
|
|
574
|
+
}),
|
|
575
|
+
BASE: (0, viem_1.defineChain)({
|
|
576
|
+
blockExplorers: {
|
|
577
|
+
default: { apiUrl: 'https://base.blockscout.com/', name: 'BASE Explorer', url: 'https://base.blockscout.com/' }
|
|
578
|
+
},
|
|
579
|
+
id: 8453,
|
|
580
|
+
name: 'Base',
|
|
581
|
+
nativeCurrency: { decimals: 18, name: 'ETH', symbol: 'ETH' },
|
|
582
|
+
rpcUrls: { default: { http: ['https://mainnet.base.org'] } },
|
|
583
|
+
testnet: false,
|
|
584
|
+
contracts: {
|
|
585
|
+
multicall3: {
|
|
586
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
587
|
+
}
|
|
588
|
+
}
|
|
589
|
+
}),
|
|
590
|
+
KAVA: (0, viem_1.defineChain)({
|
|
591
|
+
blockExplorers: { default: { apiUrl: 'https://explorer.kava.io/', name: 'KAVA Explorer', url: 'https://explorer.kava.io/' } },
|
|
592
|
+
id: 2222,
|
|
593
|
+
name: 'Kava EVM',
|
|
594
|
+
nativeCurrency: { decimals: 18, name: 'KAVA', symbol: 'KAVA' },
|
|
595
|
+
rpcUrls: { default: { http: ['https://evm.kava.io'] } },
|
|
596
|
+
testnet: false,
|
|
597
|
+
contracts: {
|
|
598
|
+
multicall3: {
|
|
599
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
600
|
+
}
|
|
601
|
+
}
|
|
602
|
+
}),
|
|
603
|
+
MOONBEAM: (0, viem_1.defineChain)({
|
|
604
|
+
blockExplorers: { default: { apiUrl: 'https://moonscan.io/', name: 'MOONBEAM Explorer', url: 'https://moonscan.io/' } },
|
|
605
|
+
id: 1284,
|
|
606
|
+
name: 'Moonbeam',
|
|
607
|
+
nativeCurrency: { decimals: 18, name: 'GLMR', symbol: 'GLMR' },
|
|
608
|
+
rpcUrls: { default: { http: ['https://rpc.api.moonbeam.network'] } },
|
|
609
|
+
testnet: false,
|
|
610
|
+
contracts: {
|
|
611
|
+
multicall3: {
|
|
612
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
613
|
+
}
|
|
614
|
+
}
|
|
615
|
+
}),
|
|
616
|
+
KLAYTN: (0, viem_1.defineChain)({
|
|
617
|
+
blockExplorers: { default: { apiUrl: 'https://scope.klaytn.com/', name: 'KLAYTN Explorer', url: 'https://scope.klaytn.com/' } },
|
|
618
|
+
id: 8217,
|
|
619
|
+
name: 'Klaytn',
|
|
620
|
+
nativeCurrency: { decimals: 18, name: 'Klaytn', symbol: 'KLAY' },
|
|
621
|
+
rpcUrls: { default: { http: ['https://public-en-cypress.klaytn.net/'] } },
|
|
622
|
+
testnet: false,
|
|
623
|
+
contracts: {
|
|
624
|
+
multicall3: {
|
|
625
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
626
|
+
}
|
|
627
|
+
}
|
|
628
|
+
}),
|
|
629
|
+
LINEA: (0, viem_1.defineChain)({
|
|
630
|
+
blockExplorers: { default: { apiUrl: 'https://lineascan.build/', name: 'LINEA Explorer', url: 'https://lineascan.build/' } },
|
|
631
|
+
id: 59144,
|
|
632
|
+
name: 'Linea',
|
|
633
|
+
nativeCurrency: { decimals: 18, name: 'ETH', symbol: 'ETH' },
|
|
634
|
+
rpcUrls: { default: { http: ['https://linea-mainnet.infura.io/v3'] } },
|
|
635
|
+
testnet: false,
|
|
636
|
+
contracts: {
|
|
637
|
+
multicall3: {
|
|
638
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
639
|
+
}
|
|
640
|
+
}
|
|
641
|
+
}),
|
|
642
|
+
BLAST: (0, viem_1.defineChain)({
|
|
643
|
+
blockExplorers: { default: { apiUrl: 'https://blastscan.io/', name: 'BLAST Explorer', url: 'https://blastscan.io/' } },
|
|
644
|
+
id: 81457,
|
|
645
|
+
name: 'Blast',
|
|
646
|
+
nativeCurrency: { decimals: 18, name: 'Ether', symbol: 'ETH' },
|
|
647
|
+
rpcUrls: { default: { http: ['https://rpc.ankr.com/blast'] } },
|
|
648
|
+
testnet: false,
|
|
649
|
+
contracts: {
|
|
650
|
+
multicall3: {
|
|
651
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
652
|
+
}
|
|
653
|
+
}
|
|
654
|
+
}),
|
|
655
|
+
MANTA_PACIFIC: (0, viem_1.defineChain)({
|
|
656
|
+
blockExplorers: {
|
|
657
|
+
default: {
|
|
658
|
+
apiUrl: 'https://pacific-explorer.manta.network/',
|
|
659
|
+
name: 'MANTA_PACIFIC Explorer',
|
|
660
|
+
url: 'https://pacific-explorer.manta.network/'
|
|
661
|
+
}
|
|
662
|
+
},
|
|
663
|
+
id: 169,
|
|
664
|
+
name: 'Manta Pacific',
|
|
665
|
+
nativeCurrency: { decimals: 18, name: 'ETH', symbol: 'ETH' },
|
|
666
|
+
rpcUrls: { default: { http: ['https://pacific-rpc.manta.network/http'] } },
|
|
667
|
+
testnet: false,
|
|
668
|
+
contracts: {
|
|
669
|
+
multicall3: {
|
|
670
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
671
|
+
}
|
|
672
|
+
}
|
|
673
|
+
}),
|
|
674
|
+
HORIZEN_EON: (0, viem_1.defineChain)({
|
|
675
|
+
blockExplorers: {
|
|
676
|
+
default: {
|
|
677
|
+
apiUrl: 'https://eon-explorer.horizenlabs.io/',
|
|
678
|
+
name: 'HORIZEN_EON Explorer',
|
|
679
|
+
url: 'https://eon-explorer.horizenlabs.io/'
|
|
680
|
+
}
|
|
681
|
+
},
|
|
682
|
+
id: 7332,
|
|
683
|
+
name: 'Horizen EON',
|
|
684
|
+
nativeCurrency: { decimals: 18, name: 'ZEN', symbol: 'ZEN' },
|
|
685
|
+
rpcUrls: { default: { http: ['https://eon-rpc.horizenlabs.io/ethv1'] } },
|
|
686
|
+
testnet: false,
|
|
687
|
+
contracts: {
|
|
688
|
+
multicall3: {
|
|
689
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
690
|
+
}
|
|
691
|
+
}
|
|
692
|
+
}),
|
|
693
|
+
METIS: (0, viem_1.defineChain)({
|
|
694
|
+
blockExplorers: {
|
|
695
|
+
default: {
|
|
696
|
+
apiUrl: 'https://andromeda-explorer.metis.io/',
|
|
697
|
+
name: 'METIS Explorer',
|
|
698
|
+
url: 'https://andromeda-explorer.metis.io/'
|
|
699
|
+
}
|
|
700
|
+
},
|
|
701
|
+
id: 1088,
|
|
702
|
+
name: 'Metis',
|
|
703
|
+
nativeCurrency: { decimals: 18, name: 'Metis token', symbol: 'METIS' },
|
|
704
|
+
rpcUrls: { default: { http: ['https://andromeda.metis.io/?owner=1088'] } },
|
|
705
|
+
testnet: false,
|
|
706
|
+
contracts: {
|
|
707
|
+
multicall3: {
|
|
708
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
709
|
+
}
|
|
710
|
+
}
|
|
711
|
+
}),
|
|
712
|
+
KROMA: (0, viem_1.defineChain)({
|
|
713
|
+
blockExplorers: { default: { apiUrl: 'https://kromascan.com/', name: 'KROMA Explorer', url: 'https://kromascan.com/' } },
|
|
714
|
+
id: 255,
|
|
715
|
+
name: 'Kroma',
|
|
716
|
+
nativeCurrency: { decimals: 18, name: 'ETH', symbol: 'ETH' },
|
|
717
|
+
rpcUrls: { default: { http: ['https://api.kroma.network'] } },
|
|
718
|
+
testnet: false,
|
|
719
|
+
contracts: {
|
|
720
|
+
multicall3: {
|
|
721
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
722
|
+
}
|
|
723
|
+
}
|
|
724
|
+
}),
|
|
725
|
+
OASIS: (0, viem_1.defineChain)({
|
|
726
|
+
blockExplorers: {
|
|
727
|
+
default: {
|
|
728
|
+
apiUrl: 'https://explorer.emerald.oasis.dev/',
|
|
729
|
+
name: 'OASIS Explorer',
|
|
730
|
+
url: 'https://explorer.emerald.oasis.dev/'
|
|
731
|
+
}
|
|
732
|
+
},
|
|
733
|
+
id: 42262,
|
|
734
|
+
name: 'Oasis',
|
|
735
|
+
nativeCurrency: { decimals: 18, name: 'ROSE', symbol: 'ROSE' },
|
|
736
|
+
rpcUrls: { default: { http: ['https://emerald.oasis.dev'] } },
|
|
737
|
+
testnet: false,
|
|
738
|
+
contracts: {
|
|
739
|
+
multicall3: {
|
|
740
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
741
|
+
}
|
|
742
|
+
}
|
|
743
|
+
}),
|
|
744
|
+
MANTLE: (0, viem_1.defineChain)({
|
|
745
|
+
blockExplorers: {
|
|
746
|
+
default: { apiUrl: 'https://explorer.mantle.xyz/', name: 'MANTLE Explorer', url: 'https://explorer.mantle.xyz/' }
|
|
747
|
+
},
|
|
748
|
+
id: 5000,
|
|
749
|
+
name: 'Mantle',
|
|
750
|
+
nativeCurrency: { decimals: 18, name: 'Mantle', symbol: 'MNT' },
|
|
751
|
+
rpcUrls: { default: { http: ['https://mantle.publicnode.com'] } },
|
|
752
|
+
testnet: false,
|
|
753
|
+
contracts: {
|
|
754
|
+
multicall3: {
|
|
755
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
756
|
+
}
|
|
757
|
+
}
|
|
758
|
+
}),
|
|
759
|
+
SYSCOIN: (0, viem_1.defineChain)({
|
|
760
|
+
blockExplorers: {
|
|
761
|
+
default: { apiUrl: 'https://explorer.syscoin.org/', name: 'SYSCOIN Explorer', url: 'https://explorer.syscoin.org/' }
|
|
762
|
+
},
|
|
763
|
+
id: 57,
|
|
764
|
+
name: 'Syscoin',
|
|
765
|
+
nativeCurrency: { decimals: 18, name: 'Syscoin', symbol: 'SYS' },
|
|
766
|
+
rpcUrls: { default: { http: ['https://rpc.syscoin.org'] } },
|
|
767
|
+
testnet: false,
|
|
768
|
+
contracts: {
|
|
769
|
+
multicall3: {
|
|
770
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
771
|
+
}
|
|
772
|
+
}
|
|
773
|
+
}),
|
|
774
|
+
MERLIN: (0, viem_1.defineChain)({
|
|
775
|
+
blockExplorers: {
|
|
776
|
+
default: { apiUrl: 'https://scan.merlinchain.io/', name: 'MERLIN Explorer', url: 'https://scan.merlinchain.io/' }
|
|
777
|
+
},
|
|
778
|
+
id: 4200,
|
|
779
|
+
name: 'Merlin',
|
|
780
|
+
nativeCurrency: { decimals: 18, name: 'Bitcoin', symbol: 'BTC' },
|
|
781
|
+
rpcUrls: { default: { http: ['https://rpc.merlinchain.io'] } },
|
|
782
|
+
testnet: false,
|
|
783
|
+
contracts: {
|
|
784
|
+
multicall3: {
|
|
785
|
+
address: '0xeF65be81CF435238E742487De1fc27f1940D8B26'
|
|
786
|
+
}
|
|
787
|
+
}
|
|
788
|
+
}),
|
|
789
|
+
VELAS: (0, viem_1.defineChain)({
|
|
790
|
+
blockExplorers: {
|
|
791
|
+
default: { apiUrl: 'https://evmexplorer.velas.com/', name: 'VELAS Explorer', url: 'https://evmexplorer.velas.com/' }
|
|
792
|
+
},
|
|
793
|
+
id: 106,
|
|
794
|
+
name: 'Velas',
|
|
795
|
+
nativeCurrency: { decimals: 18, name: 'Velas', symbol: 'VLX' },
|
|
796
|
+
rpcUrls: { default: { http: ['https://evmexplorer.velas.com/rpc'] } },
|
|
797
|
+
testnet: false,
|
|
798
|
+
contracts: {
|
|
799
|
+
multicall3: {
|
|
800
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
801
|
+
}
|
|
802
|
+
}
|
|
803
|
+
}),
|
|
804
|
+
MODE: (0, viem_1.defineChain)({
|
|
805
|
+
blockExplorers: {
|
|
806
|
+
default: { apiUrl: 'https://explorer.mode.network/', name: 'MODE Explorer', url: 'https://explorer.mode.network/' }
|
|
807
|
+
},
|
|
808
|
+
id: 34443,
|
|
809
|
+
name: 'Mode',
|
|
810
|
+
nativeCurrency: { decimals: 18, name: 'ETH', symbol: 'ETH' },
|
|
811
|
+
rpcUrls: { default: { http: ['https://mainnet.mode.network'] } },
|
|
812
|
+
testnet: false,
|
|
813
|
+
contracts: {
|
|
814
|
+
multicall3: {
|
|
815
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
816
|
+
}
|
|
817
|
+
}
|
|
818
|
+
}),
|
|
819
|
+
BAHAMUT: (0, viem_1.defineChain)({
|
|
820
|
+
blockExplorers: { default: { apiUrl: 'https://www.ftnscan.com/', name: 'BAHAMUT Explorer', url: 'https://www.ftnscan.com/' } },
|
|
821
|
+
id: 5165,
|
|
822
|
+
name: 'Bahamut',
|
|
823
|
+
nativeCurrency: { decimals: 18, name: 'FTN', symbol: 'FTN' },
|
|
824
|
+
rpcUrls: { default: { http: ['https://rpc1.bahamut.io'] } },
|
|
825
|
+
testnet: false,
|
|
826
|
+
contracts: {
|
|
827
|
+
multicall3: {
|
|
828
|
+
address: '0x1AA0663FBA06B1D5482E7CaA675aa12fB04F4D0f'
|
|
829
|
+
}
|
|
830
|
+
}
|
|
831
|
+
}),
|
|
832
|
+
PULSECHAIN: (0, viem_1.defineChain)({
|
|
833
|
+
blockExplorers: {
|
|
834
|
+
default: { apiUrl: 'https://otter.pulsechain.com/', name: 'PULSECHAIN Explorer', url: 'https://otter.pulsechain.com/' }
|
|
835
|
+
},
|
|
836
|
+
id: 369,
|
|
837
|
+
name: 'Pulsechain',
|
|
838
|
+
nativeCurrency: { decimals: 18, name: 'PLS', symbol: 'PLS' },
|
|
839
|
+
rpcUrls: { default: { http: ['https://rpc.pulsechain.com'] } },
|
|
840
|
+
testnet: false,
|
|
841
|
+
contracts: {
|
|
842
|
+
multicall3: {
|
|
843
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
844
|
+
}
|
|
845
|
+
}
|
|
846
|
+
}),
|
|
847
|
+
CORE: (0, viem_1.defineChain)({
|
|
848
|
+
blockExplorers: { default: { apiUrl: 'https://scan.coredao.org/', name: 'CORE Explorer', url: 'https://scan.coredao.org/' } },
|
|
849
|
+
id: 1116,
|
|
850
|
+
name: 'CORE',
|
|
851
|
+
nativeCurrency: { decimals: 18, name: 'CORE', symbol: 'CORE' },
|
|
852
|
+
rpcUrls: { default: { http: ['https://rpc.coredao.org'] } },
|
|
853
|
+
testnet: false,
|
|
854
|
+
contracts: {
|
|
855
|
+
multicall3: {
|
|
856
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
857
|
+
}
|
|
858
|
+
}
|
|
859
|
+
}),
|
|
860
|
+
ROOTSTOCK: (0, viem_1.defineChain)({
|
|
861
|
+
blockExplorers: {
|
|
862
|
+
default: { apiUrl: 'https://explorer.rsk.co/', name: 'ROOTSTOCK Explorer', url: 'https://explorer.rsk.co/' }
|
|
863
|
+
},
|
|
864
|
+
id: 30,
|
|
865
|
+
name: 'Rootstock',
|
|
866
|
+
nativeCurrency: { decimals: 18, name: 'RBTC', symbol: 'RBTC' },
|
|
867
|
+
rpcUrls: { default: { http: ['https://public-node.rsk.co'] } },
|
|
868
|
+
testnet: false,
|
|
869
|
+
contracts: {
|
|
870
|
+
multicall3: {
|
|
871
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
872
|
+
}
|
|
873
|
+
}
|
|
874
|
+
}),
|
|
875
|
+
ZK_SYNC: (0, viem_1.defineChain)({
|
|
876
|
+
blockExplorers: {
|
|
877
|
+
default: { apiUrl: 'https://explorer.zksync.io/', name: 'ZK_SYNC Explorer', url: 'https://explorer.zksync.io/' }
|
|
878
|
+
},
|
|
879
|
+
id: 324,
|
|
880
|
+
name: 'zkSync Era',
|
|
881
|
+
nativeCurrency: { decimals: 18, name: 'ETH', symbol: 'ETH' },
|
|
882
|
+
rpcUrls: { default: { http: ['https://mainnet.era.zksync.io'] } },
|
|
883
|
+
testnet: false,
|
|
884
|
+
contracts: {
|
|
885
|
+
multicall3: {
|
|
886
|
+
address: '0xF9cda624FBC7e059355ce98a31693d299FACd963'
|
|
887
|
+
}
|
|
888
|
+
}
|
|
889
|
+
}),
|
|
890
|
+
SCROLL: (0, viem_1.defineChain)({
|
|
891
|
+
blockExplorers: { default: { apiUrl: 'https://scrollscan.com/', name: 'SCROLL Explorer', url: 'https://scrollscan.com/' } },
|
|
892
|
+
id: 534352,
|
|
893
|
+
name: 'Scroll',
|
|
894
|
+
nativeCurrency: { decimals: 18, name: 'ETH', symbol: 'ETH' },
|
|
895
|
+
rpcUrls: { default: { http: ['https://rpc.scroll.io/'] } },
|
|
896
|
+
testnet: false,
|
|
897
|
+
contracts: {
|
|
898
|
+
multicall3: {
|
|
899
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
900
|
+
}
|
|
901
|
+
}
|
|
902
|
+
}),
|
|
903
|
+
SEI: (0, viem_1.defineChain)({
|
|
904
|
+
blockExplorers: {
|
|
905
|
+
default: {
|
|
906
|
+
apiUrl: 'https://seitrace.com/?chain=pacific-1/',
|
|
907
|
+
name: 'SEI Explorer',
|
|
908
|
+
url: 'https://seitrace.com/?chain=pacific-1/'
|
|
909
|
+
}
|
|
910
|
+
},
|
|
911
|
+
id: 1329,
|
|
912
|
+
name: 'Sei',
|
|
913
|
+
nativeCurrency: { decimals: 18, name: 'Sei', symbol: 'SEI' },
|
|
914
|
+
rpcUrls: { default: { http: ['https://evm-rpc.sei-apis.com'] } },
|
|
915
|
+
testnet: false,
|
|
916
|
+
contracts: {
|
|
917
|
+
multicall3: {
|
|
918
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
919
|
+
}
|
|
920
|
+
}
|
|
921
|
+
}),
|
|
922
|
+
TAIKO: (0, viem_1.defineChain)({
|
|
923
|
+
blockExplorers: { default: { apiUrl: 'https://taikoscan.io/', name: 'TAIKO Explorer', url: 'https://taikoscan.io/' } },
|
|
924
|
+
id: 167000,
|
|
925
|
+
name: 'Taiko',
|
|
926
|
+
nativeCurrency: { decimals: 18, name: 'Ether', symbol: 'ETH' },
|
|
927
|
+
rpcUrls: { default: { http: ['https://rpc.mainnet.taiko.xyz'] } },
|
|
928
|
+
testnet: false,
|
|
929
|
+
contracts: {
|
|
930
|
+
multicall3: {
|
|
931
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
932
|
+
}
|
|
933
|
+
}
|
|
934
|
+
}),
|
|
935
|
+
XLAYER: (0, viem_1.defineChain)({
|
|
936
|
+
blockExplorers: {
|
|
937
|
+
default: {
|
|
938
|
+
apiUrl: 'https://www.okx.com/ru/explorer/xlayer/',
|
|
939
|
+
name: 'XLAYER Explorer',
|
|
940
|
+
url: 'https://www.okx.com/ru/explorer/xlayer/'
|
|
941
|
+
}
|
|
942
|
+
},
|
|
943
|
+
id: 196,
|
|
944
|
+
name: 'X Layer',
|
|
945
|
+
nativeCurrency: { decimals: 18, name: 'OK Token', symbol: 'OKB' },
|
|
946
|
+
rpcUrls: { default: { http: ['https://rpc.xlayer.tech'] } },
|
|
947
|
+
testnet: false,
|
|
948
|
+
contracts: {
|
|
949
|
+
multicall3: {
|
|
950
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
951
|
+
}
|
|
952
|
+
}
|
|
953
|
+
}),
|
|
954
|
+
ZETACHAIN: (0, viem_1.defineChain)({
|
|
955
|
+
blockExplorers: {
|
|
956
|
+
default: {
|
|
957
|
+
apiUrl: 'https://zetachain.blockscout.com/',
|
|
958
|
+
name: 'ZETACHAIN Explorer',
|
|
959
|
+
url: 'https://zetachain.blockscout.com/'
|
|
960
|
+
}
|
|
961
|
+
},
|
|
962
|
+
id: 7000,
|
|
963
|
+
name: 'Zetachain',
|
|
964
|
+
nativeCurrency: { decimals: 18, name: 'Zeta', symbol: 'ZETA' },
|
|
965
|
+
rpcUrls: { default: { http: ['https://zetachain-evm.blockpi.network/v1/rpc/public'] } },
|
|
966
|
+
testnet: false,
|
|
967
|
+
contracts: {
|
|
968
|
+
multicall3: {
|
|
969
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
970
|
+
}
|
|
971
|
+
}
|
|
972
|
+
}),
|
|
973
|
+
ZK_FAIR: (0, viem_1.defineChain)({
|
|
974
|
+
blockExplorers: { default: { apiUrl: 'https://scan.zkfair.io/', name: 'ZK_FAIR Explorer', url: 'https://scan.zkfair.io/' } },
|
|
975
|
+
id: 42766,
|
|
976
|
+
name: 'zkFair',
|
|
977
|
+
nativeCurrency: { decimals: 18, name: 'USDC', symbol: 'USDC' },
|
|
978
|
+
rpcUrls: { default: { http: ['https://rpc.zkfair.io'] } },
|
|
979
|
+
testnet: false,
|
|
980
|
+
contracts: {
|
|
981
|
+
multicall3: {
|
|
982
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
983
|
+
}
|
|
984
|
+
}
|
|
985
|
+
}),
|
|
986
|
+
// unknown Multicall3
|
|
987
|
+
ZK_LINK: (0, viem_1.defineChain)({
|
|
988
|
+
blockExplorers: {
|
|
989
|
+
default: { apiUrl: 'https://explorer.zklink.io/', name: 'ZK_LINK Explorer', url: 'https://explorer.zklink.io/' }
|
|
990
|
+
},
|
|
991
|
+
id: 810180,
|
|
992
|
+
name: 'zkLink',
|
|
993
|
+
nativeCurrency: { decimals: 18, name: 'ETH', symbol: 'ETH' },
|
|
994
|
+
rpcUrls: { default: { http: ['https://rpc.zklink.io'] } },
|
|
995
|
+
testnet: false
|
|
996
|
+
}),
|
|
997
|
+
THETA: (0, viem_1.defineChain)({
|
|
998
|
+
blockExplorers: {
|
|
999
|
+
default: { apiUrl: 'https://explorer.thetatoken.org/', name: 'THETA Explorer', url: 'https://explorer.thetatoken.org/' }
|
|
1000
|
+
},
|
|
1001
|
+
id: 361,
|
|
1002
|
+
name: 'Theta',
|
|
1003
|
+
nativeCurrency: { decimals: 18, name: 'Theta', symbol: 'THETA' },
|
|
1004
|
+
rpcUrls: { default: { http: ['https://eth-rpc-api.thetatoken.org/rpc'] } },
|
|
1005
|
+
testnet: false
|
|
1006
|
+
}),
|
|
1007
|
+
STARKNET: (0, viem_1.defineChain)({
|
|
1008
|
+
blockExplorers: {
|
|
1009
|
+
default: { apiUrl: 'https://starkscan.co/', name: 'STARKNET Explorer', url: 'https://starkscan.co/' }
|
|
1010
|
+
},
|
|
1011
|
+
id: NaN,
|
|
1012
|
+
name: 'starknet',
|
|
1013
|
+
nativeCurrency: { decimals: 18, name: 'STRK', symbol: 'STRK' },
|
|
1014
|
+
rpcUrls: { default: { http: [
|
|
1015
|
+
'https://rpc.starknet.lava.build',
|
|
1016
|
+
'https://starknet-mainnet.public.blastapi.io',
|
|
1017
|
+
'https://data.voyager.online/'
|
|
1018
|
+
] } },
|
|
1019
|
+
testnet: false
|
|
1020
|
+
}),
|
|
1021
|
+
BITLAYER: (0, viem_1.defineChain)({
|
|
1022
|
+
blockExplorers: { default: { apiUrl: 'https://btrscan.com/', name: 'Bitlayer Explorer', url: 'https://btrscan.com/' } },
|
|
1023
|
+
id: 200901,
|
|
1024
|
+
name: 'Bitlayer',
|
|
1025
|
+
nativeCurrency: { decimals: 18, name: 'Bitcoin', symbol: 'BTC' },
|
|
1026
|
+
rpcUrls: { default: { http: [
|
|
1027
|
+
'https://rpc.bitlayer.org',
|
|
1028
|
+
'https://rpc.ankr.com/bitlayer',
|
|
1029
|
+
'https://rpc-bitlayer.rockx.com',
|
|
1030
|
+
'https://rpc.bitlayer-rpc.com'
|
|
1031
|
+
] } },
|
|
1032
|
+
testnet: false,
|
|
1033
|
+
contracts: {
|
|
1034
|
+
multicall3: {
|
|
1035
|
+
address: '0xcA11bde05977b3631167028862bE2a173976CA11'
|
|
1036
|
+
}
|
|
1037
|
+
}
|
|
1038
|
+
}),
|
|
1039
|
+
};
|
|
1040
|
+
//# sourceMappingURL=chain-configs.js.map
|