@bitgo-beta/statics 15.1.1-beta.103 → 15.1.1-beta.1031
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/.mocharc.js +1 -1
- package/CHANGELOG.md +2945 -0
- package/dist/src/account.d.ts +613 -31
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +1007 -125
- package/dist/src/ada.d.ts.map +1 -1
- package/dist/src/ada.js +6 -3
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +7 -3
- package/dist/src/base.d.ts +1552 -40
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1611 -50
- package/dist/src/coinFeatures.d.ts +88 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +571 -0
- package/dist/src/coins/avaxTokens.d.ts +2 -0
- package/dist/src/coins/avaxTokens.d.ts.map +1 -0
- package/dist/src/coins/avaxTokens.js +100 -0
- package/dist/src/coins/bscTokens.d.ts +2 -0
- package/dist/src/coins/bscTokens.d.ts.map +1 -0
- package/dist/src/coins/bscTokens.js +157 -0
- package/dist/src/coins/erc20Coins.d.ts +2 -0
- package/dist/src/coins/erc20Coins.d.ts.map +1 -0
- package/dist/src/coins/erc20Coins.js +1454 -0
- package/dist/src/coins/nep141Tokens.d.ts +2 -0
- package/dist/src/coins/nep141Tokens.d.ts.map +1 -0
- package/dist/src/coins/nep141Tokens.js +14 -0
- package/dist/src/coins/ofcCoins.d.ts +2 -0
- package/dist/src/coins/ofcCoins.d.ts.map +1 -0
- package/dist/src/coins/ofcCoins.js +586 -0
- package/dist/src/coins/ofcErc20Coins.d.ts +3 -0
- package/dist/src/coins/ofcErc20Coins.d.ts.map +1 -0
- package/dist/src/coins/ofcErc20Coins.js +1355 -0
- package/dist/src/coins/polygonTokens.d.ts +2 -0
- package/dist/src/coins/polygonTokens.d.ts.map +1 -0
- package/dist/src/coins/polygonTokens.js +147 -0
- package/dist/src/coins/sip10Tokens.d.ts +2 -0
- package/dist/src/coins/sip10Tokens.d.ts.map +1 -0
- package/dist/src/coins/sip10Tokens.js +25 -0
- package/dist/src/coins/solTokens.d.ts +2 -0
- package/dist/src/coins/solTokens.d.ts.map +1 -0
- package/dist/src/coins/solTokens.js +378 -0
- package/dist/src/coins/vetTokens.d.ts +2 -0
- package/dist/src/coins/vetTokens.d.ts.map +1 -0
- package/dist/src/coins/vetTokens.js +11 -0
- package/dist/src/coins.d.ts +10 -1
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +700 -1514
- package/dist/src/constants.d.ts +1 -0
- package/dist/src/constants.d.ts.map +1 -1
- package/dist/src/constants.js +3 -2
- package/dist/src/index.d.ts +3 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +20 -3
- package/dist/src/lightning.d.ts +43 -0
- package/dist/src/lightning.d.ts.map +1 -0
- package/dist/src/lightning.js +60 -0
- package/dist/src/map.d.ts +4 -0
- package/dist/src/map.d.ts.map +1 -1
- package/dist/src/map.js +95 -19
- package/dist/src/networkFeatureMapForTokens.d.ts +3 -0
- package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
- package/dist/src/networkFeatureMapForTokens.js +29 -0
- package/dist/src/networks.d.ts +854 -1
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +1111 -42
- package/dist/src/ofc.d.ts +349 -0
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +724 -14
- package/dist/src/tokenConfig.d.ts +168 -14
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +659 -238
- package/dist/src/utxo.d.ts +3 -1
- package/dist/src/utxo.d.ts.map +1 -1
- package/dist/src/utxo.js +82 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -2
package/dist/src/networks.d.ts
CHANGED
|
@@ -11,6 +11,25 @@ export declare abstract class BaseNetwork {
|
|
|
11
11
|
}
|
|
12
12
|
export interface UtxoNetwork extends BaseNetwork {
|
|
13
13
|
utxolibName: string;
|
|
14
|
+
paygoAddressAttestationPubkey?: string;
|
|
15
|
+
}
|
|
16
|
+
export interface LightningNetwork extends UtxoNetwork {
|
|
17
|
+
/**
|
|
18
|
+
* The public key of the Lightning service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
19
|
+
* between the user's extended private key and the Lightning service. This key facilitates secure communication
|
|
20
|
+
* by enabling the creation of a shared secret for encryption and decryption of data.
|
|
21
|
+
*/
|
|
22
|
+
lightningServicePubKey: string;
|
|
23
|
+
/**
|
|
24
|
+
* The public key of the middleware service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
25
|
+
* between the user's extended private key and the middleware service.
|
|
26
|
+
*/
|
|
27
|
+
middlewarePubKey: string;
|
|
28
|
+
/**
|
|
29
|
+
* The public key of the TAT service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
30
|
+
* between the user's extended private key and the TAT service.
|
|
31
|
+
*/
|
|
32
|
+
tatPubKey: string;
|
|
14
33
|
}
|
|
15
34
|
export interface AdaNetwork extends BaseNetwork {
|
|
16
35
|
utxolibName: string;
|
|
@@ -40,15 +59,24 @@ export interface AvalancheNetwork extends BaseNetwork {
|
|
|
40
59
|
readonly minDelegationFee: string;
|
|
41
60
|
readonly avaxAssetID: string;
|
|
42
61
|
readonly txFee: string;
|
|
62
|
+
readonly maxImportFee: string;
|
|
43
63
|
}
|
|
44
64
|
export interface AccountNetwork extends BaseNetwork {
|
|
45
65
|
readonly accountExplorerUrl?: string;
|
|
46
66
|
readonly blockExplorerUrl?: string;
|
|
47
67
|
}
|
|
68
|
+
export interface CosmosNetwork extends AccountNetwork {
|
|
69
|
+
readonly addressPrefix: string;
|
|
70
|
+
readonly validatorPrefix: string;
|
|
71
|
+
readonly denom: string;
|
|
72
|
+
readonly gasAmount: string;
|
|
73
|
+
readonly gasLimit: number;
|
|
74
|
+
}
|
|
48
75
|
/**
|
|
49
76
|
* Specification name type of the chain. Used in setting up the registry
|
|
50
77
|
*/
|
|
51
|
-
export
|
|
78
|
+
export type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine';
|
|
79
|
+
export type SubstrateSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor' | 'polymesh_testnet';
|
|
52
80
|
export interface DotNetwork extends AccountNetwork {
|
|
53
81
|
readonly specName: PolkadotSpecNameType;
|
|
54
82
|
readonly genesisHash: string;
|
|
@@ -61,6 +89,8 @@ export interface EthereumNetwork extends AccountNetwork {
|
|
|
61
89
|
readonly batcherContractAddress?: string;
|
|
62
90
|
readonly forwarderFactoryAddress?: string;
|
|
63
91
|
readonly forwarderImplementationAddress?: string;
|
|
92
|
+
readonly nativeCoinOperationHashPrefix?: string;
|
|
93
|
+
readonly tokenOperationHashPrefix?: string;
|
|
64
94
|
}
|
|
65
95
|
export interface TronNetwork extends AccountNetwork {
|
|
66
96
|
maxFeeLimit: string;
|
|
@@ -110,6 +140,60 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
|
|
|
110
140
|
poolDeposit: number;
|
|
111
141
|
stakeKeyDeposit: number;
|
|
112
142
|
}
|
|
143
|
+
declare class Apt extends Mainnet implements AccountNetwork {
|
|
144
|
+
name: string;
|
|
145
|
+
family: CoinFamily;
|
|
146
|
+
explorerUrl: string;
|
|
147
|
+
accountExplorerUrl: string;
|
|
148
|
+
blockExplorerUrl: string;
|
|
149
|
+
}
|
|
150
|
+
declare class AptTestnet extends Testnet implements AccountNetwork {
|
|
151
|
+
name: string;
|
|
152
|
+
family: CoinFamily;
|
|
153
|
+
explorerUrl: string;
|
|
154
|
+
accountExplorerUrl: string;
|
|
155
|
+
blockExplorerUrl: string;
|
|
156
|
+
}
|
|
157
|
+
declare class Icp extends Mainnet implements AccountNetwork {
|
|
158
|
+
name: string;
|
|
159
|
+
family: CoinFamily;
|
|
160
|
+
explorerUrl: string;
|
|
161
|
+
accountExplorerUrl: string;
|
|
162
|
+
}
|
|
163
|
+
declare class IcpTestnet extends Testnet implements AccountNetwork {
|
|
164
|
+
name: string;
|
|
165
|
+
family: CoinFamily;
|
|
166
|
+
explorerUrl: string;
|
|
167
|
+
accountExplorerUrl: string;
|
|
168
|
+
}
|
|
169
|
+
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
170
|
+
name: string;
|
|
171
|
+
family: CoinFamily;
|
|
172
|
+
explorerUrl: string;
|
|
173
|
+
accountExplorerUrl: string;
|
|
174
|
+
chainId: number;
|
|
175
|
+
nativeCoinOperationHashPrefix: string;
|
|
176
|
+
tokenOperationHashPrefix: string;
|
|
177
|
+
forwarderFactoryAddress: string;
|
|
178
|
+
forwarderImplementationAddress: string;
|
|
179
|
+
walletFactoryAddress: string;
|
|
180
|
+
walletImplementationAddress: string;
|
|
181
|
+
batcherContractAddress: string;
|
|
182
|
+
}
|
|
183
|
+
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
184
|
+
name: string;
|
|
185
|
+
family: CoinFamily;
|
|
186
|
+
explorerUrl: string;
|
|
187
|
+
accountExplorerUrl: string;
|
|
188
|
+
chainId: number;
|
|
189
|
+
nativeCoinOperationHashPrefix: string;
|
|
190
|
+
tokenOperationHashPrefix: string;
|
|
191
|
+
forwarderFactoryAddress: string;
|
|
192
|
+
forwarderImplementationAddress: string;
|
|
193
|
+
walletFactoryAddress: string;
|
|
194
|
+
walletImplementationAddress: string;
|
|
195
|
+
batcherContractAddress: string;
|
|
196
|
+
}
|
|
113
197
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
114
198
|
name: string;
|
|
115
199
|
family: CoinFamily;
|
|
@@ -137,6 +221,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
137
221
|
alias: string;
|
|
138
222
|
vm: string;
|
|
139
223
|
txFee: string;
|
|
224
|
+
maxImportFee: string;
|
|
140
225
|
createSubnetTx: string;
|
|
141
226
|
createChainTx: string;
|
|
142
227
|
creationTxFee: string;
|
|
@@ -162,6 +247,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
162
247
|
hrp: string;
|
|
163
248
|
vm: string;
|
|
164
249
|
txFee: string;
|
|
250
|
+
maxImportFee: string;
|
|
165
251
|
createSubnetTx: string;
|
|
166
252
|
createChainTx: string;
|
|
167
253
|
creationTxFee: string;
|
|
@@ -180,6 +266,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
180
266
|
explorerUrl: string;
|
|
181
267
|
accountExplorerUrl: string;
|
|
182
268
|
chainId: number;
|
|
269
|
+
nativeCoinOperationHashPrefix: string;
|
|
270
|
+
tokenOperationHashPrefix: string;
|
|
271
|
+
batcherContractAddress: string;
|
|
183
272
|
}
|
|
184
273
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
185
274
|
name: string;
|
|
@@ -187,6 +276,27 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
187
276
|
explorerUrl: string;
|
|
188
277
|
accountExplorerUrl: string;
|
|
189
278
|
chainId: number;
|
|
279
|
+
nativeCoinOperationHashPrefix: string;
|
|
280
|
+
tokenOperationHashPrefix: string;
|
|
281
|
+
batcherContractAddress: string;
|
|
282
|
+
}
|
|
283
|
+
declare class LightningBitcoin extends Mainnet implements LightningNetwork {
|
|
284
|
+
name: string;
|
|
285
|
+
family: CoinFamily;
|
|
286
|
+
utxolibName: string;
|
|
287
|
+
explorerUrl: string;
|
|
288
|
+
lightningServicePubKey: string;
|
|
289
|
+
middlewarePubKey: string;
|
|
290
|
+
tatPubKey: string;
|
|
291
|
+
}
|
|
292
|
+
declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
|
|
293
|
+
name: string;
|
|
294
|
+
family: CoinFamily;
|
|
295
|
+
utxolibName: string;
|
|
296
|
+
explorerUrl: string;
|
|
297
|
+
lightningServicePubKey: string;
|
|
298
|
+
middlewarePubKey: string;
|
|
299
|
+
tatPubKey: string;
|
|
190
300
|
}
|
|
191
301
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
192
302
|
name: string;
|
|
@@ -199,6 +309,25 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
199
309
|
family: CoinFamily;
|
|
200
310
|
utxolibName: string;
|
|
201
311
|
explorerUrl: string;
|
|
312
|
+
paygoAddressAttestationPubkey: string;
|
|
313
|
+
}
|
|
314
|
+
declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
|
|
315
|
+
name: string;
|
|
316
|
+
family: CoinFamily;
|
|
317
|
+
utxolibName: string;
|
|
318
|
+
explorerUrl: string;
|
|
319
|
+
}
|
|
320
|
+
declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
|
|
321
|
+
name: string;
|
|
322
|
+
family: CoinFamily;
|
|
323
|
+
utxolibName: string;
|
|
324
|
+
explorerUrl: string;
|
|
325
|
+
}
|
|
326
|
+
declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
|
|
327
|
+
name: string;
|
|
328
|
+
family: CoinFamily;
|
|
329
|
+
utxolibName: string;
|
|
330
|
+
explorerUrl: string;
|
|
202
331
|
}
|
|
203
332
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
204
333
|
name: string;
|
|
@@ -298,6 +427,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
298
427
|
explorerUrl: string;
|
|
299
428
|
accountExplorerUrl: string;
|
|
300
429
|
chainId: number;
|
|
430
|
+
nativeCoinOperationHashPrefix: string;
|
|
431
|
+
tokenOperationHashPrefix: string;
|
|
301
432
|
}
|
|
302
433
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
303
434
|
name: string;
|
|
@@ -305,6 +436,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
305
436
|
explorerUrl: string;
|
|
306
437
|
accountExplorerUrl: string;
|
|
307
438
|
chainId: number;
|
|
439
|
+
nativeCoinOperationHashPrefix: string;
|
|
440
|
+
tokenOperationHashPrefix: string;
|
|
308
441
|
}
|
|
309
442
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
310
443
|
name: string;
|
|
@@ -328,6 +461,8 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
328
461
|
batcherContractAddress: string;
|
|
329
462
|
forwarderFactoryAddress: string;
|
|
330
463
|
forwarderImplementationAddress: string;
|
|
464
|
+
nativeCoinOperationHashPrefix: string;
|
|
465
|
+
tokenOperationHashPrefix: string;
|
|
331
466
|
}
|
|
332
467
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
333
468
|
name: string;
|
|
@@ -344,6 +479,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
344
479
|
batcherContractAddress: string;
|
|
345
480
|
forwarderFactoryAddress: string;
|
|
346
481
|
forwarderImplementationAddress: string;
|
|
482
|
+
nativeCoinOperationHashPrefix: string;
|
|
483
|
+
tokenOperationHashPrefix: string;
|
|
347
484
|
}
|
|
348
485
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
349
486
|
name: string;
|
|
@@ -360,6 +497,8 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
360
497
|
batcherContractAddress: string;
|
|
361
498
|
forwarderFactoryAddress: string;
|
|
362
499
|
forwarderImplementationAddress: string;
|
|
500
|
+
nativeCoinOperationHashPrefix: string;
|
|
501
|
+
tokenOperationHashPrefix: string;
|
|
363
502
|
}
|
|
364
503
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
365
504
|
name: string;
|
|
@@ -371,6 +510,21 @@ declare class Goerli extends Testnet implements EthereumNetwork {
|
|
|
371
510
|
batcherContractAddress: string;
|
|
372
511
|
forwarderFactoryAddress: string;
|
|
373
512
|
forwarderImplementationAddress: string;
|
|
513
|
+
nativeCoinOperationHashPrefix: string;
|
|
514
|
+
tokenOperationHashPrefix: string;
|
|
515
|
+
}
|
|
516
|
+
declare class Holesky extends Testnet implements EthereumNetwork {
|
|
517
|
+
name: string;
|
|
518
|
+
family: CoinFamily;
|
|
519
|
+
explorerUrl: string;
|
|
520
|
+
accountExplorerUrl: string;
|
|
521
|
+
blockExplorerUrl: string;
|
|
522
|
+
chainId: number;
|
|
523
|
+
batcherContractAddress: string;
|
|
524
|
+
forwarderFactoryAddress: string;
|
|
525
|
+
forwarderImplementationAddress: string;
|
|
526
|
+
nativeCoinOperationHashPrefix: string;
|
|
527
|
+
tokenOperationHashPrefix: string;
|
|
374
528
|
}
|
|
375
529
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
376
530
|
name: string;
|
|
@@ -378,6 +532,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
378
532
|
explorerUrl: string;
|
|
379
533
|
accountExplorerUrl: string;
|
|
380
534
|
chainId: number;
|
|
535
|
+
nativeCoinOperationHashPrefix: string;
|
|
536
|
+
tokenOperationHashPrefix: string;
|
|
381
537
|
}
|
|
382
538
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
383
539
|
name: string;
|
|
@@ -385,6 +541,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
385
541
|
explorerUrl: string;
|
|
386
542
|
accountExplorerUrl: string;
|
|
387
543
|
chainId: number;
|
|
544
|
+
nativeCoinOperationHashPrefix: string;
|
|
545
|
+
tokenOperationHashPrefix: string;
|
|
388
546
|
}
|
|
389
547
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
390
548
|
name: string;
|
|
@@ -434,6 +592,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
434
592
|
explorerUrl: string;
|
|
435
593
|
accountExplorerUrl: string;
|
|
436
594
|
chainId: number;
|
|
595
|
+
nativeCoinOperationHashPrefix: string;
|
|
596
|
+
tokenOperationHashPrefix: string;
|
|
437
597
|
}
|
|
438
598
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
439
599
|
name: string;
|
|
@@ -441,6 +601,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
441
601
|
explorerUrl: string;
|
|
442
602
|
accountExplorerUrl: string;
|
|
443
603
|
chainId: number;
|
|
604
|
+
nativeCoinOperationHashPrefix: string;
|
|
605
|
+
tokenOperationHashPrefix: string;
|
|
444
606
|
}
|
|
445
607
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
446
608
|
name: string;
|
|
@@ -552,6 +714,116 @@ declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
|
552
714
|
family: CoinFamily;
|
|
553
715
|
explorerUrl: string;
|
|
554
716
|
}
|
|
717
|
+
declare class Kava extends Mainnet implements AccountNetwork {
|
|
718
|
+
name: string;
|
|
719
|
+
family: CoinFamily;
|
|
720
|
+
explorerUrl: string;
|
|
721
|
+
}
|
|
722
|
+
declare class KavaTestnet extends Testnet implements AccountNetwork {
|
|
723
|
+
name: string;
|
|
724
|
+
family: CoinFamily;
|
|
725
|
+
explorerUrl: string;
|
|
726
|
+
}
|
|
727
|
+
declare class Ton extends Mainnet implements AccountNetwork {
|
|
728
|
+
name: string;
|
|
729
|
+
family: CoinFamily;
|
|
730
|
+
explorerUrl: string;
|
|
731
|
+
}
|
|
732
|
+
declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
733
|
+
name: string;
|
|
734
|
+
family: CoinFamily;
|
|
735
|
+
explorerUrl: string;
|
|
736
|
+
}
|
|
737
|
+
declare class Coreum extends Mainnet implements AccountNetwork {
|
|
738
|
+
name: string;
|
|
739
|
+
family: CoinFamily;
|
|
740
|
+
explorerUrl: string;
|
|
741
|
+
}
|
|
742
|
+
declare class CoreumTestnet extends Testnet implements AccountNetwork {
|
|
743
|
+
name: string;
|
|
744
|
+
family: CoinFamily;
|
|
745
|
+
explorerUrl: string;
|
|
746
|
+
}
|
|
747
|
+
declare class Rune extends Mainnet implements AccountNetwork {
|
|
748
|
+
name: string;
|
|
749
|
+
family: CoinFamily;
|
|
750
|
+
explorerUrl: string;
|
|
751
|
+
}
|
|
752
|
+
declare class RuneTestNet extends Testnet implements AccountNetwork {
|
|
753
|
+
name: string;
|
|
754
|
+
family: CoinFamily;
|
|
755
|
+
explorerUrl: string;
|
|
756
|
+
}
|
|
757
|
+
declare class Baby extends Mainnet implements AccountNetwork {
|
|
758
|
+
name: string;
|
|
759
|
+
family: CoinFamily;
|
|
760
|
+
explorerUrl: string;
|
|
761
|
+
}
|
|
762
|
+
declare class BabyTestnet extends Testnet implements AccountNetwork {
|
|
763
|
+
name: string;
|
|
764
|
+
family: CoinFamily;
|
|
765
|
+
explorerUrl: string;
|
|
766
|
+
}
|
|
767
|
+
declare class Mantra extends Mainnet implements AccountNetwork {
|
|
768
|
+
name: string;
|
|
769
|
+
family: CoinFamily;
|
|
770
|
+
explorerUrl: string;
|
|
771
|
+
}
|
|
772
|
+
declare class MantraTestnet extends Testnet implements AccountNetwork {
|
|
773
|
+
name: string;
|
|
774
|
+
family: CoinFamily;
|
|
775
|
+
explorerUrl: string;
|
|
776
|
+
}
|
|
777
|
+
declare class Cronos extends Mainnet implements AccountNetwork {
|
|
778
|
+
name: string;
|
|
779
|
+
family: CoinFamily;
|
|
780
|
+
explorerUrl: string;
|
|
781
|
+
}
|
|
782
|
+
declare class CronosTestnet extends Testnet implements AccountNetwork {
|
|
783
|
+
name: string;
|
|
784
|
+
family: CoinFamily;
|
|
785
|
+
explorerUrl: string;
|
|
786
|
+
}
|
|
787
|
+
declare class FetchAi extends Mainnet implements AccountNetwork {
|
|
788
|
+
name: string;
|
|
789
|
+
family: CoinFamily;
|
|
790
|
+
explorerUrl: string;
|
|
791
|
+
}
|
|
792
|
+
declare class FetchAiTestnet extends Testnet implements AccountNetwork {
|
|
793
|
+
name: string;
|
|
794
|
+
family: CoinFamily;
|
|
795
|
+
explorerUrl: string;
|
|
796
|
+
}
|
|
797
|
+
declare class Initia extends Mainnet implements AccountNetwork {
|
|
798
|
+
name: string;
|
|
799
|
+
family: CoinFamily;
|
|
800
|
+
explorerUrl: string;
|
|
801
|
+
}
|
|
802
|
+
declare class InitiaTestnet extends Testnet implements AccountNetwork {
|
|
803
|
+
name: string;
|
|
804
|
+
family: CoinFamily;
|
|
805
|
+
explorerUrl: string;
|
|
806
|
+
}
|
|
807
|
+
declare class Asi extends Mainnet implements AccountNetwork {
|
|
808
|
+
name: string;
|
|
809
|
+
family: CoinFamily;
|
|
810
|
+
explorerUrl: string;
|
|
811
|
+
}
|
|
812
|
+
declare class AsiTestnet extends Testnet implements AccountNetwork {
|
|
813
|
+
name: string;
|
|
814
|
+
family: CoinFamily;
|
|
815
|
+
explorerUrl: string;
|
|
816
|
+
}
|
|
817
|
+
declare class Islm extends Mainnet implements AccountNetwork {
|
|
818
|
+
name: string;
|
|
819
|
+
family: CoinFamily;
|
|
820
|
+
explorerUrl: string;
|
|
821
|
+
}
|
|
822
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
823
|
+
name: string;
|
|
824
|
+
family: CoinFamily;
|
|
825
|
+
explorerUrl: string;
|
|
826
|
+
}
|
|
555
827
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
556
828
|
name: string;
|
|
557
829
|
family: CoinFamily;
|
|
@@ -586,9 +858,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
586
858
|
family: CoinFamily;
|
|
587
859
|
explorerUrl: undefined;
|
|
588
860
|
}
|
|
861
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
862
|
+
name: string;
|
|
863
|
+
family: CoinFamily;
|
|
864
|
+
explorerUrl: string;
|
|
865
|
+
}
|
|
866
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
867
|
+
name: string;
|
|
868
|
+
family: CoinFamily;
|
|
869
|
+
explorerUrl: string;
|
|
870
|
+
specName: SubstrateSpecNameType;
|
|
871
|
+
genesisHash: string;
|
|
872
|
+
specVersion: number;
|
|
873
|
+
chainName: string;
|
|
874
|
+
txVersion: number;
|
|
875
|
+
}
|
|
589
876
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
590
877
|
name: string;
|
|
591
878
|
family: CoinFamily;
|
|
879
|
+
accountExplorerUrl: string;
|
|
592
880
|
explorerUrl: string;
|
|
593
881
|
maxFeeLimit: string;
|
|
594
882
|
contractCallFeeLimit: string;
|
|
@@ -596,6 +884,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
596
884
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
597
885
|
name: string;
|
|
598
886
|
family: CoinFamily;
|
|
887
|
+
accountExplorerUrl: string;
|
|
599
888
|
explorerUrl: string;
|
|
600
889
|
maxFeeLimit: string;
|
|
601
890
|
contractCallFeeLimit: string;
|
|
@@ -614,11 +903,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
|
|
|
614
903
|
name: string;
|
|
615
904
|
family: CoinFamily;
|
|
616
905
|
explorerUrl: string;
|
|
906
|
+
accountExplorerUrl: string;
|
|
617
907
|
}
|
|
618
908
|
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
619
909
|
name: string;
|
|
620
910
|
family: CoinFamily;
|
|
621
911
|
explorerUrl: string;
|
|
912
|
+
accountExplorerUrl: string;
|
|
622
913
|
}
|
|
623
914
|
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
624
915
|
name: string;
|
|
@@ -657,6 +948,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
657
948
|
walletFactoryAddress: string;
|
|
658
949
|
walletImplementationAddress: string;
|
|
659
950
|
batcherContractAddress: string;
|
|
951
|
+
nativeCoinOperationHashPrefix: string;
|
|
952
|
+
tokenOperationHashPrefix: string;
|
|
660
953
|
}
|
|
661
954
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
662
955
|
name: string;
|
|
@@ -669,22 +962,510 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
669
962
|
walletFactoryAddress: string;
|
|
670
963
|
walletImplementationAddress: string;
|
|
671
964
|
batcherContractAddress: string;
|
|
965
|
+
nativeCoinOperationHashPrefix: string;
|
|
966
|
+
tokenOperationHashPrefix: string;
|
|
967
|
+
}
|
|
968
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
969
|
+
name: string;
|
|
970
|
+
family: CoinFamily;
|
|
971
|
+
explorerUrl: string;
|
|
972
|
+
accountExplorerUrl: string;
|
|
973
|
+
chainId: number;
|
|
974
|
+
nativeCoinOperationHashPrefix: string;
|
|
975
|
+
tokenOperationHashPrefix: string;
|
|
976
|
+
forwarderFactoryAddress: string;
|
|
977
|
+
forwarderImplementationAddress: string;
|
|
978
|
+
walletFactoryAddress: string;
|
|
979
|
+
walletImplementationAddress: string;
|
|
980
|
+
batcherContractAddress: string;
|
|
981
|
+
}
|
|
982
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
983
|
+
name: string;
|
|
984
|
+
family: CoinFamily;
|
|
985
|
+
explorerUrl: string;
|
|
986
|
+
accountExplorerUrl: string;
|
|
987
|
+
chainId: number;
|
|
988
|
+
nativeCoinOperationHashPrefix: string;
|
|
989
|
+
tokenOperationHashPrefix: string;
|
|
990
|
+
forwarderFactoryAddress: string;
|
|
991
|
+
forwarderImplementationAddress: string;
|
|
992
|
+
walletFactoryAddress: string;
|
|
993
|
+
walletImplementationAddress: string;
|
|
994
|
+
batcherContractAddress: string;
|
|
995
|
+
}
|
|
996
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
997
|
+
name: string;
|
|
998
|
+
family: CoinFamily;
|
|
999
|
+
explorerUrl: string;
|
|
1000
|
+
accountExplorerUrl: string;
|
|
1001
|
+
chainId: number;
|
|
1002
|
+
nativeCoinOperationHashPrefix: string;
|
|
1003
|
+
tokenOperationHashPrefix: string;
|
|
1004
|
+
}
|
|
1005
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
1006
|
+
name: string;
|
|
1007
|
+
family: CoinFamily;
|
|
1008
|
+
explorerUrl: string;
|
|
1009
|
+
accountExplorerUrl: string;
|
|
1010
|
+
chainId: number;
|
|
1011
|
+
nativeCoinOperationHashPrefix: string;
|
|
1012
|
+
tokenOperationHashPrefix: string;
|
|
1013
|
+
forwarderFactoryAddress: string;
|
|
1014
|
+
forwarderImplementationAddress: string;
|
|
1015
|
+
walletFactoryAddress: string;
|
|
1016
|
+
walletImplementationAddress: string;
|
|
1017
|
+
}
|
|
1018
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
1019
|
+
name: string;
|
|
1020
|
+
family: CoinFamily;
|
|
1021
|
+
explorerUrl: string;
|
|
1022
|
+
accountExplorerUrl: string;
|
|
1023
|
+
chainId: number;
|
|
1024
|
+
nativeCoinOperationHashPrefix: string;
|
|
1025
|
+
tokenOperationHashPrefix: string;
|
|
1026
|
+
batcherContractAddress: string;
|
|
1027
|
+
forwarderFactoryAddress: string;
|
|
1028
|
+
forwarderImplementationAddress: string;
|
|
1029
|
+
}
|
|
1030
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
1031
|
+
name: string;
|
|
1032
|
+
family: CoinFamily;
|
|
1033
|
+
explorerUrl: string;
|
|
1034
|
+
accountExplorerUrl: string;
|
|
1035
|
+
chainId: number;
|
|
1036
|
+
nativeCoinOperationHashPrefix: string;
|
|
1037
|
+
tokenOperationHashPrefix: string;
|
|
1038
|
+
batcherContractAddress: string;
|
|
1039
|
+
forwarderFactoryAddress: string;
|
|
1040
|
+
forwarderImplementationAddress: string;
|
|
1041
|
+
}
|
|
1042
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
1043
|
+
name: string;
|
|
1044
|
+
family: CoinFamily;
|
|
1045
|
+
explorerUrl: string;
|
|
1046
|
+
accountExplorerUrl: string;
|
|
1047
|
+
chainId: number;
|
|
1048
|
+
nativeCoinOperationHashPrefix: string;
|
|
1049
|
+
batcherContractAddress: string;
|
|
1050
|
+
forwarderFactoryAddress: string;
|
|
1051
|
+
forwarderImplementationAddress: string;
|
|
1052
|
+
}
|
|
1053
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
1054
|
+
name: string;
|
|
1055
|
+
family: CoinFamily;
|
|
1056
|
+
explorerUrl: string;
|
|
1057
|
+
accountExplorerUrl: string;
|
|
1058
|
+
chainId: number;
|
|
1059
|
+
nativeCoinOperationHashPrefix: string;
|
|
1060
|
+
batcherContractAddress: string;
|
|
1061
|
+
forwarderFactoryAddress: string;
|
|
1062
|
+
forwarderImplementationAddress: string;
|
|
1063
|
+
}
|
|
1064
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
1065
|
+
name: string;
|
|
1066
|
+
family: CoinFamily;
|
|
1067
|
+
explorerUrl: string;
|
|
1068
|
+
accountExplorerUrl: string;
|
|
1069
|
+
chainId: number;
|
|
1070
|
+
nativeCoinOperationHashPrefix: string;
|
|
1071
|
+
batcherContractAddress: string;
|
|
1072
|
+
forwarderFactoryAddress: string;
|
|
1073
|
+
forwarderImplementationAddress: string;
|
|
1074
|
+
}
|
|
1075
|
+
declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
1076
|
+
name: string;
|
|
1077
|
+
family: CoinFamily;
|
|
1078
|
+
explorerUrl: string;
|
|
1079
|
+
accountExplorerUrl: string;
|
|
1080
|
+
chainId: number;
|
|
1081
|
+
nativeCoinOperationHashPrefix: string;
|
|
1082
|
+
batcherContractAddress: string;
|
|
1083
|
+
forwarderFactoryAddress: string;
|
|
1084
|
+
forwarderImplementationAddress: string;
|
|
1085
|
+
}
|
|
1086
|
+
declare class ApeChain extends Mainnet implements EthereumNetwork {
|
|
1087
|
+
name: string;
|
|
1088
|
+
family: CoinFamily;
|
|
1089
|
+
explorerUrl: string;
|
|
1090
|
+
accountExplorerUrl: string;
|
|
1091
|
+
chainId: number;
|
|
1092
|
+
nativeCoinOperationHashPrefix: string;
|
|
1093
|
+
}
|
|
1094
|
+
declare class ApeChainTestnet extends Testnet implements EthereumNetwork {
|
|
1095
|
+
name: string;
|
|
1096
|
+
family: CoinFamily;
|
|
1097
|
+
explorerUrl: string;
|
|
1098
|
+
accountExplorerUrl: string;
|
|
1099
|
+
chainId: number;
|
|
1100
|
+
nativeCoinOperationHashPrefix: string;
|
|
1101
|
+
}
|
|
1102
|
+
declare class Pharos extends Mainnet implements EthereumNetwork {
|
|
1103
|
+
name: string;
|
|
1104
|
+
family: CoinFamily;
|
|
1105
|
+
explorerUrl: string;
|
|
1106
|
+
accountExplorerUrl: string;
|
|
1107
|
+
chainId: number;
|
|
1108
|
+
nativeCoinOperationHashPrefix: string;
|
|
1109
|
+
}
|
|
1110
|
+
declare class PharosTestnet extends Testnet implements EthereumNetwork {
|
|
1111
|
+
name: string;
|
|
1112
|
+
family: CoinFamily;
|
|
1113
|
+
explorerUrl: string;
|
|
1114
|
+
accountExplorerUrl: string;
|
|
1115
|
+
chainId: number;
|
|
1116
|
+
nativeCoinOperationHashPrefix: string;
|
|
1117
|
+
}
|
|
1118
|
+
declare class Creditcoin extends Mainnet implements EthereumNetwork {
|
|
1119
|
+
name: string;
|
|
1120
|
+
family: CoinFamily;
|
|
1121
|
+
explorerUrl: string;
|
|
1122
|
+
accountExplorerUrl: string;
|
|
1123
|
+
chainId: number;
|
|
1124
|
+
nativeCoinOperationHashPrefix: string;
|
|
1125
|
+
}
|
|
1126
|
+
declare class HypeEVMTestnet extends Testnet implements EthereumNetwork {
|
|
1127
|
+
name: string;
|
|
1128
|
+
family: CoinFamily;
|
|
1129
|
+
explorerUrl: string;
|
|
1130
|
+
accountExplorerUrl: string;
|
|
1131
|
+
chainId: number;
|
|
1132
|
+
nativeCoinOperationHashPrefix: string;
|
|
1133
|
+
}
|
|
1134
|
+
declare class HypeEVM extends Mainnet implements EthereumNetwork {
|
|
1135
|
+
name: string;
|
|
1136
|
+
family: CoinFamily;
|
|
1137
|
+
explorerUrl: string;
|
|
1138
|
+
accountExplorerUrl: string;
|
|
1139
|
+
chainId: number;
|
|
1140
|
+
nativeCoinOperationHashPrefix: string;
|
|
1141
|
+
}
|
|
1142
|
+
declare class CreditcoinTestnet extends Testnet implements EthereumNetwork {
|
|
1143
|
+
name: string;
|
|
1144
|
+
family: CoinFamily;
|
|
1145
|
+
explorerUrl: string;
|
|
1146
|
+
accountExplorerUrl: string;
|
|
1147
|
+
chainId: number;
|
|
1148
|
+
nativeCoinOperationHashPrefix: string;
|
|
1149
|
+
}
|
|
1150
|
+
declare class Sonic extends Mainnet implements EthereumNetwork {
|
|
1151
|
+
name: string;
|
|
1152
|
+
family: CoinFamily;
|
|
1153
|
+
explorerUrl: string;
|
|
1154
|
+
accountExplorerUrl: string;
|
|
1155
|
+
chainId: number;
|
|
1156
|
+
nativeCoinOperationHashPrefix: string;
|
|
1157
|
+
}
|
|
1158
|
+
declare class SonicTestnet extends Testnet implements EthereumNetwork {
|
|
1159
|
+
name: string;
|
|
1160
|
+
family: CoinFamily;
|
|
1161
|
+
explorerUrl: string;
|
|
1162
|
+
accountExplorerUrl: string;
|
|
1163
|
+
chainId: number;
|
|
1164
|
+
nativeCoinOperationHashPrefix: string;
|
|
1165
|
+
}
|
|
1166
|
+
declare class Kaia extends Mainnet implements EthereumNetwork {
|
|
1167
|
+
name: string;
|
|
1168
|
+
family: CoinFamily;
|
|
1169
|
+
explorerUrl: string;
|
|
1170
|
+
accountExplorerUrl: string;
|
|
1171
|
+
chainId: number;
|
|
1172
|
+
nativeCoinOperationHashPrefix: string;
|
|
1173
|
+
}
|
|
1174
|
+
declare class KaiaTestnet extends Testnet implements EthereumNetwork {
|
|
1175
|
+
name: string;
|
|
1176
|
+
family: CoinFamily;
|
|
1177
|
+
explorerUrl: string;
|
|
1178
|
+
accountExplorerUrl: string;
|
|
1179
|
+
chainId: number;
|
|
1180
|
+
nativeCoinOperationHashPrefix: string;
|
|
1181
|
+
}
|
|
1182
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1183
|
+
name: string;
|
|
1184
|
+
family: CoinFamily;
|
|
1185
|
+
explorerUrl: string;
|
|
1186
|
+
accountExplorerUrl: string;
|
|
1187
|
+
chainId: number;
|
|
1188
|
+
nativeCoinOperationHashPrefix: string;
|
|
1189
|
+
batcherContractAddress: string;
|
|
1190
|
+
forwarderFactoryAddress: string;
|
|
1191
|
+
forwarderImplementationAddress: string;
|
|
1192
|
+
}
|
|
1193
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1194
|
+
name: string;
|
|
1195
|
+
family: CoinFamily;
|
|
1196
|
+
explorerUrl: string;
|
|
1197
|
+
accountExplorerUrl: string;
|
|
1198
|
+
chainId: number;
|
|
1199
|
+
nativeCoinOperationHashPrefix: string;
|
|
1200
|
+
batcherContractAddress: string;
|
|
1201
|
+
forwarderFactoryAddress: string;
|
|
1202
|
+
forwarderImplementationAddress: string;
|
|
1203
|
+
}
|
|
1204
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1205
|
+
name: string;
|
|
1206
|
+
family: CoinFamily;
|
|
1207
|
+
explorerUrl: string;
|
|
1208
|
+
accountExplorerUrl: string;
|
|
1209
|
+
chainId: number;
|
|
1210
|
+
nativeCoinOperationHashPrefix: string;
|
|
1211
|
+
batcherContractAddress: string;
|
|
1212
|
+
forwarderFactoryAddress: string;
|
|
1213
|
+
forwarderImplementationAddress: string;
|
|
1214
|
+
}
|
|
1215
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1216
|
+
name: string;
|
|
1217
|
+
family: CoinFamily;
|
|
1218
|
+
explorerUrl: string;
|
|
1219
|
+
accountExplorerUrl: string;
|
|
1220
|
+
chainId: number;
|
|
1221
|
+
nativeCoinOperationHashPrefix: string;
|
|
1222
|
+
batcherContractAddress: string;
|
|
1223
|
+
forwarderFactoryAddress: string;
|
|
1224
|
+
forwarderImplementationAddress: string;
|
|
1225
|
+
}
|
|
1226
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1227
|
+
name: string;
|
|
1228
|
+
family: CoinFamily;
|
|
1229
|
+
explorerUrl: string;
|
|
1230
|
+
accountExplorerUrl: string;
|
|
1231
|
+
chainId: number;
|
|
1232
|
+
nativeCoinOperationHashPrefix: string;
|
|
1233
|
+
walletFactoryAddress: string;
|
|
1234
|
+
batcherContractAddress: string;
|
|
1235
|
+
forwarderFactoryAddress: string;
|
|
1236
|
+
forwarderImplementationAddress: string;
|
|
1237
|
+
walletImplementationAddress: string;
|
|
1238
|
+
}
|
|
1239
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1240
|
+
name: string;
|
|
1241
|
+
family: CoinFamily;
|
|
1242
|
+
explorerUrl: string;
|
|
1243
|
+
chainId: number;
|
|
1244
|
+
nativeCoinOperationHashPrefix: string;
|
|
1245
|
+
walletImplementationAddress: string;
|
|
1246
|
+
batcherContractAddress: string;
|
|
1247
|
+
forwarderFactoryAddress: string;
|
|
1248
|
+
forwarderImplementationAddress: string;
|
|
1249
|
+
}
|
|
1250
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1251
|
+
name: string;
|
|
1252
|
+
family: CoinFamily;
|
|
1253
|
+
explorerUrl: string;
|
|
1254
|
+
accountExplorerUrl: string;
|
|
1255
|
+
chainId: number;
|
|
1256
|
+
nativeCoinOperationHashPrefix: string;
|
|
1257
|
+
walletImplementationAddress: string;
|
|
1258
|
+
batcherContractAddress: string;
|
|
1259
|
+
forwarderFactoryAddress: string;
|
|
1260
|
+
forwarderImplementationAddress: string;
|
|
1261
|
+
}
|
|
1262
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1263
|
+
name: string;
|
|
1264
|
+
family: CoinFamily;
|
|
1265
|
+
explorerUrl: string;
|
|
1266
|
+
accountExplorerUrl: string;
|
|
1267
|
+
chainId: number;
|
|
1268
|
+
nativeCoinOperationHashPrefix: string;
|
|
1269
|
+
batcherContractAddress: string;
|
|
1270
|
+
forwarderFactoryAddress: string;
|
|
1271
|
+
forwarderImplementationAddress: string;
|
|
1272
|
+
walletImplementationAddress: string;
|
|
1273
|
+
}
|
|
1274
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1275
|
+
name: string;
|
|
1276
|
+
family: CoinFamily;
|
|
1277
|
+
explorerUrl: string;
|
|
1278
|
+
accountExplorerUrl: string;
|
|
1279
|
+
chainId: number;
|
|
1280
|
+
nativeCoinOperationHashPrefix: string;
|
|
1281
|
+
walletImplementationAddress: string;
|
|
1282
|
+
walletFactoryAddress: string;
|
|
1283
|
+
batcherContractAddress: string;
|
|
1284
|
+
forwarderFactoryAddress: string;
|
|
1285
|
+
forwarderImplementationAddress: string;
|
|
1286
|
+
}
|
|
1287
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1288
|
+
name: string;
|
|
1289
|
+
family: CoinFamily;
|
|
1290
|
+
explorerUrl: string;
|
|
1291
|
+
accountExplorerUrl: string;
|
|
1292
|
+
chainId: number;
|
|
1293
|
+
nativeCoinOperationHashPrefix: string;
|
|
1294
|
+
walletFactoryAddress: string;
|
|
1295
|
+
batcherContractAddress: string;
|
|
1296
|
+
forwarderFactoryAddress: string;
|
|
1297
|
+
forwarderImplementationAddress: string;
|
|
1298
|
+
walletImplementationAddress: string;
|
|
1299
|
+
}
|
|
1300
|
+
declare class SeiEvm extends Mainnet implements EthereumNetwork {
|
|
1301
|
+
name: string;
|
|
1302
|
+
family: CoinFamily;
|
|
1303
|
+
explorerUrl: string;
|
|
1304
|
+
accountExplorerUrl: string;
|
|
1305
|
+
chainId: number;
|
|
1306
|
+
nativeCoinOperationHashPrefix: string;
|
|
1307
|
+
}
|
|
1308
|
+
declare class SeiEvmTestnet extends Testnet implements EthereumNetwork {
|
|
1309
|
+
name: string;
|
|
1310
|
+
family: CoinFamily;
|
|
1311
|
+
explorerUrl: string;
|
|
1312
|
+
accountExplorerUrl: string;
|
|
1313
|
+
chainId: number;
|
|
1314
|
+
nativeCoinOperationHashPrefix: string;
|
|
1315
|
+
}
|
|
1316
|
+
declare class Somnia extends Mainnet implements EthereumNetwork {
|
|
1317
|
+
name: string;
|
|
1318
|
+
family: CoinFamily;
|
|
1319
|
+
explorerUrl: string;
|
|
1320
|
+
chainId: number;
|
|
1321
|
+
nativeCoinOperationHashPrefix: string;
|
|
1322
|
+
}
|
|
1323
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
1324
|
+
name: string;
|
|
1325
|
+
family: CoinFamily;
|
|
1326
|
+
explorerUrl: string;
|
|
1327
|
+
accountExplorerUrl: string;
|
|
1328
|
+
chainId: number;
|
|
1329
|
+
nativeCoinOperationHashPrefix: string;
|
|
1330
|
+
walletFactoryAddress: string;
|
|
1331
|
+
batcherContractAddress: string;
|
|
1332
|
+
forwarderFactoryAddress: string;
|
|
1333
|
+
forwarderImplementationAddress: string;
|
|
1334
|
+
walletImplementationAddress: string;
|
|
1335
|
+
}
|
|
1336
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1337
|
+
name: string;
|
|
1338
|
+
family: CoinFamily;
|
|
1339
|
+
explorerUrl: string;
|
|
1340
|
+
accountExplorerUrl: string;
|
|
1341
|
+
chainId: number;
|
|
1342
|
+
nativeCoinOperationHashPrefix: string;
|
|
1343
|
+
batcherContractAddress: string;
|
|
1344
|
+
forwarderFactoryAddress: string;
|
|
1345
|
+
forwarderImplementationAddress: string;
|
|
1346
|
+
}
|
|
1347
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1348
|
+
name: string;
|
|
1349
|
+
family: CoinFamily;
|
|
1350
|
+
explorerUrl: string;
|
|
1351
|
+
accountExplorerUrl: string;
|
|
1352
|
+
chainId: number;
|
|
1353
|
+
nativeCoinOperationHashPrefix: string;
|
|
1354
|
+
batcherContractAddress: string;
|
|
1355
|
+
forwarderFactoryAddress: string;
|
|
1356
|
+
forwarderImplementationAddress: string;
|
|
1357
|
+
}
|
|
1358
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1359
|
+
name: string;
|
|
1360
|
+
family: CoinFamily;
|
|
1361
|
+
explorerUrl: string;
|
|
1362
|
+
accountExplorerUrl: string;
|
|
1363
|
+
chainId: number;
|
|
1364
|
+
nativeCoinOperationHashPrefix: string;
|
|
1365
|
+
batcherContractAddress: string;
|
|
1366
|
+
forwarderFactoryAddress: string;
|
|
1367
|
+
forwarderImplementationAddress: string;
|
|
1368
|
+
}
|
|
1369
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1370
|
+
name: string;
|
|
1371
|
+
family: CoinFamily;
|
|
1372
|
+
explorerUrl: string;
|
|
1373
|
+
accountExplorerUrl: string;
|
|
1374
|
+
chainId: number;
|
|
1375
|
+
nativeCoinOperationHashPrefix: string;
|
|
1376
|
+
batcherContractAddress: string;
|
|
1377
|
+
forwarderFactoryAddress: string;
|
|
1378
|
+
forwarderImplementationAddress: string;
|
|
1379
|
+
}
|
|
1380
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1381
|
+
name: string;
|
|
1382
|
+
family: CoinFamily;
|
|
1383
|
+
explorerUrl: string;
|
|
1384
|
+
accountExplorerUrl: string;
|
|
1385
|
+
chainId: number;
|
|
1386
|
+
nativeCoinOperationHashPrefix: string;
|
|
1387
|
+
tokenOperationHashPrefix: string;
|
|
1388
|
+
forwarderFactoryAddress: string;
|
|
1389
|
+
forwarderImplementationAddress: string;
|
|
1390
|
+
walletFactoryAddress: string;
|
|
1391
|
+
walletImplementationAddress: string;
|
|
1392
|
+
}
|
|
1393
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1394
|
+
name: string;
|
|
1395
|
+
family: CoinFamily;
|
|
1396
|
+
explorerUrl: string;
|
|
1397
|
+
accountExplorerUrl: string;
|
|
1398
|
+
chainId: number;
|
|
1399
|
+
nativeCoinOperationHashPrefix: string;
|
|
1400
|
+
tokenOperationHashPrefix: string;
|
|
1401
|
+
forwarderFactoryAddress: string;
|
|
1402
|
+
forwarderImplementationAddress: string;
|
|
1403
|
+
walletFactoryAddress: string;
|
|
1404
|
+
walletImplementationAddress: string;
|
|
1405
|
+
}
|
|
1406
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1407
|
+
name: string;
|
|
1408
|
+
family: CoinFamily;
|
|
1409
|
+
explorerUrl: string;
|
|
1410
|
+
specName: string;
|
|
1411
|
+
genesisHash: string;
|
|
1412
|
+
specVersion: number;
|
|
1413
|
+
chainName: string;
|
|
1414
|
+
txVersion: number;
|
|
1415
|
+
}
|
|
1416
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1417
|
+
name: string;
|
|
1418
|
+
family: CoinFamily;
|
|
1419
|
+
explorerUrl: string;
|
|
1420
|
+
specName: SubstrateSpecNameType;
|
|
1421
|
+
genesisHash: string;
|
|
1422
|
+
specVersion: number;
|
|
1423
|
+
chainName: string;
|
|
1424
|
+
txVersion: number;
|
|
1425
|
+
}
|
|
1426
|
+
declare class Vet extends Mainnet implements EthereumNetwork {
|
|
1427
|
+
name: string;
|
|
1428
|
+
family: CoinFamily;
|
|
1429
|
+
explorerUrl: string;
|
|
1430
|
+
accountExplorerUrl: string;
|
|
1431
|
+
chainId: number;
|
|
1432
|
+
forwarderFactoryAddress: string;
|
|
1433
|
+
forwarderImplementationAddress: string;
|
|
1434
|
+
}
|
|
1435
|
+
declare class VetTestnet extends Testnet implements EthereumNetwork {
|
|
1436
|
+
name: string;
|
|
1437
|
+
family: CoinFamily;
|
|
1438
|
+
explorerUrl: string;
|
|
1439
|
+
accountExplorerUrl: string;
|
|
1440
|
+
chainId: number;
|
|
1441
|
+
forwarderFactoryAddress: string;
|
|
1442
|
+
forwarderImplementationAddress: string;
|
|
672
1443
|
}
|
|
673
1444
|
export declare const Networks: {
|
|
674
1445
|
main: {
|
|
675
1446
|
ada: Readonly<Ada>;
|
|
676
1447
|
algorand: Readonly<Algorand>;
|
|
1448
|
+
apechain: Readonly<ApeChain>;
|
|
1449
|
+
apt: Readonly<Apt>;
|
|
1450
|
+
arbitrum: Readonly<Arbitrum>;
|
|
1451
|
+
asi: Readonly<Asi>;
|
|
677
1452
|
atom: Readonly<Atom>;
|
|
678
1453
|
avalancheC: Readonly<AvalancheC>;
|
|
679
1454
|
avalancheP: Readonly<AvalancheP>;
|
|
1455
|
+
baby: Readonly<Baby>;
|
|
1456
|
+
basechain: Readonly<BaseChain>;
|
|
680
1457
|
bitcoin: Readonly<Bitcoin>;
|
|
681
1458
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
682
1459
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
683
1460
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1461
|
+
bera: Readonly<Berachain>;
|
|
684
1462
|
bld: Readonly<Bld>;
|
|
685
1463
|
bsc: Readonly<BinanceSmartChain>;
|
|
686
1464
|
casper: Readonly<Casper>;
|
|
687
1465
|
celo: Readonly<Celo>;
|
|
1466
|
+
coredao: Readonly<Coredao>;
|
|
1467
|
+
coreum: Readonly<Coreum>;
|
|
1468
|
+
cronos: Readonly<Cronos>;
|
|
688
1469
|
dash: Readonly<Dash>;
|
|
689
1470
|
dogecoin: Readonly<Dogecoin>;
|
|
690
1471
|
dot: Readonly<Polkadot>;
|
|
@@ -695,73 +1476,145 @@ export declare const Networks: {
|
|
|
695
1476
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
696
1477
|
ethereumW: Readonly<EthereumW>;
|
|
697
1478
|
fiat: Readonly<Fiat>;
|
|
1479
|
+
fetchai: Readonly<FetchAi>;
|
|
1480
|
+
flr: Readonly<Flare>;
|
|
698
1481
|
hash: Readonly<Hash>;
|
|
699
1482
|
hedera: Readonly<Hedera>;
|
|
1483
|
+
icp: Readonly<Icp>;
|
|
1484
|
+
initia: Readonly<Initia>;
|
|
700
1485
|
injective: Readonly<Injective>;
|
|
1486
|
+
islm: Readonly<Islm>;
|
|
1487
|
+
kaia: Readonly<Kaia>;
|
|
1488
|
+
kava: Readonly<Kava>;
|
|
1489
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
701
1490
|
litecoin: Readonly<Litecoin>;
|
|
1491
|
+
mon: Readonly<Monad>;
|
|
1492
|
+
mantra: Readonly<Mantra>;
|
|
702
1493
|
polygon: Readonly<Polygon>;
|
|
1494
|
+
polyx: Readonly<Polymesh>;
|
|
1495
|
+
phrs: Readonly<Pharos>;
|
|
1496
|
+
ctc: Readonly<Creditcoin>;
|
|
1497
|
+
hypeevm: Readonly<HypeEVM>;
|
|
1498
|
+
oas: Readonly<Oas>;
|
|
703
1499
|
ofc: Readonly<Ofc>;
|
|
1500
|
+
optimism: Readonly<Optimism>;
|
|
704
1501
|
osmo: Readonly<Osmo>;
|
|
705
1502
|
rbtc: Readonly<Rbtc>;
|
|
1503
|
+
rune: Readonly<Rune>;
|
|
706
1504
|
stellar: Readonly<Stellar>;
|
|
707
1505
|
sei: Readonly<Sei>;
|
|
1506
|
+
seievm: Readonly<SeiEvm>;
|
|
1507
|
+
sgb: Readonly<Songbird>;
|
|
708
1508
|
sol: Readonly<Sol>;
|
|
1509
|
+
sonic: Readonly<Sonic>;
|
|
709
1510
|
sui: Readonly<Sui>;
|
|
710
1511
|
near: Readonly<Near>;
|
|
711
1512
|
stx: Readonly<Stx>;
|
|
1513
|
+
stt: Readonly<Somnia>;
|
|
1514
|
+
soneium: Readonly<Soneium>;
|
|
712
1515
|
susd: Readonly<SUSD>;
|
|
1516
|
+
tao: Readonly<Bittensor>;
|
|
713
1517
|
tia: Readonly<Tia>;
|
|
1518
|
+
ton: Readonly<Ton>;
|
|
714
1519
|
trx: Readonly<Trx>;
|
|
1520
|
+
vet: Readonly<Vet>;
|
|
1521
|
+
wemix: Readonly<Wemix>;
|
|
1522
|
+
world: Readonly<World>;
|
|
1523
|
+
xdc: Readonly<Xdc>;
|
|
715
1524
|
xrp: Readonly<Xrp>;
|
|
716
1525
|
xtz: Readonly<Xtz>;
|
|
717
1526
|
zCash: Readonly<ZCash>;
|
|
718
1527
|
zeta: Readonly<Zeta>;
|
|
1528
|
+
zkSync: Readonly<ZkSync>;
|
|
719
1529
|
};
|
|
720
1530
|
test: {
|
|
721
1531
|
ada: Readonly<AdaTestnet>;
|
|
722
1532
|
algorand: Readonly<AlgorandTestnet>;
|
|
1533
|
+
apechain: Readonly<ApeChainTestnet>;
|
|
1534
|
+
apt: Readonly<AptTestnet>;
|
|
1535
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
1536
|
+
asi: Readonly<AsiTestnet>;
|
|
723
1537
|
atom: Readonly<AtomTestnet>;
|
|
724
1538
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
725
1539
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1540
|
+
baby: Readonly<BabyTestnet>;
|
|
1541
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
726
1542
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1543
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1544
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1545
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
727
1546
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
728
1547
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
729
1548
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1549
|
+
bera: Readonly<BerachainTestnet>;
|
|
730
1550
|
bld: Readonly<BldTestnet>;
|
|
731
1551
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
732
1552
|
casper: Readonly<CasperTestnet>;
|
|
1553
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
733
1554
|
celo: Readonly<CeloTestnet>;
|
|
1555
|
+
cronos: Readonly<CronosTestnet>;
|
|
734
1556
|
dash: Readonly<DashTestnet>;
|
|
735
1557
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
736
1558
|
dot: Readonly<PolkadotTestnet>;
|
|
737
1559
|
eCash: Readonly<ECashTestnet>;
|
|
738
1560
|
eos: Readonly<EosTestnet>;
|
|
739
1561
|
fiat: Readonly<FiatTestnet>;
|
|
1562
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
1563
|
+
flr: Readonly<FlareTestnet>;
|
|
1564
|
+
mon: Readonly<MonadTestnet>;
|
|
740
1565
|
pyrmont: Readonly<Pyrmont>;
|
|
741
1566
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
742
1567
|
hash: Readonly<HashTestnet>;
|
|
743
1568
|
hedera: Readonly<HederaTestnet>;
|
|
1569
|
+
icp: Readonly<IcpTestnet>;
|
|
1570
|
+
initia: Readonly<InitiaTestnet>;
|
|
744
1571
|
injective: Readonly<InjectiveTestnet>;
|
|
1572
|
+
islm: Readonly<IslmTestnet>;
|
|
1573
|
+
kava: Readonly<KavaTestnet>;
|
|
745
1574
|
kovan: Readonly<Kovan>;
|
|
746
1575
|
goerli: Readonly<Goerli>;
|
|
1576
|
+
holesky: Readonly<Holesky>;
|
|
1577
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
747
1578
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1579
|
+
mantra: Readonly<MantraTestnet>;
|
|
748
1580
|
polygon: Readonly<PolygonTestnet>;
|
|
1581
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1582
|
+
phrs: Readonly<PharosTestnet>;
|
|
1583
|
+
ctc: Readonly<CreditcoinTestnet>;
|
|
1584
|
+
hypeevm: Readonly<HypeEVMTestnet>;
|
|
1585
|
+
oas: Readonly<OasTestnet>;
|
|
749
1586
|
ofc: Readonly<OfcTestnet>;
|
|
1587
|
+
optimism: Readonly<OptimismTestnet>;
|
|
750
1588
|
osmo: Readonly<OsmoTestnet>;
|
|
751
1589
|
rbtc: Readonly<RbtcTestnet>;
|
|
1590
|
+
rune: Readonly<RuneTestNet>;
|
|
1591
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
752
1592
|
stellar: Readonly<StellarTestnet>;
|
|
753
1593
|
sei: Readonly<SeiTestnet>;
|
|
1594
|
+
seievm: Readonly<SeiEvmTestnet>;
|
|
754
1595
|
sol: Readonly<SolTestnet>;
|
|
755
1596
|
sui: Readonly<SuiTestnet>;
|
|
756
1597
|
near: Readonly<NearTestnet>;
|
|
757
1598
|
stx: Readonly<StxTestnet>;
|
|
1599
|
+
stt: Readonly<SomniaTestnet>;
|
|
1600
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
1601
|
+
sonic: Readonly<SonicTestnet>;
|
|
1602
|
+
kaia: Readonly<KaiaTestnet>;
|
|
758
1603
|
susd: Readonly<SUSDTestnet>;
|
|
1604
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1605
|
+
tao: Readonly<BittensorTestnet>;
|
|
759
1606
|
tia: Readonly<TiaTestnet>;
|
|
1607
|
+
ton: Readonly<TonTestnet>;
|
|
760
1608
|
trx: Readonly<TrxTestnet>;
|
|
1609
|
+
vet: Readonly<VetTestnet>;
|
|
1610
|
+
wemix: Readonly<WemixTestnet>;
|
|
1611
|
+
world: Readonly<WorldTestnet>;
|
|
1612
|
+
xdc: Readonly<XdcTestnet>;
|
|
761
1613
|
xrp: Readonly<XrpTestnet>;
|
|
762
1614
|
xtz: Readonly<XtzTestnet>;
|
|
763
1615
|
zCash: Readonly<ZCashTestnet>;
|
|
764
1616
|
zeta: Readonly<ZetaTestnet>;
|
|
1617
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
765
1618
|
};
|
|
766
1619
|
};
|
|
767
1620
|
export {};
|