@bitgo-beta/statics 15.1.1-beta.9 → 15.1.1-beta.900
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 +2905 -0
- package/dist/src/account.d.ts +490 -31
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +821 -127
- package/dist/src/ada.d.ts.map +1 -1
- package/dist/src/ada.js +8 -3
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +9 -3
- package/dist/src/base.d.ts +1422 -34
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1483 -50
- package/dist/src/coinFeatures.d.ts +83 -0
- package/dist/src/coinFeatures.d.ts.map +1 -0
- package/dist/src/coinFeatures.js +518 -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 +96 -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 +139 -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 +1388 -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 +458 -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 +1305 -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 +137 -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 +334 -0
- package/dist/src/coins.d.ts +10 -1
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +631 -1395
- 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/gatekeep.d.ts +2 -0
- package/dist/src/gatekeep.d.ts.map +1 -0
- package/dist/src/gatekeep.js +1831 -0
- package/dist/src/index.d.ts +4 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +21 -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 +93 -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 +733 -4
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +998 -40
- 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 +144 -14
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +340 -115
- package/dist/src/utxo.d.ts +3 -1
- package/dist/src/utxo.d.ts.map +1 -1
- package/dist/src/utxo.js +79 -3
- package/dist/tsconfig.tsbuildinfo +1 -2744
- package/package.json +2 -2
- package/dist/resources/dot/index.d.ts +0 -3
- package/dist/resources/dot/index.d.ts.map +0 -1
- package/dist/resources/dot/index.js +0 -15
- package/dist/resources/dot/mainnet.d.ts +0 -2
- package/dist/resources/dot/mainnet.d.ts.map +0 -1
- package/dist/resources/dot/mainnet.js +0 -5
- package/dist/resources/dot/westend.d.ts +0 -2
- package/dist/resources/dot/westend.d.ts.map +0 -1
- package/dist/resources/dot/westend.js +0 -5
- package/resources/dot/index.ts +0 -2
- package/resources/dot/mainnet.ts +0 -2
- package/resources/dot/westend.ts +0 -2
package/dist/src/networks.d.ts
CHANGED
|
@@ -12,6 +12,14 @@ export declare abstract class BaseNetwork {
|
|
|
12
12
|
export interface UtxoNetwork extends BaseNetwork {
|
|
13
13
|
utxolibName: string;
|
|
14
14
|
}
|
|
15
|
+
export interface LightningNetwork extends UtxoNetwork {
|
|
16
|
+
/**
|
|
17
|
+
* The public key of the Lightning service, used for deriving the shared Elliptic Curve Diffie-Hellman (ECDH) secret
|
|
18
|
+
* between the user's extended private key and the Lightning service. This key facilitates secure communication
|
|
19
|
+
* by enabling the creation of a shared secret for encryption and decryption of data.
|
|
20
|
+
*/
|
|
21
|
+
lightningServicePubKey: string;
|
|
22
|
+
}
|
|
15
23
|
export interface AdaNetwork extends BaseNetwork {
|
|
16
24
|
utxolibName: string;
|
|
17
25
|
poolDeposit: number;
|
|
@@ -40,20 +48,22 @@ export interface AvalancheNetwork extends BaseNetwork {
|
|
|
40
48
|
readonly minDelegationFee: string;
|
|
41
49
|
readonly avaxAssetID: string;
|
|
42
50
|
readonly txFee: string;
|
|
51
|
+
readonly maxImportFee: string;
|
|
43
52
|
}
|
|
44
53
|
export interface AccountNetwork extends BaseNetwork {
|
|
45
54
|
readonly accountExplorerUrl?: string;
|
|
55
|
+
readonly blockExplorerUrl?: string;
|
|
46
56
|
}
|
|
47
57
|
/**
|
|
48
58
|
* Specification name type of the chain. Used in setting up the registry
|
|
49
59
|
*/
|
|
50
|
-
export
|
|
60
|
+
export type PolkadotSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine';
|
|
61
|
+
export type SubstrateSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor' | 'polymesh_testnet';
|
|
51
62
|
export interface DotNetwork extends AccountNetwork {
|
|
52
63
|
readonly specName: PolkadotSpecNameType;
|
|
53
64
|
readonly genesisHash: string;
|
|
54
65
|
readonly specVersion: number;
|
|
55
66
|
readonly chainName: string;
|
|
56
|
-
readonly metadataRpc: `0x${string}`;
|
|
57
67
|
readonly txVersion: number;
|
|
58
68
|
}
|
|
59
69
|
export interface EthereumNetwork extends AccountNetwork {
|
|
@@ -61,6 +71,8 @@ export interface EthereumNetwork extends AccountNetwork {
|
|
|
61
71
|
readonly batcherContractAddress?: string;
|
|
62
72
|
readonly forwarderFactoryAddress?: string;
|
|
63
73
|
readonly forwarderImplementationAddress?: string;
|
|
74
|
+
readonly nativeCoinOperationHashPrefix?: string;
|
|
75
|
+
readonly tokenOperationHashPrefix?: string;
|
|
64
76
|
}
|
|
65
77
|
export interface TronNetwork extends AccountNetwork {
|
|
66
78
|
maxFeeLimit: string;
|
|
@@ -110,6 +122,60 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
|
|
|
110
122
|
poolDeposit: number;
|
|
111
123
|
stakeKeyDeposit: number;
|
|
112
124
|
}
|
|
125
|
+
declare class Apt extends Mainnet implements AccountNetwork {
|
|
126
|
+
name: string;
|
|
127
|
+
family: CoinFamily;
|
|
128
|
+
explorerUrl: string;
|
|
129
|
+
accountExplorerUrl: string;
|
|
130
|
+
blockExplorerUrl: string;
|
|
131
|
+
}
|
|
132
|
+
declare class AptTestnet extends Testnet implements AccountNetwork {
|
|
133
|
+
name: string;
|
|
134
|
+
family: CoinFamily;
|
|
135
|
+
explorerUrl: string;
|
|
136
|
+
accountExplorerUrl: string;
|
|
137
|
+
blockExplorerUrl: string;
|
|
138
|
+
}
|
|
139
|
+
declare class Icp extends Mainnet implements AccountNetwork {
|
|
140
|
+
name: string;
|
|
141
|
+
family: CoinFamily;
|
|
142
|
+
explorerUrl: string;
|
|
143
|
+
accountExplorerUrl: string;
|
|
144
|
+
}
|
|
145
|
+
declare class IcpTestnet extends Testnet implements AccountNetwork {
|
|
146
|
+
name: string;
|
|
147
|
+
family: CoinFamily;
|
|
148
|
+
explorerUrl: string;
|
|
149
|
+
accountExplorerUrl: string;
|
|
150
|
+
}
|
|
151
|
+
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
152
|
+
name: string;
|
|
153
|
+
family: CoinFamily;
|
|
154
|
+
explorerUrl: string;
|
|
155
|
+
accountExplorerUrl: string;
|
|
156
|
+
chainId: number;
|
|
157
|
+
nativeCoinOperationHashPrefix: string;
|
|
158
|
+
tokenOperationHashPrefix: string;
|
|
159
|
+
forwarderFactoryAddress: string;
|
|
160
|
+
forwarderImplementationAddress: string;
|
|
161
|
+
walletFactoryAddress: string;
|
|
162
|
+
walletImplementationAddress: string;
|
|
163
|
+
batcherContractAddress: string;
|
|
164
|
+
}
|
|
165
|
+
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
166
|
+
name: string;
|
|
167
|
+
family: CoinFamily;
|
|
168
|
+
explorerUrl: string;
|
|
169
|
+
accountExplorerUrl: string;
|
|
170
|
+
chainId: number;
|
|
171
|
+
nativeCoinOperationHashPrefix: string;
|
|
172
|
+
tokenOperationHashPrefix: string;
|
|
173
|
+
forwarderFactoryAddress: string;
|
|
174
|
+
forwarderImplementationAddress: string;
|
|
175
|
+
walletFactoryAddress: string;
|
|
176
|
+
walletImplementationAddress: string;
|
|
177
|
+
batcherContractAddress: string;
|
|
178
|
+
}
|
|
113
179
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
114
180
|
name: string;
|
|
115
181
|
family: CoinFamily;
|
|
@@ -137,6 +203,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
137
203
|
alias: string;
|
|
138
204
|
vm: string;
|
|
139
205
|
txFee: string;
|
|
206
|
+
maxImportFee: string;
|
|
140
207
|
createSubnetTx: string;
|
|
141
208
|
createChainTx: string;
|
|
142
209
|
creationTxFee: string;
|
|
@@ -162,6 +229,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
162
229
|
hrp: string;
|
|
163
230
|
vm: string;
|
|
164
231
|
txFee: string;
|
|
232
|
+
maxImportFee: string;
|
|
165
233
|
createSubnetTx: string;
|
|
166
234
|
createChainTx: string;
|
|
167
235
|
creationTxFee: string;
|
|
@@ -180,6 +248,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
180
248
|
explorerUrl: string;
|
|
181
249
|
accountExplorerUrl: string;
|
|
182
250
|
chainId: number;
|
|
251
|
+
nativeCoinOperationHashPrefix: string;
|
|
252
|
+
tokenOperationHashPrefix: string;
|
|
253
|
+
batcherContractAddress: string;
|
|
183
254
|
}
|
|
184
255
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
185
256
|
name: string;
|
|
@@ -187,6 +258,23 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
187
258
|
explorerUrl: string;
|
|
188
259
|
accountExplorerUrl: string;
|
|
189
260
|
chainId: number;
|
|
261
|
+
nativeCoinOperationHashPrefix: string;
|
|
262
|
+
tokenOperationHashPrefix: string;
|
|
263
|
+
batcherContractAddress: string;
|
|
264
|
+
}
|
|
265
|
+
declare class LightningBitcoin extends Mainnet implements LightningNetwork {
|
|
266
|
+
name: string;
|
|
267
|
+
family: CoinFamily;
|
|
268
|
+
utxolibName: string;
|
|
269
|
+
explorerUrl: string;
|
|
270
|
+
lightningServicePubKey: string;
|
|
271
|
+
}
|
|
272
|
+
declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
|
|
273
|
+
name: string;
|
|
274
|
+
family: CoinFamily;
|
|
275
|
+
utxolibName: string;
|
|
276
|
+
explorerUrl: string;
|
|
277
|
+
lightningServicePubKey: string;
|
|
190
278
|
}
|
|
191
279
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
192
280
|
name: string;
|
|
@@ -200,6 +288,24 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
200
288
|
utxolibName: string;
|
|
201
289
|
explorerUrl: string;
|
|
202
290
|
}
|
|
291
|
+
declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
|
|
292
|
+
name: string;
|
|
293
|
+
family: CoinFamily;
|
|
294
|
+
utxolibName: string;
|
|
295
|
+
explorerUrl: string;
|
|
296
|
+
}
|
|
297
|
+
declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
|
|
298
|
+
name: string;
|
|
299
|
+
family: CoinFamily;
|
|
300
|
+
utxolibName: string;
|
|
301
|
+
explorerUrl: string;
|
|
302
|
+
}
|
|
303
|
+
declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
|
|
304
|
+
name: string;
|
|
305
|
+
family: CoinFamily;
|
|
306
|
+
utxolibName: string;
|
|
307
|
+
explorerUrl: string;
|
|
308
|
+
}
|
|
203
309
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
204
310
|
name: string;
|
|
205
311
|
family: CoinFamily;
|
|
@@ -280,7 +386,6 @@ declare class Polkadot extends Mainnet implements DotNetwork {
|
|
|
280
386
|
genesisHash: string;
|
|
281
387
|
specVersion: number;
|
|
282
388
|
chainName: string;
|
|
283
|
-
metadataRpc: `0x${string}`;
|
|
284
389
|
txVersion: number;
|
|
285
390
|
}
|
|
286
391
|
declare class PolkadotTestnet extends Testnet implements DotNetwork {
|
|
@@ -291,7 +396,6 @@ declare class PolkadotTestnet extends Testnet implements DotNetwork {
|
|
|
291
396
|
genesisHash: string;
|
|
292
397
|
specVersion: number;
|
|
293
398
|
chainName: string;
|
|
294
|
-
metadataRpc: `0x${string}`;
|
|
295
399
|
txVersion: number;
|
|
296
400
|
}
|
|
297
401
|
declare class Celo extends Mainnet implements EthereumNetwork {
|
|
@@ -300,6 +404,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
300
404
|
explorerUrl: string;
|
|
301
405
|
accountExplorerUrl: string;
|
|
302
406
|
chainId: number;
|
|
407
|
+
nativeCoinOperationHashPrefix: string;
|
|
408
|
+
tokenOperationHashPrefix: string;
|
|
303
409
|
}
|
|
304
410
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
305
411
|
name: string;
|
|
@@ -307,6 +413,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
307
413
|
explorerUrl: string;
|
|
308
414
|
accountExplorerUrl: string;
|
|
309
415
|
chainId: number;
|
|
416
|
+
nativeCoinOperationHashPrefix: string;
|
|
417
|
+
tokenOperationHashPrefix: string;
|
|
310
418
|
}
|
|
311
419
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
312
420
|
name: string;
|
|
@@ -325,10 +433,13 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
325
433
|
family: CoinFamily;
|
|
326
434
|
explorerUrl: string;
|
|
327
435
|
accountExplorerUrl: string;
|
|
436
|
+
blockExplorerUrl: string;
|
|
328
437
|
chainId: number;
|
|
329
438
|
batcherContractAddress: string;
|
|
330
439
|
forwarderFactoryAddress: string;
|
|
331
440
|
forwarderImplementationAddress: string;
|
|
441
|
+
nativeCoinOperationHashPrefix: string;
|
|
442
|
+
tokenOperationHashPrefix: string;
|
|
332
443
|
}
|
|
333
444
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
334
445
|
name: string;
|
|
@@ -345,6 +456,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
345
456
|
batcherContractAddress: string;
|
|
346
457
|
forwarderFactoryAddress: string;
|
|
347
458
|
forwarderImplementationAddress: string;
|
|
459
|
+
nativeCoinOperationHashPrefix: string;
|
|
460
|
+
tokenOperationHashPrefix: string;
|
|
348
461
|
}
|
|
349
462
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
350
463
|
name: string;
|
|
@@ -361,16 +474,34 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
361
474
|
batcherContractAddress: string;
|
|
362
475
|
forwarderFactoryAddress: string;
|
|
363
476
|
forwarderImplementationAddress: string;
|
|
477
|
+
nativeCoinOperationHashPrefix: string;
|
|
478
|
+
tokenOperationHashPrefix: string;
|
|
364
479
|
}
|
|
365
480
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
366
481
|
name: string;
|
|
367
482
|
family: CoinFamily;
|
|
368
483
|
explorerUrl: string;
|
|
369
484
|
accountExplorerUrl: string;
|
|
485
|
+
blockExplorerUrl: string;
|
|
486
|
+
chainId: number;
|
|
487
|
+
batcherContractAddress: string;
|
|
488
|
+
forwarderFactoryAddress: string;
|
|
489
|
+
forwarderImplementationAddress: string;
|
|
490
|
+
nativeCoinOperationHashPrefix: string;
|
|
491
|
+
tokenOperationHashPrefix: string;
|
|
492
|
+
}
|
|
493
|
+
declare class Holesky extends Testnet implements EthereumNetwork {
|
|
494
|
+
name: string;
|
|
495
|
+
family: CoinFamily;
|
|
496
|
+
explorerUrl: string;
|
|
497
|
+
accountExplorerUrl: string;
|
|
498
|
+
blockExplorerUrl: string;
|
|
370
499
|
chainId: number;
|
|
371
500
|
batcherContractAddress: string;
|
|
372
501
|
forwarderFactoryAddress: string;
|
|
373
502
|
forwarderImplementationAddress: string;
|
|
503
|
+
nativeCoinOperationHashPrefix: string;
|
|
504
|
+
tokenOperationHashPrefix: string;
|
|
374
505
|
}
|
|
375
506
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
376
507
|
name: string;
|
|
@@ -378,6 +509,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
378
509
|
explorerUrl: string;
|
|
379
510
|
accountExplorerUrl: string;
|
|
380
511
|
chainId: number;
|
|
512
|
+
nativeCoinOperationHashPrefix: string;
|
|
513
|
+
tokenOperationHashPrefix: string;
|
|
381
514
|
}
|
|
382
515
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
383
516
|
name: string;
|
|
@@ -385,6 +518,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
385
518
|
explorerUrl: string;
|
|
386
519
|
accountExplorerUrl: string;
|
|
387
520
|
chainId: number;
|
|
521
|
+
nativeCoinOperationHashPrefix: string;
|
|
522
|
+
tokenOperationHashPrefix: string;
|
|
388
523
|
}
|
|
389
524
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
390
525
|
name: string;
|
|
@@ -434,6 +569,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
434
569
|
explorerUrl: string;
|
|
435
570
|
accountExplorerUrl: string;
|
|
436
571
|
chainId: number;
|
|
572
|
+
nativeCoinOperationHashPrefix: string;
|
|
573
|
+
tokenOperationHashPrefix: string;
|
|
437
574
|
}
|
|
438
575
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
439
576
|
name: string;
|
|
@@ -441,6 +578,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
441
578
|
explorerUrl: string;
|
|
442
579
|
accountExplorerUrl: string;
|
|
443
580
|
chainId: number;
|
|
581
|
+
nativeCoinOperationHashPrefix: string;
|
|
582
|
+
tokenOperationHashPrefix: string;
|
|
444
583
|
}
|
|
445
584
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
446
585
|
name: string;
|
|
@@ -482,6 +621,176 @@ declare class AtomTestnet extends Testnet implements AccountNetwork {
|
|
|
482
621
|
family: CoinFamily;
|
|
483
622
|
explorerUrl: string;
|
|
484
623
|
}
|
|
624
|
+
declare class Osmo extends Mainnet implements AccountNetwork {
|
|
625
|
+
name: string;
|
|
626
|
+
family: CoinFamily;
|
|
627
|
+
explorerUrl: string;
|
|
628
|
+
}
|
|
629
|
+
declare class OsmoTestnet extends Testnet implements AccountNetwork {
|
|
630
|
+
name: string;
|
|
631
|
+
family: CoinFamily;
|
|
632
|
+
explorerUrl: string;
|
|
633
|
+
}
|
|
634
|
+
declare class Tia extends Mainnet implements AccountNetwork {
|
|
635
|
+
name: string;
|
|
636
|
+
family: CoinFamily;
|
|
637
|
+
explorerUrl: string;
|
|
638
|
+
}
|
|
639
|
+
declare class TiaTestnet extends Testnet implements AccountNetwork {
|
|
640
|
+
name: string;
|
|
641
|
+
family: CoinFamily;
|
|
642
|
+
explorerUrl: string;
|
|
643
|
+
}
|
|
644
|
+
declare class Hash extends Mainnet implements AccountNetwork {
|
|
645
|
+
name: string;
|
|
646
|
+
family: CoinFamily;
|
|
647
|
+
explorerUrl: string;
|
|
648
|
+
}
|
|
649
|
+
declare class HashTestnet extends Testnet implements AccountNetwork {
|
|
650
|
+
name: string;
|
|
651
|
+
family: CoinFamily;
|
|
652
|
+
explorerUrl: string;
|
|
653
|
+
}
|
|
654
|
+
declare class Bld extends Mainnet implements AccountNetwork {
|
|
655
|
+
name: string;
|
|
656
|
+
family: CoinFamily;
|
|
657
|
+
explorerUrl: string;
|
|
658
|
+
}
|
|
659
|
+
declare class BldTestnet extends Testnet implements AccountNetwork {
|
|
660
|
+
name: string;
|
|
661
|
+
family: CoinFamily;
|
|
662
|
+
explorerUrl: string;
|
|
663
|
+
}
|
|
664
|
+
declare class Sei extends Mainnet implements AccountNetwork {
|
|
665
|
+
name: string;
|
|
666
|
+
family: CoinFamily;
|
|
667
|
+
explorerUrl: string;
|
|
668
|
+
}
|
|
669
|
+
declare class SeiTestnet extends Testnet implements AccountNetwork {
|
|
670
|
+
name: string;
|
|
671
|
+
family: CoinFamily;
|
|
672
|
+
explorerUrl: string;
|
|
673
|
+
}
|
|
674
|
+
declare class Zeta extends Mainnet implements AccountNetwork {
|
|
675
|
+
name: string;
|
|
676
|
+
family: CoinFamily;
|
|
677
|
+
explorerUrl: string;
|
|
678
|
+
}
|
|
679
|
+
declare class ZetaTestnet extends Testnet implements AccountNetwork {
|
|
680
|
+
name: string;
|
|
681
|
+
family: CoinFamily;
|
|
682
|
+
explorerUrl: string;
|
|
683
|
+
}
|
|
684
|
+
declare class Injective extends Mainnet implements AccountNetwork {
|
|
685
|
+
name: string;
|
|
686
|
+
family: CoinFamily;
|
|
687
|
+
explorerUrl: string;
|
|
688
|
+
}
|
|
689
|
+
declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
690
|
+
name: string;
|
|
691
|
+
family: CoinFamily;
|
|
692
|
+
explorerUrl: string;
|
|
693
|
+
}
|
|
694
|
+
declare class Kava extends Mainnet implements AccountNetwork {
|
|
695
|
+
name: string;
|
|
696
|
+
family: CoinFamily;
|
|
697
|
+
explorerUrl: string;
|
|
698
|
+
}
|
|
699
|
+
declare class KavaTestnet extends Testnet implements AccountNetwork {
|
|
700
|
+
name: string;
|
|
701
|
+
family: CoinFamily;
|
|
702
|
+
explorerUrl: string;
|
|
703
|
+
}
|
|
704
|
+
declare class Ton extends Mainnet implements AccountNetwork {
|
|
705
|
+
name: string;
|
|
706
|
+
family: CoinFamily;
|
|
707
|
+
explorerUrl: string;
|
|
708
|
+
}
|
|
709
|
+
declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
710
|
+
name: string;
|
|
711
|
+
family: CoinFamily;
|
|
712
|
+
explorerUrl: string;
|
|
713
|
+
}
|
|
714
|
+
declare class Coreum extends Mainnet implements AccountNetwork {
|
|
715
|
+
name: string;
|
|
716
|
+
family: CoinFamily;
|
|
717
|
+
explorerUrl: string;
|
|
718
|
+
}
|
|
719
|
+
declare class CoreumTestnet extends Testnet implements AccountNetwork {
|
|
720
|
+
name: string;
|
|
721
|
+
family: CoinFamily;
|
|
722
|
+
explorerUrl: string;
|
|
723
|
+
}
|
|
724
|
+
declare class Rune extends Mainnet implements AccountNetwork {
|
|
725
|
+
name: string;
|
|
726
|
+
family: CoinFamily;
|
|
727
|
+
explorerUrl: string;
|
|
728
|
+
}
|
|
729
|
+
declare class RuneTestNet extends Testnet implements AccountNetwork {
|
|
730
|
+
name: string;
|
|
731
|
+
family: CoinFamily;
|
|
732
|
+
explorerUrl: string;
|
|
733
|
+
}
|
|
734
|
+
declare class Baby extends Mainnet implements AccountNetwork {
|
|
735
|
+
name: string;
|
|
736
|
+
family: CoinFamily;
|
|
737
|
+
explorerUrl: string;
|
|
738
|
+
}
|
|
739
|
+
declare class BabyTestnet extends Testnet implements AccountNetwork {
|
|
740
|
+
name: string;
|
|
741
|
+
family: CoinFamily;
|
|
742
|
+
explorerUrl: string;
|
|
743
|
+
}
|
|
744
|
+
declare class Mantra extends Mainnet implements AccountNetwork {
|
|
745
|
+
name: string;
|
|
746
|
+
family: CoinFamily;
|
|
747
|
+
explorerUrl: string;
|
|
748
|
+
}
|
|
749
|
+
declare class MantraTestnet extends Testnet implements AccountNetwork {
|
|
750
|
+
name: string;
|
|
751
|
+
family: CoinFamily;
|
|
752
|
+
explorerUrl: string;
|
|
753
|
+
}
|
|
754
|
+
declare class Cronos extends Mainnet implements AccountNetwork {
|
|
755
|
+
name: string;
|
|
756
|
+
family: CoinFamily;
|
|
757
|
+
explorerUrl: string;
|
|
758
|
+
}
|
|
759
|
+
declare class CronosTestnet extends Testnet implements AccountNetwork {
|
|
760
|
+
name: string;
|
|
761
|
+
family: CoinFamily;
|
|
762
|
+
explorerUrl: string;
|
|
763
|
+
}
|
|
764
|
+
declare class FetchAi extends Mainnet implements AccountNetwork {
|
|
765
|
+
name: string;
|
|
766
|
+
family: CoinFamily;
|
|
767
|
+
explorerUrl: string;
|
|
768
|
+
}
|
|
769
|
+
declare class FetchAiTestnet extends Testnet implements AccountNetwork {
|
|
770
|
+
name: string;
|
|
771
|
+
family: CoinFamily;
|
|
772
|
+
explorerUrl: string;
|
|
773
|
+
}
|
|
774
|
+
declare class Initia extends Mainnet implements AccountNetwork {
|
|
775
|
+
name: string;
|
|
776
|
+
family: CoinFamily;
|
|
777
|
+
explorerUrl: string;
|
|
778
|
+
}
|
|
779
|
+
declare class InitiaTestnet extends Testnet implements AccountNetwork {
|
|
780
|
+
name: string;
|
|
781
|
+
family: CoinFamily;
|
|
782
|
+
explorerUrl: string;
|
|
783
|
+
}
|
|
784
|
+
declare class Islm extends Mainnet implements AccountNetwork {
|
|
785
|
+
name: string;
|
|
786
|
+
family: CoinFamily;
|
|
787
|
+
explorerUrl: string;
|
|
788
|
+
}
|
|
789
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
790
|
+
name: string;
|
|
791
|
+
family: CoinFamily;
|
|
792
|
+
explorerUrl: string;
|
|
793
|
+
}
|
|
485
794
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
486
795
|
name: string;
|
|
487
796
|
family: CoinFamily;
|
|
@@ -516,9 +825,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
516
825
|
family: CoinFamily;
|
|
517
826
|
explorerUrl: undefined;
|
|
518
827
|
}
|
|
828
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
829
|
+
name: string;
|
|
830
|
+
family: CoinFamily;
|
|
831
|
+
explorerUrl: string;
|
|
832
|
+
}
|
|
833
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
834
|
+
name: string;
|
|
835
|
+
family: CoinFamily;
|
|
836
|
+
explorerUrl: string;
|
|
837
|
+
specName: SubstrateSpecNameType;
|
|
838
|
+
genesisHash: string;
|
|
839
|
+
specVersion: number;
|
|
840
|
+
chainName: string;
|
|
841
|
+
txVersion: number;
|
|
842
|
+
}
|
|
519
843
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
520
844
|
name: string;
|
|
521
845
|
family: CoinFamily;
|
|
846
|
+
accountExplorerUrl: string;
|
|
522
847
|
explorerUrl: string;
|
|
523
848
|
maxFeeLimit: string;
|
|
524
849
|
contractCallFeeLimit: string;
|
|
@@ -526,6 +851,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
526
851
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
527
852
|
name: string;
|
|
528
853
|
family: CoinFamily;
|
|
854
|
+
accountExplorerUrl: string;
|
|
529
855
|
explorerUrl: string;
|
|
530
856
|
maxFeeLimit: string;
|
|
531
857
|
contractCallFeeLimit: string;
|
|
@@ -589,6 +915,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
589
915
|
walletFactoryAddress: string;
|
|
590
916
|
walletImplementationAddress: string;
|
|
591
917
|
batcherContractAddress: string;
|
|
918
|
+
nativeCoinOperationHashPrefix: string;
|
|
919
|
+
tokenOperationHashPrefix: string;
|
|
592
920
|
}
|
|
593
921
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
594
922
|
name: string;
|
|
@@ -601,21 +929,351 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
601
929
|
walletFactoryAddress: string;
|
|
602
930
|
walletImplementationAddress: string;
|
|
603
931
|
batcherContractAddress: string;
|
|
932
|
+
nativeCoinOperationHashPrefix: string;
|
|
933
|
+
tokenOperationHashPrefix: string;
|
|
934
|
+
}
|
|
935
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
936
|
+
name: string;
|
|
937
|
+
family: CoinFamily;
|
|
938
|
+
explorerUrl: string;
|
|
939
|
+
accountExplorerUrl: string;
|
|
940
|
+
chainId: number;
|
|
941
|
+
nativeCoinOperationHashPrefix: string;
|
|
942
|
+
tokenOperationHashPrefix: string;
|
|
943
|
+
forwarderFactoryAddress: string;
|
|
944
|
+
forwarderImplementationAddress: string;
|
|
945
|
+
walletFactoryAddress: string;
|
|
946
|
+
walletImplementationAddress: string;
|
|
947
|
+
batcherContractAddress: string;
|
|
948
|
+
}
|
|
949
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
950
|
+
name: string;
|
|
951
|
+
family: CoinFamily;
|
|
952
|
+
explorerUrl: string;
|
|
953
|
+
accountExplorerUrl: string;
|
|
954
|
+
chainId: number;
|
|
955
|
+
nativeCoinOperationHashPrefix: string;
|
|
956
|
+
tokenOperationHashPrefix: string;
|
|
957
|
+
forwarderFactoryAddress: string;
|
|
958
|
+
forwarderImplementationAddress: string;
|
|
959
|
+
walletFactoryAddress: string;
|
|
960
|
+
walletImplementationAddress: string;
|
|
961
|
+
batcherContractAddress: string;
|
|
962
|
+
}
|
|
963
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
964
|
+
name: string;
|
|
965
|
+
family: CoinFamily;
|
|
966
|
+
explorerUrl: string;
|
|
967
|
+
accountExplorerUrl: string;
|
|
968
|
+
chainId: number;
|
|
969
|
+
nativeCoinOperationHashPrefix: string;
|
|
970
|
+
tokenOperationHashPrefix: string;
|
|
971
|
+
}
|
|
972
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
973
|
+
name: string;
|
|
974
|
+
family: CoinFamily;
|
|
975
|
+
explorerUrl: string;
|
|
976
|
+
accountExplorerUrl: string;
|
|
977
|
+
chainId: number;
|
|
978
|
+
nativeCoinOperationHashPrefix: string;
|
|
979
|
+
tokenOperationHashPrefix: string;
|
|
980
|
+
forwarderFactoryAddress: string;
|
|
981
|
+
forwarderImplementationAddress: string;
|
|
982
|
+
walletFactoryAddress: string;
|
|
983
|
+
walletImplementationAddress: string;
|
|
984
|
+
}
|
|
985
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
986
|
+
name: string;
|
|
987
|
+
family: CoinFamily;
|
|
988
|
+
explorerUrl: string;
|
|
989
|
+
accountExplorerUrl: string;
|
|
990
|
+
chainId: number;
|
|
991
|
+
nativeCoinOperationHashPrefix: string;
|
|
992
|
+
tokenOperationHashPrefix: string;
|
|
993
|
+
batcherContractAddress: string;
|
|
994
|
+
forwarderFactoryAddress: string;
|
|
995
|
+
forwarderImplementationAddress: string;
|
|
996
|
+
}
|
|
997
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
998
|
+
name: string;
|
|
999
|
+
family: CoinFamily;
|
|
1000
|
+
explorerUrl: string;
|
|
1001
|
+
accountExplorerUrl: string;
|
|
1002
|
+
chainId: number;
|
|
1003
|
+
nativeCoinOperationHashPrefix: string;
|
|
1004
|
+
tokenOperationHashPrefix: string;
|
|
1005
|
+
batcherContractAddress: string;
|
|
1006
|
+
forwarderFactoryAddress: string;
|
|
1007
|
+
forwarderImplementationAddress: string;
|
|
1008
|
+
}
|
|
1009
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
1010
|
+
name: string;
|
|
1011
|
+
family: CoinFamily;
|
|
1012
|
+
explorerUrl: string;
|
|
1013
|
+
accountExplorerUrl: string;
|
|
1014
|
+
chainId: number;
|
|
1015
|
+
nativeCoinOperationHashPrefix: string;
|
|
1016
|
+
batcherContractAddress: string;
|
|
1017
|
+
forwarderFactoryAddress: string;
|
|
1018
|
+
forwarderImplementationAddress: string;
|
|
1019
|
+
}
|
|
1020
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
1021
|
+
name: string;
|
|
1022
|
+
family: CoinFamily;
|
|
1023
|
+
explorerUrl: string;
|
|
1024
|
+
accountExplorerUrl: string;
|
|
1025
|
+
chainId: number;
|
|
1026
|
+
nativeCoinOperationHashPrefix: string;
|
|
1027
|
+
batcherContractAddress: string;
|
|
1028
|
+
forwarderFactoryAddress: string;
|
|
1029
|
+
forwarderImplementationAddress: string;
|
|
1030
|
+
}
|
|
1031
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
1032
|
+
name: string;
|
|
1033
|
+
family: CoinFamily;
|
|
1034
|
+
explorerUrl: string;
|
|
1035
|
+
accountExplorerUrl: string;
|
|
1036
|
+
chainId: number;
|
|
1037
|
+
nativeCoinOperationHashPrefix: string;
|
|
1038
|
+
batcherContractAddress: string;
|
|
1039
|
+
forwarderFactoryAddress: string;
|
|
1040
|
+
forwarderImplementationAddress: string;
|
|
1041
|
+
}
|
|
1042
|
+
declare class CoredaoTestnet extends Testnet 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 Xdc extends Mainnet 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 XdcTestnet extends Testnet 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 Wemix extends Mainnet 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 WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1087
|
+
name: string;
|
|
1088
|
+
family: CoinFamily;
|
|
1089
|
+
explorerUrl: string;
|
|
1090
|
+
accountExplorerUrl: string;
|
|
1091
|
+
chainId: number;
|
|
1092
|
+
nativeCoinOperationHashPrefix: string;
|
|
1093
|
+
batcherContractAddress: string;
|
|
1094
|
+
forwarderFactoryAddress: string;
|
|
1095
|
+
forwarderImplementationAddress: string;
|
|
1096
|
+
}
|
|
1097
|
+
declare class MonadTestnet extends Testnet implements EthereumNetwork {
|
|
1098
|
+
name: string;
|
|
1099
|
+
family: CoinFamily;
|
|
1100
|
+
explorerUrl: string;
|
|
1101
|
+
accountExplorerUrl: string;
|
|
1102
|
+
chainId: number;
|
|
1103
|
+
nativeCoinOperationHashPrefix: string;
|
|
1104
|
+
}
|
|
1105
|
+
declare class Monad extends Mainnet implements EthereumNetwork {
|
|
1106
|
+
name: string;
|
|
1107
|
+
family: CoinFamily;
|
|
1108
|
+
explorerUrl: string;
|
|
1109
|
+
chainId: number;
|
|
1110
|
+
nativeCoinOperationHashPrefix: string;
|
|
1111
|
+
}
|
|
1112
|
+
declare class World extends Mainnet implements EthereumNetwork {
|
|
1113
|
+
name: string;
|
|
1114
|
+
family: CoinFamily;
|
|
1115
|
+
explorerUrl: string;
|
|
1116
|
+
accountExplorerUrl: string;
|
|
1117
|
+
chainId: number;
|
|
1118
|
+
nativeCoinOperationHashPrefix: string;
|
|
1119
|
+
}
|
|
1120
|
+
declare class WorldTestnet extends Testnet implements EthereumNetwork {
|
|
1121
|
+
name: string;
|
|
1122
|
+
family: CoinFamily;
|
|
1123
|
+
explorerUrl: string;
|
|
1124
|
+
accountExplorerUrl: string;
|
|
1125
|
+
chainId: number;
|
|
1126
|
+
nativeCoinOperationHashPrefix: string;
|
|
1127
|
+
}
|
|
1128
|
+
declare class Soneium extends Mainnet implements EthereumNetwork {
|
|
1129
|
+
name: string;
|
|
1130
|
+
family: CoinFamily;
|
|
1131
|
+
explorerUrl: string;
|
|
1132
|
+
accountExplorerUrl: string;
|
|
1133
|
+
chainId: number;
|
|
1134
|
+
nativeCoinOperationHashPrefix: string;
|
|
1135
|
+
}
|
|
1136
|
+
declare class SoneiumTestnet extends Testnet implements EthereumNetwork {
|
|
1137
|
+
name: string;
|
|
1138
|
+
family: CoinFamily;
|
|
1139
|
+
explorerUrl: string;
|
|
1140
|
+
accountExplorerUrl: string;
|
|
1141
|
+
chainId: number;
|
|
1142
|
+
nativeCoinOperationHashPrefix: string;
|
|
1143
|
+
}
|
|
1144
|
+
declare class Somnia extends Mainnet implements EthereumNetwork {
|
|
1145
|
+
name: string;
|
|
1146
|
+
family: CoinFamily;
|
|
1147
|
+
explorerUrl: string;
|
|
1148
|
+
chainId: number;
|
|
1149
|
+
nativeCoinOperationHashPrefix: string;
|
|
1150
|
+
}
|
|
1151
|
+
declare class SomniaTestnet extends Testnet implements EthereumNetwork {
|
|
1152
|
+
name: string;
|
|
1153
|
+
family: CoinFamily;
|
|
1154
|
+
explorerUrl: string;
|
|
1155
|
+
accountExplorerUrl: string;
|
|
1156
|
+
chainId: number;
|
|
1157
|
+
nativeCoinOperationHashPrefix: string;
|
|
1158
|
+
}
|
|
1159
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1160
|
+
name: string;
|
|
1161
|
+
family: CoinFamily;
|
|
1162
|
+
explorerUrl: string;
|
|
1163
|
+
accountExplorerUrl: string;
|
|
1164
|
+
chainId: number;
|
|
1165
|
+
nativeCoinOperationHashPrefix: string;
|
|
1166
|
+
batcherContractAddress: string;
|
|
1167
|
+
forwarderFactoryAddress: string;
|
|
1168
|
+
forwarderImplementationAddress: string;
|
|
1169
|
+
}
|
|
1170
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1171
|
+
name: string;
|
|
1172
|
+
family: CoinFamily;
|
|
1173
|
+
explorerUrl: string;
|
|
1174
|
+
accountExplorerUrl: string;
|
|
1175
|
+
chainId: number;
|
|
1176
|
+
nativeCoinOperationHashPrefix: string;
|
|
1177
|
+
batcherContractAddress: string;
|
|
1178
|
+
forwarderFactoryAddress: string;
|
|
1179
|
+
forwarderImplementationAddress: string;
|
|
1180
|
+
}
|
|
1181
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1182
|
+
name: string;
|
|
1183
|
+
family: CoinFamily;
|
|
1184
|
+
explorerUrl: string;
|
|
1185
|
+
accountExplorerUrl: string;
|
|
1186
|
+
chainId: number;
|
|
1187
|
+
nativeCoinOperationHashPrefix: string;
|
|
1188
|
+
batcherContractAddress: string;
|
|
1189
|
+
forwarderFactoryAddress: string;
|
|
1190
|
+
forwarderImplementationAddress: string;
|
|
1191
|
+
}
|
|
1192
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1193
|
+
name: string;
|
|
1194
|
+
family: CoinFamily;
|
|
1195
|
+
explorerUrl: string;
|
|
1196
|
+
accountExplorerUrl: string;
|
|
1197
|
+
chainId: number;
|
|
1198
|
+
nativeCoinOperationHashPrefix: string;
|
|
1199
|
+
batcherContractAddress: string;
|
|
1200
|
+
forwarderFactoryAddress: string;
|
|
1201
|
+
forwarderImplementationAddress: string;
|
|
1202
|
+
}
|
|
1203
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1204
|
+
name: string;
|
|
1205
|
+
family: CoinFamily;
|
|
1206
|
+
explorerUrl: string;
|
|
1207
|
+
accountExplorerUrl: string;
|
|
1208
|
+
chainId: number;
|
|
1209
|
+
nativeCoinOperationHashPrefix: string;
|
|
1210
|
+
tokenOperationHashPrefix: string;
|
|
1211
|
+
forwarderFactoryAddress: string;
|
|
1212
|
+
forwarderImplementationAddress: string;
|
|
1213
|
+
walletFactoryAddress: string;
|
|
1214
|
+
walletImplementationAddress: string;
|
|
1215
|
+
}
|
|
1216
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1217
|
+
name: string;
|
|
1218
|
+
family: CoinFamily;
|
|
1219
|
+
explorerUrl: string;
|
|
1220
|
+
accountExplorerUrl: string;
|
|
1221
|
+
chainId: number;
|
|
1222
|
+
nativeCoinOperationHashPrefix: string;
|
|
1223
|
+
tokenOperationHashPrefix: string;
|
|
1224
|
+
forwarderFactoryAddress: string;
|
|
1225
|
+
forwarderImplementationAddress: string;
|
|
1226
|
+
walletFactoryAddress: string;
|
|
1227
|
+
walletImplementationAddress: string;
|
|
1228
|
+
}
|
|
1229
|
+
declare class Polymesh extends Mainnet implements AccountNetwork {
|
|
1230
|
+
name: string;
|
|
1231
|
+
family: CoinFamily;
|
|
1232
|
+
explorerUrl: string;
|
|
1233
|
+
}
|
|
1234
|
+
declare class PolymeshTestnet extends Testnet implements AccountNetwork {
|
|
1235
|
+
name: string;
|
|
1236
|
+
family: CoinFamily;
|
|
1237
|
+
explorerUrl: string;
|
|
1238
|
+
specName: SubstrateSpecNameType;
|
|
1239
|
+
genesisHash: string;
|
|
1240
|
+
specVersion: number;
|
|
1241
|
+
chainName: string;
|
|
1242
|
+
txVersion: number;
|
|
1243
|
+
}
|
|
1244
|
+
declare class Vet extends Mainnet implements AccountNetwork {
|
|
1245
|
+
name: string;
|
|
1246
|
+
family: CoinFamily;
|
|
1247
|
+
explorerUrl: string;
|
|
1248
|
+
}
|
|
1249
|
+
declare class VetTestnet extends Testnet implements AccountNetwork {
|
|
1250
|
+
name: string;
|
|
1251
|
+
family: CoinFamily;
|
|
1252
|
+
explorerUrl: string;
|
|
604
1253
|
}
|
|
605
1254
|
export declare const Networks: {
|
|
606
1255
|
main: {
|
|
607
1256
|
ada: Readonly<Ada>;
|
|
608
1257
|
algorand: Readonly<Algorand>;
|
|
1258
|
+
apt: Readonly<Apt>;
|
|
1259
|
+
arbitrum: Readonly<Arbitrum>;
|
|
609
1260
|
atom: Readonly<Atom>;
|
|
610
1261
|
avalancheC: Readonly<AvalancheC>;
|
|
611
1262
|
avalancheP: Readonly<AvalancheP>;
|
|
1263
|
+
baby: Readonly<Baby>;
|
|
1264
|
+
basechain: Readonly<BaseChain>;
|
|
612
1265
|
bitcoin: Readonly<Bitcoin>;
|
|
613
1266
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
614
1267
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
615
1268
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1269
|
+
bera: Readonly<Berachain>;
|
|
1270
|
+
bld: Readonly<Bld>;
|
|
616
1271
|
bsc: Readonly<BinanceSmartChain>;
|
|
617
1272
|
casper: Readonly<Casper>;
|
|
618
1273
|
celo: Readonly<Celo>;
|
|
1274
|
+
coredao: Readonly<Coredao>;
|
|
1275
|
+
coreum: Readonly<Coreum>;
|
|
1276
|
+
cronos: Readonly<Cronos>;
|
|
619
1277
|
dash: Readonly<Dash>;
|
|
620
1278
|
dogecoin: Readonly<Dogecoin>;
|
|
621
1279
|
dot: Readonly<Polkadot>;
|
|
@@ -626,60 +1284,131 @@ export declare const Networks: {
|
|
|
626
1284
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
627
1285
|
ethereumW: Readonly<EthereumW>;
|
|
628
1286
|
fiat: Readonly<Fiat>;
|
|
1287
|
+
fetchai: Readonly<FetchAi>;
|
|
1288
|
+
flr: Readonly<Flare>;
|
|
1289
|
+
hash: Readonly<Hash>;
|
|
629
1290
|
hedera: Readonly<Hedera>;
|
|
1291
|
+
icp: Readonly<Icp>;
|
|
1292
|
+
initia: Readonly<Initia>;
|
|
1293
|
+
injective: Readonly<Injective>;
|
|
1294
|
+
islm: Readonly<Islm>;
|
|
1295
|
+
kava: Readonly<Kava>;
|
|
1296
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
630
1297
|
litecoin: Readonly<Litecoin>;
|
|
1298
|
+
mon: Readonly<Monad>;
|
|
1299
|
+
mantra: Readonly<Mantra>;
|
|
631
1300
|
polygon: Readonly<Polygon>;
|
|
1301
|
+
polyx: Readonly<Polymesh>;
|
|
1302
|
+
oas: Readonly<Oas>;
|
|
632
1303
|
ofc: Readonly<Ofc>;
|
|
1304
|
+
optimism: Readonly<Optimism>;
|
|
1305
|
+
osmo: Readonly<Osmo>;
|
|
633
1306
|
rbtc: Readonly<Rbtc>;
|
|
1307
|
+
rune: Readonly<Rune>;
|
|
634
1308
|
stellar: Readonly<Stellar>;
|
|
1309
|
+
sei: Readonly<Sei>;
|
|
1310
|
+
sgb: Readonly<Songbird>;
|
|
635
1311
|
sol: Readonly<Sol>;
|
|
636
1312
|
sui: Readonly<Sui>;
|
|
637
1313
|
near: Readonly<Near>;
|
|
638
1314
|
stx: Readonly<Stx>;
|
|
1315
|
+
stt: Readonly<Somnia>;
|
|
1316
|
+
soneium: Readonly<Soneium>;
|
|
639
1317
|
susd: Readonly<SUSD>;
|
|
1318
|
+
tao: Readonly<Bittensor>;
|
|
1319
|
+
tia: Readonly<Tia>;
|
|
1320
|
+
ton: Readonly<Ton>;
|
|
640
1321
|
trx: Readonly<Trx>;
|
|
1322
|
+
vet: Readonly<Vet>;
|
|
1323
|
+
wemix: Readonly<Wemix>;
|
|
1324
|
+
world: Readonly<World>;
|
|
1325
|
+
xdc: Readonly<Xdc>;
|
|
641
1326
|
xrp: Readonly<Xrp>;
|
|
642
1327
|
xtz: Readonly<Xtz>;
|
|
643
1328
|
zCash: Readonly<ZCash>;
|
|
1329
|
+
zeta: Readonly<Zeta>;
|
|
1330
|
+
zkSync: Readonly<ZkSync>;
|
|
644
1331
|
};
|
|
645
1332
|
test: {
|
|
646
1333
|
ada: Readonly<AdaTestnet>;
|
|
647
1334
|
algorand: Readonly<AlgorandTestnet>;
|
|
1335
|
+
apt: Readonly<AptTestnet>;
|
|
1336
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
648
1337
|
atom: Readonly<AtomTestnet>;
|
|
649
1338
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
650
1339
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1340
|
+
baby: Readonly<BabyTestnet>;
|
|
1341
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
651
1342
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1343
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1344
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1345
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
652
1346
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
653
1347
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
654
1348
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1349
|
+
bera: Readonly<BerachainTestnet>;
|
|
1350
|
+
bld: Readonly<BldTestnet>;
|
|
655
1351
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
656
1352
|
casper: Readonly<CasperTestnet>;
|
|
1353
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
657
1354
|
celo: Readonly<CeloTestnet>;
|
|
1355
|
+
cronos: Readonly<CronosTestnet>;
|
|
658
1356
|
dash: Readonly<DashTestnet>;
|
|
659
1357
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
660
1358
|
dot: Readonly<PolkadotTestnet>;
|
|
661
1359
|
eCash: Readonly<ECashTestnet>;
|
|
662
1360
|
eos: Readonly<EosTestnet>;
|
|
663
1361
|
fiat: Readonly<FiatTestnet>;
|
|
1362
|
+
fetchai: Readonly<FetchAiTestnet>;
|
|
1363
|
+
flr: Readonly<FlareTestnet>;
|
|
1364
|
+
mon: Readonly<MonadTestnet>;
|
|
664
1365
|
pyrmont: Readonly<Pyrmont>;
|
|
665
1366
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
1367
|
+
hash: Readonly<HashTestnet>;
|
|
666
1368
|
hedera: Readonly<HederaTestnet>;
|
|
1369
|
+
icp: Readonly<IcpTestnet>;
|
|
1370
|
+
initia: Readonly<InitiaTestnet>;
|
|
1371
|
+
injective: Readonly<InjectiveTestnet>;
|
|
1372
|
+
islm: Readonly<IslmTestnet>;
|
|
1373
|
+
kava: Readonly<KavaTestnet>;
|
|
667
1374
|
kovan: Readonly<Kovan>;
|
|
668
1375
|
goerli: Readonly<Goerli>;
|
|
1376
|
+
holesky: Readonly<Holesky>;
|
|
1377
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
669
1378
|
litecoin: Readonly<LitecoinTestnet>;
|
|
1379
|
+
mantra: Readonly<MantraTestnet>;
|
|
670
1380
|
polygon: Readonly<PolygonTestnet>;
|
|
1381
|
+
polyx: Readonly<PolymeshTestnet>;
|
|
1382
|
+
oas: Readonly<OasTestnet>;
|
|
671
1383
|
ofc: Readonly<OfcTestnet>;
|
|
1384
|
+
optimism: Readonly<OptimismTestnet>;
|
|
1385
|
+
osmo: Readonly<OsmoTestnet>;
|
|
672
1386
|
rbtc: Readonly<RbtcTestnet>;
|
|
1387
|
+
rune: Readonly<RuneTestNet>;
|
|
1388
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
673
1389
|
stellar: Readonly<StellarTestnet>;
|
|
1390
|
+
sei: Readonly<SeiTestnet>;
|
|
674
1391
|
sol: Readonly<SolTestnet>;
|
|
675
1392
|
sui: Readonly<SuiTestnet>;
|
|
676
1393
|
near: Readonly<NearTestnet>;
|
|
677
1394
|
stx: Readonly<StxTestnet>;
|
|
1395
|
+
stt: Readonly<SomniaTestnet>;
|
|
1396
|
+
soneium: Readonly<SoneiumTestnet>;
|
|
678
1397
|
susd: Readonly<SUSDTestnet>;
|
|
1398
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1399
|
+
tao: Readonly<BittensorTestnet>;
|
|
1400
|
+
tia: Readonly<TiaTestnet>;
|
|
1401
|
+
ton: Readonly<TonTestnet>;
|
|
679
1402
|
trx: Readonly<TrxTestnet>;
|
|
1403
|
+
vet: Readonly<VetTestnet>;
|
|
1404
|
+
wemix: Readonly<WemixTestnet>;
|
|
1405
|
+
world: Readonly<WorldTestnet>;
|
|
1406
|
+
xdc: Readonly<XdcTestnet>;
|
|
680
1407
|
xrp: Readonly<XrpTestnet>;
|
|
681
1408
|
xtz: Readonly<XtzTestnet>;
|
|
682
1409
|
zCash: Readonly<ZCashTestnet>;
|
|
1410
|
+
zeta: Readonly<ZetaTestnet>;
|
|
1411
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
683
1412
|
};
|
|
684
1413
|
};
|
|
685
1414
|
export {};
|