@bitgo-beta/statics 15.1.1-beta.99 → 15.1.1-beta.991
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 +2920 -0
- package/dist/src/account.d.ts +583 -31
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +960 -127
- 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 +1510 -40
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1568 -50
- package/dist/src/coinFeatures.d.ts +87 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +560 -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 +97 -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 +1451 -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 +566 -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 +1338 -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 +362 -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 +679 -1511
- 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 +728 -1
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +956 -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,6 +59,7 @@ 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;
|
|
@@ -48,7 +68,8 @@ export interface AccountNetwork extends BaseNetwork {
|
|
|
48
68
|
/**
|
|
49
69
|
* Specification name type of the chain. Used in setting up the registry
|
|
50
70
|
*/
|
|
51
|
-
export
|
|
71
|
+
export type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine';
|
|
72
|
+
export type SubstrateSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor' | 'polymesh_testnet';
|
|
52
73
|
export interface DotNetwork extends AccountNetwork {
|
|
53
74
|
readonly specName: PolkadotSpecNameType;
|
|
54
75
|
readonly genesisHash: string;
|
|
@@ -61,6 +82,8 @@ export interface EthereumNetwork extends AccountNetwork {
|
|
|
61
82
|
readonly batcherContractAddress?: string;
|
|
62
83
|
readonly forwarderFactoryAddress?: string;
|
|
63
84
|
readonly forwarderImplementationAddress?: string;
|
|
85
|
+
readonly nativeCoinOperationHashPrefix?: string;
|
|
86
|
+
readonly tokenOperationHashPrefix?: string;
|
|
64
87
|
}
|
|
65
88
|
export interface TronNetwork extends AccountNetwork {
|
|
66
89
|
maxFeeLimit: string;
|
|
@@ -110,6 +133,60 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
|
|
|
110
133
|
poolDeposit: number;
|
|
111
134
|
stakeKeyDeposit: number;
|
|
112
135
|
}
|
|
136
|
+
declare class Apt extends Mainnet implements AccountNetwork {
|
|
137
|
+
name: string;
|
|
138
|
+
family: CoinFamily;
|
|
139
|
+
explorerUrl: string;
|
|
140
|
+
accountExplorerUrl: string;
|
|
141
|
+
blockExplorerUrl: string;
|
|
142
|
+
}
|
|
143
|
+
declare class AptTestnet extends Testnet implements AccountNetwork {
|
|
144
|
+
name: string;
|
|
145
|
+
family: CoinFamily;
|
|
146
|
+
explorerUrl: string;
|
|
147
|
+
accountExplorerUrl: string;
|
|
148
|
+
blockExplorerUrl: string;
|
|
149
|
+
}
|
|
150
|
+
declare class Icp extends Mainnet implements AccountNetwork {
|
|
151
|
+
name: string;
|
|
152
|
+
family: CoinFamily;
|
|
153
|
+
explorerUrl: string;
|
|
154
|
+
accountExplorerUrl: string;
|
|
155
|
+
}
|
|
156
|
+
declare class IcpTestnet extends Testnet implements AccountNetwork {
|
|
157
|
+
name: string;
|
|
158
|
+
family: CoinFamily;
|
|
159
|
+
explorerUrl: string;
|
|
160
|
+
accountExplorerUrl: string;
|
|
161
|
+
}
|
|
162
|
+
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
163
|
+
name: string;
|
|
164
|
+
family: CoinFamily;
|
|
165
|
+
explorerUrl: string;
|
|
166
|
+
accountExplorerUrl: string;
|
|
167
|
+
chainId: number;
|
|
168
|
+
nativeCoinOperationHashPrefix: string;
|
|
169
|
+
tokenOperationHashPrefix: string;
|
|
170
|
+
forwarderFactoryAddress: string;
|
|
171
|
+
forwarderImplementationAddress: string;
|
|
172
|
+
walletFactoryAddress: string;
|
|
173
|
+
walletImplementationAddress: string;
|
|
174
|
+
batcherContractAddress: string;
|
|
175
|
+
}
|
|
176
|
+
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
177
|
+
name: string;
|
|
178
|
+
family: CoinFamily;
|
|
179
|
+
explorerUrl: string;
|
|
180
|
+
accountExplorerUrl: string;
|
|
181
|
+
chainId: number;
|
|
182
|
+
nativeCoinOperationHashPrefix: string;
|
|
183
|
+
tokenOperationHashPrefix: string;
|
|
184
|
+
forwarderFactoryAddress: string;
|
|
185
|
+
forwarderImplementationAddress: string;
|
|
186
|
+
walletFactoryAddress: string;
|
|
187
|
+
walletImplementationAddress: string;
|
|
188
|
+
batcherContractAddress: string;
|
|
189
|
+
}
|
|
113
190
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
114
191
|
name: string;
|
|
115
192
|
family: CoinFamily;
|
|
@@ -137,6 +214,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
137
214
|
alias: string;
|
|
138
215
|
vm: string;
|
|
139
216
|
txFee: string;
|
|
217
|
+
maxImportFee: string;
|
|
140
218
|
createSubnetTx: string;
|
|
141
219
|
createChainTx: string;
|
|
142
220
|
creationTxFee: string;
|
|
@@ -162,6 +240,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
162
240
|
hrp: string;
|
|
163
241
|
vm: string;
|
|
164
242
|
txFee: string;
|
|
243
|
+
maxImportFee: string;
|
|
165
244
|
createSubnetTx: string;
|
|
166
245
|
createChainTx: string;
|
|
167
246
|
creationTxFee: string;
|
|
@@ -180,6 +259,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
180
259
|
explorerUrl: string;
|
|
181
260
|
accountExplorerUrl: string;
|
|
182
261
|
chainId: number;
|
|
262
|
+
nativeCoinOperationHashPrefix: string;
|
|
263
|
+
tokenOperationHashPrefix: string;
|
|
264
|
+
batcherContractAddress: string;
|
|
183
265
|
}
|
|
184
266
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
185
267
|
name: string;
|
|
@@ -187,6 +269,27 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
187
269
|
explorerUrl: string;
|
|
188
270
|
accountExplorerUrl: string;
|
|
189
271
|
chainId: number;
|
|
272
|
+
nativeCoinOperationHashPrefix: string;
|
|
273
|
+
tokenOperationHashPrefix: string;
|
|
274
|
+
batcherContractAddress: string;
|
|
275
|
+
}
|
|
276
|
+
declare class LightningBitcoin extends Mainnet implements LightningNetwork {
|
|
277
|
+
name: string;
|
|
278
|
+
family: CoinFamily;
|
|
279
|
+
utxolibName: string;
|
|
280
|
+
explorerUrl: string;
|
|
281
|
+
lightningServicePubKey: string;
|
|
282
|
+
middlewarePubKey: string;
|
|
283
|
+
tatPubKey: string;
|
|
284
|
+
}
|
|
285
|
+
declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
|
|
286
|
+
name: string;
|
|
287
|
+
family: CoinFamily;
|
|
288
|
+
utxolibName: string;
|
|
289
|
+
explorerUrl: string;
|
|
290
|
+
lightningServicePubKey: string;
|
|
291
|
+
middlewarePubKey: string;
|
|
292
|
+
tatPubKey: string;
|
|
190
293
|
}
|
|
191
294
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
192
295
|
name: string;
|
|
@@ -199,6 +302,25 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
199
302
|
family: CoinFamily;
|
|
200
303
|
utxolibName: string;
|
|
201
304
|
explorerUrl: string;
|
|
305
|
+
paygoAddressAttestationPubkey: string;
|
|
306
|
+
}
|
|
307
|
+
declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
|
|
308
|
+
name: string;
|
|
309
|
+
family: CoinFamily;
|
|
310
|
+
utxolibName: string;
|
|
311
|
+
explorerUrl: string;
|
|
312
|
+
}
|
|
313
|
+
declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
|
|
314
|
+
name: string;
|
|
315
|
+
family: CoinFamily;
|
|
316
|
+
utxolibName: string;
|
|
317
|
+
explorerUrl: string;
|
|
318
|
+
}
|
|
319
|
+
declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
|
|
320
|
+
name: string;
|
|
321
|
+
family: CoinFamily;
|
|
322
|
+
utxolibName: string;
|
|
323
|
+
explorerUrl: string;
|
|
202
324
|
}
|
|
203
325
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
204
326
|
name: string;
|
|
@@ -298,6 +420,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
298
420
|
explorerUrl: string;
|
|
299
421
|
accountExplorerUrl: string;
|
|
300
422
|
chainId: number;
|
|
423
|
+
nativeCoinOperationHashPrefix: string;
|
|
424
|
+
tokenOperationHashPrefix: string;
|
|
301
425
|
}
|
|
302
426
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
303
427
|
name: string;
|
|
@@ -305,6 +429,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
305
429
|
explorerUrl: string;
|
|
306
430
|
accountExplorerUrl: string;
|
|
307
431
|
chainId: number;
|
|
432
|
+
nativeCoinOperationHashPrefix: string;
|
|
433
|
+
tokenOperationHashPrefix: string;
|
|
308
434
|
}
|
|
309
435
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
310
436
|
name: string;
|
|
@@ -328,6 +454,8 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
328
454
|
batcherContractAddress: string;
|
|
329
455
|
forwarderFactoryAddress: string;
|
|
330
456
|
forwarderImplementationAddress: string;
|
|
457
|
+
nativeCoinOperationHashPrefix: string;
|
|
458
|
+
tokenOperationHashPrefix: string;
|
|
331
459
|
}
|
|
332
460
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
333
461
|
name: string;
|
|
@@ -344,6 +472,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
344
472
|
batcherContractAddress: string;
|
|
345
473
|
forwarderFactoryAddress: string;
|
|
346
474
|
forwarderImplementationAddress: string;
|
|
475
|
+
nativeCoinOperationHashPrefix: string;
|
|
476
|
+
tokenOperationHashPrefix: string;
|
|
347
477
|
}
|
|
348
478
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
349
479
|
name: string;
|
|
@@ -360,6 +490,8 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
360
490
|
batcherContractAddress: string;
|
|
361
491
|
forwarderFactoryAddress: string;
|
|
362
492
|
forwarderImplementationAddress: string;
|
|
493
|
+
nativeCoinOperationHashPrefix: string;
|
|
494
|
+
tokenOperationHashPrefix: string;
|
|
363
495
|
}
|
|
364
496
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
365
497
|
name: string;
|
|
@@ -371,6 +503,21 @@ declare class Goerli extends Testnet implements EthereumNetwork {
|
|
|
371
503
|
batcherContractAddress: string;
|
|
372
504
|
forwarderFactoryAddress: string;
|
|
373
505
|
forwarderImplementationAddress: string;
|
|
506
|
+
nativeCoinOperationHashPrefix: string;
|
|
507
|
+
tokenOperationHashPrefix: string;
|
|
508
|
+
}
|
|
509
|
+
declare class Holesky extends Testnet implements EthereumNetwork {
|
|
510
|
+
name: string;
|
|
511
|
+
family: CoinFamily;
|
|
512
|
+
explorerUrl: string;
|
|
513
|
+
accountExplorerUrl: string;
|
|
514
|
+
blockExplorerUrl: string;
|
|
515
|
+
chainId: number;
|
|
516
|
+
batcherContractAddress: string;
|
|
517
|
+
forwarderFactoryAddress: string;
|
|
518
|
+
forwarderImplementationAddress: string;
|
|
519
|
+
nativeCoinOperationHashPrefix: string;
|
|
520
|
+
tokenOperationHashPrefix: string;
|
|
374
521
|
}
|
|
375
522
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
376
523
|
name: string;
|
|
@@ -378,6 +525,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
378
525
|
explorerUrl: string;
|
|
379
526
|
accountExplorerUrl: string;
|
|
380
527
|
chainId: number;
|
|
528
|
+
nativeCoinOperationHashPrefix: string;
|
|
529
|
+
tokenOperationHashPrefix: string;
|
|
381
530
|
}
|
|
382
531
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
383
532
|
name: string;
|
|
@@ -385,6 +534,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
385
534
|
explorerUrl: string;
|
|
386
535
|
accountExplorerUrl: string;
|
|
387
536
|
chainId: number;
|
|
537
|
+
nativeCoinOperationHashPrefix: string;
|
|
538
|
+
tokenOperationHashPrefix: string;
|
|
388
539
|
}
|
|
389
540
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
390
541
|
name: string;
|
|
@@ -434,6 +585,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
434
585
|
explorerUrl: string;
|
|
435
586
|
accountExplorerUrl: string;
|
|
436
587
|
chainId: number;
|
|
588
|
+
nativeCoinOperationHashPrefix: string;
|
|
589
|
+
tokenOperationHashPrefix: string;
|
|
437
590
|
}
|
|
438
591
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
439
592
|
name: string;
|
|
@@ -441,6 +594,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
441
594
|
explorerUrl: string;
|
|
442
595
|
accountExplorerUrl: string;
|
|
443
596
|
chainId: number;
|
|
597
|
+
nativeCoinOperationHashPrefix: string;
|
|
598
|
+
tokenOperationHashPrefix: string;
|
|
444
599
|
}
|
|
445
600
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
446
601
|
name: string;
|
|
@@ -552,6 +707,116 @@ declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
|
552
707
|
family: CoinFamily;
|
|
553
708
|
explorerUrl: string;
|
|
554
709
|
}
|
|
710
|
+
declare class Kava extends Mainnet implements AccountNetwork {
|
|
711
|
+
name: string;
|
|
712
|
+
family: CoinFamily;
|
|
713
|
+
explorerUrl: string;
|
|
714
|
+
}
|
|
715
|
+
declare class KavaTestnet extends Testnet implements AccountNetwork {
|
|
716
|
+
name: string;
|
|
717
|
+
family: CoinFamily;
|
|
718
|
+
explorerUrl: string;
|
|
719
|
+
}
|
|
720
|
+
declare class Ton extends Mainnet implements AccountNetwork {
|
|
721
|
+
name: string;
|
|
722
|
+
family: CoinFamily;
|
|
723
|
+
explorerUrl: string;
|
|
724
|
+
}
|
|
725
|
+
declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
726
|
+
name: string;
|
|
727
|
+
family: CoinFamily;
|
|
728
|
+
explorerUrl: string;
|
|
729
|
+
}
|
|
730
|
+
declare class Coreum extends Mainnet implements AccountNetwork {
|
|
731
|
+
name: string;
|
|
732
|
+
family: CoinFamily;
|
|
733
|
+
explorerUrl: string;
|
|
734
|
+
}
|
|
735
|
+
declare class CoreumTestnet extends Testnet implements AccountNetwork {
|
|
736
|
+
name: string;
|
|
737
|
+
family: CoinFamily;
|
|
738
|
+
explorerUrl: string;
|
|
739
|
+
}
|
|
740
|
+
declare class Rune extends Mainnet implements AccountNetwork {
|
|
741
|
+
name: string;
|
|
742
|
+
family: CoinFamily;
|
|
743
|
+
explorerUrl: string;
|
|
744
|
+
}
|
|
745
|
+
declare class RuneTestNet extends Testnet implements AccountNetwork {
|
|
746
|
+
name: string;
|
|
747
|
+
family: CoinFamily;
|
|
748
|
+
explorerUrl: string;
|
|
749
|
+
}
|
|
750
|
+
declare class Baby extends Mainnet implements AccountNetwork {
|
|
751
|
+
name: string;
|
|
752
|
+
family: CoinFamily;
|
|
753
|
+
explorerUrl: string;
|
|
754
|
+
}
|
|
755
|
+
declare class BabyTestnet extends Testnet implements AccountNetwork {
|
|
756
|
+
name: string;
|
|
757
|
+
family: CoinFamily;
|
|
758
|
+
explorerUrl: string;
|
|
759
|
+
}
|
|
760
|
+
declare class Mantra extends Mainnet implements AccountNetwork {
|
|
761
|
+
name: string;
|
|
762
|
+
family: CoinFamily;
|
|
763
|
+
explorerUrl: string;
|
|
764
|
+
}
|
|
765
|
+
declare class MantraTestnet extends Testnet implements AccountNetwork {
|
|
766
|
+
name: string;
|
|
767
|
+
family: CoinFamily;
|
|
768
|
+
explorerUrl: string;
|
|
769
|
+
}
|
|
770
|
+
declare class Cronos extends Mainnet implements AccountNetwork {
|
|
771
|
+
name: string;
|
|
772
|
+
family: CoinFamily;
|
|
773
|
+
explorerUrl: string;
|
|
774
|
+
}
|
|
775
|
+
declare class CronosTestnet extends Testnet implements AccountNetwork {
|
|
776
|
+
name: string;
|
|
777
|
+
family: CoinFamily;
|
|
778
|
+
explorerUrl: string;
|
|
779
|
+
}
|
|
780
|
+
declare class FetchAi extends Mainnet implements AccountNetwork {
|
|
781
|
+
name: string;
|
|
782
|
+
family: CoinFamily;
|
|
783
|
+
explorerUrl: string;
|
|
784
|
+
}
|
|
785
|
+
declare class FetchAiTestnet extends Testnet implements AccountNetwork {
|
|
786
|
+
name: string;
|
|
787
|
+
family: CoinFamily;
|
|
788
|
+
explorerUrl: string;
|
|
789
|
+
}
|
|
790
|
+
declare class Initia extends Mainnet implements AccountNetwork {
|
|
791
|
+
name: string;
|
|
792
|
+
family: CoinFamily;
|
|
793
|
+
explorerUrl: string;
|
|
794
|
+
}
|
|
795
|
+
declare class InitiaTestnet extends Testnet implements AccountNetwork {
|
|
796
|
+
name: string;
|
|
797
|
+
family: CoinFamily;
|
|
798
|
+
explorerUrl: string;
|
|
799
|
+
}
|
|
800
|
+
declare class Asi extends Mainnet implements AccountNetwork {
|
|
801
|
+
name: string;
|
|
802
|
+
family: CoinFamily;
|
|
803
|
+
explorerUrl: string;
|
|
804
|
+
}
|
|
805
|
+
declare class AsiTestnet extends Testnet implements AccountNetwork {
|
|
806
|
+
name: string;
|
|
807
|
+
family: CoinFamily;
|
|
808
|
+
explorerUrl: string;
|
|
809
|
+
}
|
|
810
|
+
declare class Islm extends Mainnet implements AccountNetwork {
|
|
811
|
+
name: string;
|
|
812
|
+
family: CoinFamily;
|
|
813
|
+
explorerUrl: string;
|
|
814
|
+
}
|
|
815
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
816
|
+
name: string;
|
|
817
|
+
family: CoinFamily;
|
|
818
|
+
explorerUrl: string;
|
|
819
|
+
}
|
|
555
820
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
556
821
|
name: string;
|
|
557
822
|
family: CoinFamily;
|
|
@@ -586,9 +851,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
586
851
|
family: CoinFamily;
|
|
587
852
|
explorerUrl: undefined;
|
|
588
853
|
}
|
|
854
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
855
|
+
name: string;
|
|
856
|
+
family: CoinFamily;
|
|
857
|
+
explorerUrl: string;
|
|
858
|
+
}
|
|
859
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
860
|
+
name: string;
|
|
861
|
+
family: CoinFamily;
|
|
862
|
+
explorerUrl: string;
|
|
863
|
+
specName: SubstrateSpecNameType;
|
|
864
|
+
genesisHash: string;
|
|
865
|
+
specVersion: number;
|
|
866
|
+
chainName: string;
|
|
867
|
+
txVersion: number;
|
|
868
|
+
}
|
|
589
869
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
590
870
|
name: string;
|
|
591
871
|
family: CoinFamily;
|
|
872
|
+
accountExplorerUrl: string;
|
|
592
873
|
explorerUrl: string;
|
|
593
874
|
maxFeeLimit: string;
|
|
594
875
|
contractCallFeeLimit: string;
|
|
@@ -596,6 +877,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
596
877
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
597
878
|
name: string;
|
|
598
879
|
family: CoinFamily;
|
|
880
|
+
accountExplorerUrl: string;
|
|
599
881
|
explorerUrl: string;
|
|
600
882
|
maxFeeLimit: string;
|
|
601
883
|
contractCallFeeLimit: string;
|
|
@@ -614,11 +896,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
|
|
|
614
896
|
name: string;
|
|
615
897
|
family: CoinFamily;
|
|
616
898
|
explorerUrl: string;
|
|
899
|
+
accountExplorerUrl: string;
|
|
617
900
|
}
|
|
618
901
|
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
619
902
|
name: string;
|
|
620
903
|
family: CoinFamily;
|
|
621
904
|
explorerUrl: string;
|
|
905
|
+
accountExplorerUrl: string;
|
|
622
906
|
}
|
|
623
907
|
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
624
908
|
name: string;
|
|
@@ -657,6 +941,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
657
941
|
walletFactoryAddress: string;
|
|
658
942
|
walletImplementationAddress: string;
|
|
659
943
|
batcherContractAddress: string;
|
|
944
|
+
nativeCoinOperationHashPrefix: string;
|
|
945
|
+
tokenOperationHashPrefix: string;
|
|
660
946
|
}
|
|
661
947
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
662
948
|
name: string;
|
|
@@ -669,22 +955,403 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
669
955
|
walletFactoryAddress: string;
|
|
670
956
|
walletImplementationAddress: string;
|
|
671
957
|
batcherContractAddress: string;
|
|
958
|
+
nativeCoinOperationHashPrefix: string;
|
|
959
|
+
tokenOperationHashPrefix: string;
|
|
960
|
+
}
|
|
961
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
962
|
+
name: string;
|
|
963
|
+
family: CoinFamily;
|
|
964
|
+
explorerUrl: string;
|
|
965
|
+
accountExplorerUrl: string;
|
|
966
|
+
chainId: number;
|
|
967
|
+
nativeCoinOperationHashPrefix: string;
|
|
968
|
+
tokenOperationHashPrefix: string;
|
|
969
|
+
forwarderFactoryAddress: string;
|
|
970
|
+
forwarderImplementationAddress: string;
|
|
971
|
+
walletFactoryAddress: string;
|
|
972
|
+
walletImplementationAddress: string;
|
|
973
|
+
batcherContractAddress: string;
|
|
974
|
+
}
|
|
975
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
976
|
+
name: string;
|
|
977
|
+
family: CoinFamily;
|
|
978
|
+
explorerUrl: string;
|
|
979
|
+
accountExplorerUrl: string;
|
|
980
|
+
chainId: number;
|
|
981
|
+
nativeCoinOperationHashPrefix: string;
|
|
982
|
+
tokenOperationHashPrefix: string;
|
|
983
|
+
forwarderFactoryAddress: string;
|
|
984
|
+
forwarderImplementationAddress: string;
|
|
985
|
+
walletFactoryAddress: string;
|
|
986
|
+
walletImplementationAddress: string;
|
|
987
|
+
batcherContractAddress: string;
|
|
988
|
+
}
|
|
989
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
990
|
+
name: string;
|
|
991
|
+
family: CoinFamily;
|
|
992
|
+
explorerUrl: string;
|
|
993
|
+
accountExplorerUrl: string;
|
|
994
|
+
chainId: number;
|
|
995
|
+
nativeCoinOperationHashPrefix: string;
|
|
996
|
+
tokenOperationHashPrefix: string;
|
|
997
|
+
}
|
|
998
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
999
|
+
name: string;
|
|
1000
|
+
family: CoinFamily;
|
|
1001
|
+
explorerUrl: string;
|
|
1002
|
+
accountExplorerUrl: string;
|
|
1003
|
+
chainId: number;
|
|
1004
|
+
nativeCoinOperationHashPrefix: string;
|
|
1005
|
+
tokenOperationHashPrefix: string;
|
|
1006
|
+
forwarderFactoryAddress: string;
|
|
1007
|
+
forwarderImplementationAddress: string;
|
|
1008
|
+
walletFactoryAddress: string;
|
|
1009
|
+
walletImplementationAddress: string;
|
|
1010
|
+
}
|
|
1011
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
1012
|
+
name: string;
|
|
1013
|
+
family: CoinFamily;
|
|
1014
|
+
explorerUrl: string;
|
|
1015
|
+
accountExplorerUrl: string;
|
|
1016
|
+
chainId: number;
|
|
1017
|
+
nativeCoinOperationHashPrefix: string;
|
|
1018
|
+
tokenOperationHashPrefix: string;
|
|
1019
|
+
batcherContractAddress: string;
|
|
1020
|
+
forwarderFactoryAddress: string;
|
|
1021
|
+
forwarderImplementationAddress: string;
|
|
1022
|
+
}
|
|
1023
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
1024
|
+
name: string;
|
|
1025
|
+
family: CoinFamily;
|
|
1026
|
+
explorerUrl: string;
|
|
1027
|
+
accountExplorerUrl: string;
|
|
1028
|
+
chainId: number;
|
|
1029
|
+
nativeCoinOperationHashPrefix: string;
|
|
1030
|
+
tokenOperationHashPrefix: string;
|
|
1031
|
+
batcherContractAddress: string;
|
|
1032
|
+
forwarderFactoryAddress: string;
|
|
1033
|
+
forwarderImplementationAddress: string;
|
|
1034
|
+
}
|
|
1035
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
1036
|
+
name: string;
|
|
1037
|
+
family: CoinFamily;
|
|
1038
|
+
explorerUrl: string;
|
|
1039
|
+
accountExplorerUrl: string;
|
|
1040
|
+
chainId: number;
|
|
1041
|
+
nativeCoinOperationHashPrefix: string;
|
|
1042
|
+
batcherContractAddress: string;
|
|
1043
|
+
forwarderFactoryAddress: string;
|
|
1044
|
+
forwarderImplementationAddress: string;
|
|
1045
|
+
}
|
|
1046
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
1047
|
+
name: string;
|
|
1048
|
+
family: CoinFamily;
|
|
1049
|
+
explorerUrl: string;
|
|
1050
|
+
accountExplorerUrl: string;
|
|
1051
|
+
chainId: number;
|
|
1052
|
+
nativeCoinOperationHashPrefix: string;
|
|
1053
|
+
batcherContractAddress: string;
|
|
1054
|
+
forwarderFactoryAddress: string;
|
|
1055
|
+
forwarderImplementationAddress: string;
|
|
1056
|
+
}
|
|
1057
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
1058
|
+
name: string;
|
|
1059
|
+
family: CoinFamily;
|
|
1060
|
+
explorerUrl: string;
|
|
1061
|
+
accountExplorerUrl: string;
|
|
1062
|
+
chainId: number;
|
|
1063
|
+
nativeCoinOperationHashPrefix: string;
|
|
1064
|
+
batcherContractAddress: string;
|
|
1065
|
+
forwarderFactoryAddress: string;
|
|
1066
|
+
forwarderImplementationAddress: string;
|
|
1067
|
+
}
|
|
1068
|
+
declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
1069
|
+
name: string;
|
|
1070
|
+
family: CoinFamily;
|
|
1071
|
+
explorerUrl: string;
|
|
1072
|
+
accountExplorerUrl: string;
|
|
1073
|
+
chainId: number;
|
|
1074
|
+
nativeCoinOperationHashPrefix: string;
|
|
1075
|
+
batcherContractAddress: string;
|
|
1076
|
+
forwarderFactoryAddress: string;
|
|
1077
|
+
forwarderImplementationAddress: string;
|
|
1078
|
+
}
|
|
1079
|
+
declare class ApeChain extends Mainnet implements EthereumNetwork {
|
|
1080
|
+
name: string;
|
|
1081
|
+
family: CoinFamily;
|
|
1082
|
+
explorerUrl: string;
|
|
1083
|
+
accountExplorerUrl: string;
|
|
1084
|
+
chainId: number;
|
|
1085
|
+
nativeCoinOperationHashPrefix: string;
|
|
1086
|
+
}
|
|
1087
|
+
declare class ApeChainTestnet extends Testnet implements EthereumNetwork {
|
|
1088
|
+
name: string;
|
|
1089
|
+
family: CoinFamily;
|
|
1090
|
+
explorerUrl: string;
|
|
1091
|
+
accountExplorerUrl: string;
|
|
1092
|
+
chainId: number;
|
|
1093
|
+
nativeCoinOperationHashPrefix: string;
|
|
1094
|
+
}
|
|
1095
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1096
|
+
name: string;
|
|
1097
|
+
family: CoinFamily;
|
|
1098
|
+
explorerUrl: string;
|
|
1099
|
+
accountExplorerUrl: string;
|
|
1100
|
+
chainId: number;
|
|
1101
|
+
nativeCoinOperationHashPrefix: string;
|
|
1102
|
+
batcherContractAddress: string;
|
|
1103
|
+
forwarderFactoryAddress: string;
|
|
1104
|
+
forwarderImplementationAddress: string;
|
|
1105
|
+
}
|
|
1106
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1107
|
+
name: string;
|
|
1108
|
+
family: CoinFamily;
|
|
1109
|
+
explorerUrl: string;
|
|
1110
|
+
accountExplorerUrl: string;
|
|
1111
|
+
chainId: number;
|
|
1112
|
+
nativeCoinOperationHashPrefix: string;
|
|
1113
|
+
batcherContractAddress: string;
|
|
1114
|
+
forwarderFactoryAddress: string;
|
|
1115
|
+
forwarderImplementationAddress: string;
|
|
1116
|
+
}
|
|
1117
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1118
|
+
name: string;
|
|
1119
|
+
family: CoinFamily;
|
|
1120
|
+
explorerUrl: string;
|
|
1121
|
+
accountExplorerUrl: string;
|
|
1122
|
+
chainId: number;
|
|
1123
|
+
nativeCoinOperationHashPrefix: string;
|
|
1124
|
+
batcherContractAddress: string;
|
|
1125
|
+
forwarderFactoryAddress: string;
|
|
1126
|
+
forwarderImplementationAddress: string;
|
|
1127
|
+
}
|
|
1128
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1129
|
+
name: string;
|
|
1130
|
+
family: CoinFamily;
|
|
1131
|
+
explorerUrl: string;
|
|
1132
|
+
accountExplorerUrl: string;
|
|
1133
|
+
chainId: number;
|
|
1134
|
+
nativeCoinOperationHashPrefix: string;
|
|
1135
|
+
batcherContractAddress: string;
|
|
1136
|
+
forwarderFactoryAddress: string;
|
|
1137
|
+
forwarderImplementationAddress: string;
|
|
1138
|
+
}
|
|
1139
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1140
|
+
name: string;
|
|
1141
|
+
family: CoinFamily;
|
|
1142
|
+
explorerUrl: string;
|
|
1143
|
+
accountExplorerUrl: string;
|
|
1144
|
+
chainId: number;
|
|
1145
|
+
nativeCoinOperationHashPrefix: string;
|
|
1146
|
+
walletFactoryAddress: string;
|
|
1147
|
+
batcherContractAddress: string;
|
|
1148
|
+
forwarderFactoryAddress: string;
|
|
1149
|
+
forwarderImplementationAddress: string;
|
|
1150
|
+
walletImplementationAddress: string;
|
|
1151
|
+
}
|
|
1152
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1153
|
+
name: string;
|
|
1154
|
+
family: CoinFamily;
|
|
1155
|
+
explorerUrl: string;
|
|
1156
|
+
chainId: number;
|
|
1157
|
+
nativeCoinOperationHashPrefix: string;
|
|
1158
|
+
walletImplementationAddress: string;
|
|
1159
|
+
batcherContractAddress: string;
|
|
1160
|
+
forwarderFactoryAddress: string;
|
|
1161
|
+
forwarderImplementationAddress: string;
|
|
1162
|
+
}
|
|
1163
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1164
|
+
name: string;
|
|
1165
|
+
family: CoinFamily;
|
|
1166
|
+
explorerUrl: string;
|
|
1167
|
+
accountExplorerUrl: string;
|
|
1168
|
+
chainId: number;
|
|
1169
|
+
nativeCoinOperationHashPrefix: string;
|
|
1170
|
+
walletImplementationAddress: string;
|
|
1171
|
+
batcherContractAddress: string;
|
|
1172
|
+
forwarderFactoryAddress: string;
|
|
1173
|
+
forwarderImplementationAddress: string;
|
|
1174
|
+
}
|
|
1175
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1176
|
+
name: string;
|
|
1177
|
+
family: CoinFamily;
|
|
1178
|
+
explorerUrl: string;
|
|
1179
|
+
accountExplorerUrl: string;
|
|
1180
|
+
chainId: number;
|
|
1181
|
+
nativeCoinOperationHashPrefix: string;
|
|
1182
|
+
batcherContractAddress: string;
|
|
1183
|
+
forwarderFactoryAddress: string;
|
|
1184
|
+
forwarderImplementationAddress: string;
|
|
1185
|
+
walletImplementationAddress: string;
|
|
1186
|
+
}
|
|
1187
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1188
|
+
name: string;
|
|
1189
|
+
family: CoinFamily;
|
|
1190
|
+
explorerUrl: string;
|
|
1191
|
+
accountExplorerUrl: string;
|
|
1192
|
+
chainId: number;
|
|
1193
|
+
nativeCoinOperationHashPrefix: string;
|
|
1194
|
+
walletImplementationAddress: string;
|
|
1195
|
+
walletFactoryAddress: string;
|
|
1196
|
+
batcherContractAddress: string;
|
|
1197
|
+
forwarderFactoryAddress: string;
|
|
1198
|
+
forwarderImplementationAddress: string;
|
|
1199
|
+
}
|
|
1200
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1201
|
+
name: string;
|
|
1202
|
+
family: CoinFamily;
|
|
1203
|
+
explorerUrl: string;
|
|
1204
|
+
accountExplorerUrl: string;
|
|
1205
|
+
chainId: number;
|
|
1206
|
+
nativeCoinOperationHashPrefix: string;
|
|
1207
|
+
walletFactoryAddress: string;
|
|
1208
|
+
batcherContractAddress: string;
|
|
1209
|
+
forwarderFactoryAddress: string;
|
|
1210
|
+
forwarderImplementationAddress: string;
|
|
1211
|
+
walletImplementationAddress: string;
|
|
1212
|
+
}
|
|
1213
|
+
declare class Somnia extends Mainnet implements EthereumNetwork {
|
|
1214
|
+
name: string;
|
|
1215
|
+
family: CoinFamily;
|
|
1216
|
+
explorerUrl: string;
|
|
1217
|
+
chainId: number;
|
|
1218
|
+
nativeCoinOperationHashPrefix: string;
|
|
1219
|
+
}
|
|
1220
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
1221
|
+
name: string;
|
|
1222
|
+
family: CoinFamily;
|
|
1223
|
+
explorerUrl: string;
|
|
1224
|
+
accountExplorerUrl: string;
|
|
1225
|
+
chainId: number;
|
|
1226
|
+
nativeCoinOperationHashPrefix: string;
|
|
1227
|
+
walletFactoryAddress: string;
|
|
1228
|
+
batcherContractAddress: string;
|
|
1229
|
+
forwarderFactoryAddress: string;
|
|
1230
|
+
forwarderImplementationAddress: string;
|
|
1231
|
+
walletImplementationAddress: string;
|
|
1232
|
+
}
|
|
1233
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1234
|
+
name: string;
|
|
1235
|
+
family: CoinFamily;
|
|
1236
|
+
explorerUrl: string;
|
|
1237
|
+
accountExplorerUrl: string;
|
|
1238
|
+
chainId: number;
|
|
1239
|
+
nativeCoinOperationHashPrefix: string;
|
|
1240
|
+
batcherContractAddress: string;
|
|
1241
|
+
forwarderFactoryAddress: string;
|
|
1242
|
+
forwarderImplementationAddress: string;
|
|
1243
|
+
}
|
|
1244
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1245
|
+
name: string;
|
|
1246
|
+
family: CoinFamily;
|
|
1247
|
+
explorerUrl: string;
|
|
1248
|
+
accountExplorerUrl: string;
|
|
1249
|
+
chainId: number;
|
|
1250
|
+
nativeCoinOperationHashPrefix: string;
|
|
1251
|
+
batcherContractAddress: string;
|
|
1252
|
+
forwarderFactoryAddress: string;
|
|
1253
|
+
forwarderImplementationAddress: string;
|
|
1254
|
+
}
|
|
1255
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1256
|
+
name: string;
|
|
1257
|
+
family: CoinFamily;
|
|
1258
|
+
explorerUrl: string;
|
|
1259
|
+
accountExplorerUrl: string;
|
|
1260
|
+
chainId: number;
|
|
1261
|
+
nativeCoinOperationHashPrefix: string;
|
|
1262
|
+
batcherContractAddress: string;
|
|
1263
|
+
forwarderFactoryAddress: string;
|
|
1264
|
+
forwarderImplementationAddress: string;
|
|
1265
|
+
}
|
|
1266
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1267
|
+
name: string;
|
|
1268
|
+
family: CoinFamily;
|
|
1269
|
+
explorerUrl: string;
|
|
1270
|
+
accountExplorerUrl: string;
|
|
1271
|
+
chainId: number;
|
|
1272
|
+
nativeCoinOperationHashPrefix: string;
|
|
1273
|
+
batcherContractAddress: string;
|
|
1274
|
+
forwarderFactoryAddress: string;
|
|
1275
|
+
forwarderImplementationAddress: string;
|
|
1276
|
+
}
|
|
1277
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1278
|
+
name: string;
|
|
1279
|
+
family: CoinFamily;
|
|
1280
|
+
explorerUrl: string;
|
|
1281
|
+
accountExplorerUrl: string;
|
|
1282
|
+
chainId: number;
|
|
1283
|
+
nativeCoinOperationHashPrefix: string;
|
|
1284
|
+
tokenOperationHashPrefix: string;
|
|
1285
|
+
forwarderFactoryAddress: string;
|
|
1286
|
+
forwarderImplementationAddress: string;
|
|
1287
|
+
walletFactoryAddress: string;
|
|
1288
|
+
walletImplementationAddress: string;
|
|
1289
|
+
}
|
|
1290
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1291
|
+
name: string;
|
|
1292
|
+
family: CoinFamily;
|
|
1293
|
+
explorerUrl: string;
|
|
1294
|
+
accountExplorerUrl: string;
|
|
1295
|
+
chainId: number;
|
|
1296
|
+
nativeCoinOperationHashPrefix: string;
|
|
1297
|
+
tokenOperationHashPrefix: string;
|
|
1298
|
+
forwarderFactoryAddress: string;
|
|
1299
|
+
forwarderImplementationAddress: string;
|
|
1300
|
+
walletFactoryAddress: string;
|
|
1301
|
+
walletImplementationAddress: string;
|
|
1302
|
+
}
|
|
1303
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1304
|
+
name: string;
|
|
1305
|
+
family: CoinFamily;
|
|
1306
|
+
explorerUrl: string;
|
|
1307
|
+
}
|
|
1308
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1309
|
+
name: string;
|
|
1310
|
+
family: CoinFamily;
|
|
1311
|
+
explorerUrl: string;
|
|
1312
|
+
specName: SubstrateSpecNameType;
|
|
1313
|
+
genesisHash: string;
|
|
1314
|
+
specVersion: number;
|
|
1315
|
+
chainName: string;
|
|
1316
|
+
txVersion: number;
|
|
1317
|
+
}
|
|
1318
|
+
declare class Vet extends Mainnet implements AccountNetwork {
|
|
1319
|
+
name: string;
|
|
1320
|
+
family: CoinFamily;
|
|
1321
|
+
explorerUrl: string;
|
|
1322
|
+
accountExplorerUrl: string;
|
|
1323
|
+
}
|
|
1324
|
+
declare class VetTestnet extends Testnet implements AccountNetwork {
|
|
1325
|
+
name: string;
|
|
1326
|
+
family: CoinFamily;
|
|
1327
|
+
explorerUrl: string;
|
|
1328
|
+
accountExplorerUrl: string;
|
|
672
1329
|
}
|
|
673
1330
|
export declare const Networks: {
|
|
674
1331
|
main: {
|
|
675
1332
|
ada: Readonly<Ada>;
|
|
676
1333
|
algorand: Readonly<Algorand>;
|
|
1334
|
+
apechain: Readonly<ApeChain>;
|
|
1335
|
+
apt: Readonly<Apt>;
|
|
1336
|
+
arbitrum: Readonly<Arbitrum>;
|
|
1337
|
+
asi: Readonly<Asi>;
|
|
677
1338
|
atom: Readonly<Atom>;
|
|
678
1339
|
avalancheC: Readonly<AvalancheC>;
|
|
679
1340
|
avalancheP: Readonly<AvalancheP>;
|
|
1341
|
+
baby: Readonly<Baby>;
|
|
1342
|
+
basechain: Readonly<BaseChain>;
|
|
680
1343
|
bitcoin: Readonly<Bitcoin>;
|
|
681
1344
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
682
1345
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
683
1346
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1347
|
+
bera: Readonly<Berachain>;
|
|
684
1348
|
bld: Readonly<Bld>;
|
|
685
1349
|
bsc: Readonly<BinanceSmartChain>;
|
|
686
1350
|
casper: Readonly<Casper>;
|
|
687
1351
|
celo: Readonly<Celo>;
|
|
1352
|
+
coredao: Readonly<Coredao>;
|
|
1353
|
+
coreum: Readonly<Coreum>;
|
|
1354
|
+
cronos: Readonly<Cronos>;
|
|
688
1355
|
dash: Readonly<Dash>;
|
|
689
1356
|
dogecoin: Readonly<Dogecoin>;
|
|
690
1357
|
dot: Readonly<Polkadot>;
|
|
@@ -695,73 +1362,133 @@ export declare const Networks: {
|
|
|
695
1362
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
696
1363
|
ethereumW: Readonly<EthereumW>;
|
|
697
1364
|
fiat: Readonly<Fiat>;
|
|
1365
|
+
fetchai: Readonly<FetchAi>;
|
|
1366
|
+
flr: Readonly<Flare>;
|
|
698
1367
|
hash: Readonly<Hash>;
|
|
699
1368
|
hedera: Readonly<Hedera>;
|
|
1369
|
+
icp: Readonly<Icp>;
|
|
1370
|
+
initia: Readonly<Initia>;
|
|
700
1371
|
injective: Readonly<Injective>;
|
|
1372
|
+
islm: Readonly<Islm>;
|
|
1373
|
+
kava: Readonly<Kava>;
|
|
1374
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
701
1375
|
litecoin: Readonly<Litecoin>;
|
|
1376
|
+
mon: Readonly<Monad>;
|
|
1377
|
+
mantra: Readonly<Mantra>;
|
|
702
1378
|
polygon: Readonly<Polygon>;
|
|
1379
|
+
polyx: Readonly<Polymesh>;
|
|
1380
|
+
oas: Readonly<Oas>;
|
|
703
1381
|
ofc: Readonly<Ofc>;
|
|
1382
|
+
optimism: Readonly<Optimism>;
|
|
704
1383
|
osmo: Readonly<Osmo>;
|
|
705
1384
|
rbtc: Readonly<Rbtc>;
|
|
1385
|
+
rune: Readonly<Rune>;
|
|
706
1386
|
stellar: Readonly<Stellar>;
|
|
707
1387
|
sei: Readonly<Sei>;
|
|
1388
|
+
sgb: Readonly<Songbird>;
|
|
708
1389
|
sol: Readonly<Sol>;
|
|
709
1390
|
sui: Readonly<Sui>;
|
|
710
1391
|
near: Readonly<Near>;
|
|
711
1392
|
stx: Readonly<Stx>;
|
|
1393
|
+
stt: Readonly<Somnia>;
|
|
1394
|
+
soneium: Readonly<Soneium>;
|
|
712
1395
|
susd: Readonly<SUSD>;
|
|
1396
|
+
tao: Readonly<Bittensor>;
|
|
713
1397
|
tia: Readonly<Tia>;
|
|
1398
|
+
ton: Readonly<Ton>;
|
|
714
1399
|
trx: Readonly<Trx>;
|
|
1400
|
+
vet: Readonly<Vet>;
|
|
1401
|
+
wemix: Readonly<Wemix>;
|
|
1402
|
+
world: Readonly<World>;
|
|
1403
|
+
xdc: Readonly<Xdc>;
|
|
715
1404
|
xrp: Readonly<Xrp>;
|
|
716
1405
|
xtz: Readonly<Xtz>;
|
|
717
1406
|
zCash: Readonly<ZCash>;
|
|
718
1407
|
zeta: Readonly<Zeta>;
|
|
1408
|
+
zkSync: Readonly<ZkSync>;
|
|
719
1409
|
};
|
|
720
1410
|
test: {
|
|
721
1411
|
ada: Readonly<AdaTestnet>;
|
|
722
1412
|
algorand: Readonly<AlgorandTestnet>;
|
|
1413
|
+
apechain: Readonly<ApeChainTestnet>;
|
|
1414
|
+
apt: Readonly<AptTestnet>;
|
|
1415
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
1416
|
+
asi: Readonly<AsiTestnet>;
|
|
723
1417
|
atom: Readonly<AtomTestnet>;
|
|
724
1418
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
725
1419
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1420
|
+
baby: Readonly<BabyTestnet>;
|
|
1421
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
726
1422
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1423
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1424
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1425
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
727
1426
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
728
1427
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
729
1428
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1429
|
+
bera: Readonly<BerachainTestnet>;
|
|
730
1430
|
bld: Readonly<BldTestnet>;
|
|
731
1431
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
732
1432
|
casper: Readonly<CasperTestnet>;
|
|
1433
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
733
1434
|
celo: Readonly<CeloTestnet>;
|
|
1435
|
+
cronos: Readonly<CronosTestnet>;
|
|
734
1436
|
dash: Readonly<DashTestnet>;
|
|
735
1437
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
736
1438
|
dot: Readonly<PolkadotTestnet>;
|
|
737
1439
|
eCash: Readonly<ECashTestnet>;
|
|
738
1440
|
eos: Readonly<EosTestnet>;
|
|
739
1441
|
fiat: Readonly<FiatTestnet>;
|
|
1442
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
1443
|
+
flr: Readonly<FlareTestnet>;
|
|
1444
|
+
mon: Readonly<MonadTestnet>;
|
|
740
1445
|
pyrmont: Readonly<Pyrmont>;
|
|
741
1446
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
742
1447
|
hash: Readonly<HashTestnet>;
|
|
743
1448
|
hedera: Readonly<HederaTestnet>;
|
|
1449
|
+
icp: Readonly<IcpTestnet>;
|
|
1450
|
+
initia: Readonly<InitiaTestnet>;
|
|
744
1451
|
injective: Readonly<InjectiveTestnet>;
|
|
1452
|
+
islm: Readonly<IslmTestnet>;
|
|
1453
|
+
kava: Readonly<KavaTestnet>;
|
|
745
1454
|
kovan: Readonly<Kovan>;
|
|
746
1455
|
goerli: Readonly<Goerli>;
|
|
1456
|
+
holesky: Readonly<Holesky>;
|
|
1457
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
747
1458
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1459
|
+
mantra: Readonly<MantraTestnet>;
|
|
748
1460
|
polygon: Readonly<PolygonTestnet>;
|
|
1461
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1462
|
+
oas: Readonly<OasTestnet>;
|
|
749
1463
|
ofc: Readonly<OfcTestnet>;
|
|
1464
|
+
optimism: Readonly<OptimismTestnet>;
|
|
750
1465
|
osmo: Readonly<OsmoTestnet>;
|
|
751
1466
|
rbtc: Readonly<RbtcTestnet>;
|
|
1467
|
+
rune: Readonly<RuneTestNet>;
|
|
1468
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
752
1469
|
stellar: Readonly<StellarTestnet>;
|
|
753
1470
|
sei: Readonly<SeiTestnet>;
|
|
754
1471
|
sol: Readonly<SolTestnet>;
|
|
755
1472
|
sui: Readonly<SuiTestnet>;
|
|
756
1473
|
near: Readonly<NearTestnet>;
|
|
757
1474
|
stx: Readonly<StxTestnet>;
|
|
1475
|
+
stt: Readonly<SomniaTestnet>;
|
|
1476
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
758
1477
|
susd: Readonly<SUSDTestnet>;
|
|
1478
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1479
|
+
tao: Readonly<BittensorTestnet>;
|
|
759
1480
|
tia: Readonly<TiaTestnet>;
|
|
1481
|
+
ton: Readonly<TonTestnet>;
|
|
760
1482
|
trx: Readonly<TrxTestnet>;
|
|
1483
|
+
vet: Readonly<VetTestnet>;
|
|
1484
|
+
wemix: Readonly<WemixTestnet>;
|
|
1485
|
+
world: Readonly<WorldTestnet>;
|
|
1486
|
+
xdc: Readonly<XdcTestnet>;
|
|
761
1487
|
xrp: Readonly<XrpTestnet>;
|
|
762
1488
|
xtz: Readonly<XtzTestnet>;
|
|
763
1489
|
zCash: Readonly<ZCashTestnet>;
|
|
764
1490
|
zeta: Readonly<ZetaTestnet>;
|
|
1491
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
765
1492
|
};
|
|
766
1493
|
};
|
|
767
1494
|
export {};
|