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