@bitgo-beta/statics 15.1.1-beta.70 → 15.1.1-beta.700
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 +2547 -0
- package/dist/src/account.d.ts +278 -11
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +461 -53
- package/dist/src/ada.d.ts.map +1 -1
- package/dist/src/ada.js +7 -3
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +6 -3
- package/dist/src/base.d.ts +1204 -35
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1245 -46
- 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 +15 -0
- package/dist/src/coins.d.ts +0 -1
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +3007 -1361
- package/dist/src/index.d.ts +2 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +12 -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 +2 -0
- package/dist/src/map.d.ts.map +1 -1
- package/dist/src/map.js +46 -3
- package/dist/src/networks.d.ts +474 -1
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +639 -42
- package/dist/src/ofc.d.ts +240 -0
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +508 -14
- package/dist/src/tokenConfig.d.ts +59 -13
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +128 -7
- package/dist/src/utxo.d.ts +3 -1
- package/dist/src/utxo.d.ts.map +1 -1
- package/dist/src/utxo.js +77 -3
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +2 -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,14 +48,17 @@ 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 BittensorSpecNameType = 'kusama' | 'polkadot' | 'westend' | 'statemint' | 'statemine' | 'node-subtensor';
|
|
51
62
|
export interface DotNetwork extends AccountNetwork {
|
|
52
63
|
readonly specName: PolkadotSpecNameType;
|
|
53
64
|
readonly genesisHash: string;
|
|
@@ -60,6 +71,8 @@ export interface EthereumNetwork extends AccountNetwork {
|
|
|
60
71
|
readonly batcherContractAddress?: string;
|
|
61
72
|
readonly forwarderFactoryAddress?: string;
|
|
62
73
|
readonly forwarderImplementationAddress?: string;
|
|
74
|
+
readonly nativeCoinOperationHashPrefix?: string;
|
|
75
|
+
readonly tokenOperationHashPrefix?: string;
|
|
63
76
|
}
|
|
64
77
|
export interface TronNetwork extends AccountNetwork {
|
|
65
78
|
maxFeeLimit: string;
|
|
@@ -109,6 +122,56 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
|
|
|
109
122
|
poolDeposit: number;
|
|
110
123
|
stakeKeyDeposit: number;
|
|
111
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
|
+
}
|
|
144
|
+
declare class IcpTestnet extends Testnet implements AccountNetwork {
|
|
145
|
+
name: string;
|
|
146
|
+
family: CoinFamily;
|
|
147
|
+
explorerUrl: string;
|
|
148
|
+
}
|
|
149
|
+
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
150
|
+
name: string;
|
|
151
|
+
family: CoinFamily;
|
|
152
|
+
explorerUrl: string;
|
|
153
|
+
accountExplorerUrl: string;
|
|
154
|
+
chainId: number;
|
|
155
|
+
nativeCoinOperationHashPrefix: string;
|
|
156
|
+
tokenOperationHashPrefix: string;
|
|
157
|
+
forwarderFactoryAddress: string;
|
|
158
|
+
forwarderImplementationAddress: string;
|
|
159
|
+
walletFactoryAddress: string;
|
|
160
|
+
walletImplementationAddress: string;
|
|
161
|
+
}
|
|
162
|
+
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
163
|
+
name: string;
|
|
164
|
+
family: CoinFamily;
|
|
165
|
+
explorerUrl: string;
|
|
166
|
+
accountExplorerUrl: string;
|
|
167
|
+
chainId: number;
|
|
168
|
+
nativeCoinOperationHashPrefix: string;
|
|
169
|
+
tokenOperationHashPrefix: string;
|
|
170
|
+
forwarderFactoryAddress: string;
|
|
171
|
+
forwarderImplementationAddress: string;
|
|
172
|
+
walletFactoryAddress: string;
|
|
173
|
+
walletImplementationAddress: string;
|
|
174
|
+
}
|
|
112
175
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
113
176
|
name: string;
|
|
114
177
|
family: CoinFamily;
|
|
@@ -136,6 +199,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
136
199
|
alias: string;
|
|
137
200
|
vm: string;
|
|
138
201
|
txFee: string;
|
|
202
|
+
maxImportFee: string;
|
|
139
203
|
createSubnetTx: string;
|
|
140
204
|
createChainTx: string;
|
|
141
205
|
creationTxFee: string;
|
|
@@ -161,6 +225,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
161
225
|
hrp: string;
|
|
162
226
|
vm: string;
|
|
163
227
|
txFee: string;
|
|
228
|
+
maxImportFee: string;
|
|
164
229
|
createSubnetTx: string;
|
|
165
230
|
createChainTx: string;
|
|
166
231
|
creationTxFee: string;
|
|
@@ -179,6 +244,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
179
244
|
explorerUrl: string;
|
|
180
245
|
accountExplorerUrl: string;
|
|
181
246
|
chainId: number;
|
|
247
|
+
nativeCoinOperationHashPrefix: string;
|
|
248
|
+
tokenOperationHashPrefix: string;
|
|
249
|
+
batcherContractAddress: string;
|
|
182
250
|
}
|
|
183
251
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
184
252
|
name: string;
|
|
@@ -186,6 +254,23 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
186
254
|
explorerUrl: string;
|
|
187
255
|
accountExplorerUrl: string;
|
|
188
256
|
chainId: number;
|
|
257
|
+
nativeCoinOperationHashPrefix: string;
|
|
258
|
+
tokenOperationHashPrefix: string;
|
|
259
|
+
batcherContractAddress: string;
|
|
260
|
+
}
|
|
261
|
+
declare class LightningBitcoin extends Mainnet implements LightningNetwork {
|
|
262
|
+
name: string;
|
|
263
|
+
family: CoinFamily;
|
|
264
|
+
utxolibName: string;
|
|
265
|
+
explorerUrl: string;
|
|
266
|
+
lightningServicePubKey: string;
|
|
267
|
+
}
|
|
268
|
+
declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
|
|
269
|
+
name: string;
|
|
270
|
+
family: CoinFamily;
|
|
271
|
+
utxolibName: string;
|
|
272
|
+
explorerUrl: string;
|
|
273
|
+
lightningServicePubKey: string;
|
|
189
274
|
}
|
|
190
275
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
191
276
|
name: string;
|
|
@@ -199,6 +284,24 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
199
284
|
utxolibName: string;
|
|
200
285
|
explorerUrl: string;
|
|
201
286
|
}
|
|
287
|
+
declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
|
|
288
|
+
name: string;
|
|
289
|
+
family: CoinFamily;
|
|
290
|
+
utxolibName: string;
|
|
291
|
+
explorerUrl: string;
|
|
292
|
+
}
|
|
293
|
+
declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
|
|
294
|
+
name: string;
|
|
295
|
+
family: CoinFamily;
|
|
296
|
+
utxolibName: string;
|
|
297
|
+
explorerUrl: string;
|
|
298
|
+
}
|
|
299
|
+
declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
|
|
300
|
+
name: string;
|
|
301
|
+
family: CoinFamily;
|
|
302
|
+
utxolibName: string;
|
|
303
|
+
explorerUrl: string;
|
|
304
|
+
}
|
|
202
305
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
203
306
|
name: string;
|
|
204
307
|
family: CoinFamily;
|
|
@@ -297,6 +400,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
297
400
|
explorerUrl: string;
|
|
298
401
|
accountExplorerUrl: string;
|
|
299
402
|
chainId: number;
|
|
403
|
+
nativeCoinOperationHashPrefix: string;
|
|
404
|
+
tokenOperationHashPrefix: string;
|
|
300
405
|
}
|
|
301
406
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
302
407
|
name: string;
|
|
@@ -304,6 +409,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
304
409
|
explorerUrl: string;
|
|
305
410
|
accountExplorerUrl: string;
|
|
306
411
|
chainId: number;
|
|
412
|
+
nativeCoinOperationHashPrefix: string;
|
|
413
|
+
tokenOperationHashPrefix: string;
|
|
307
414
|
}
|
|
308
415
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
309
416
|
name: string;
|
|
@@ -322,10 +429,13 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
322
429
|
family: CoinFamily;
|
|
323
430
|
explorerUrl: string;
|
|
324
431
|
accountExplorerUrl: string;
|
|
432
|
+
blockExplorerUrl: string;
|
|
325
433
|
chainId: number;
|
|
326
434
|
batcherContractAddress: string;
|
|
327
435
|
forwarderFactoryAddress: string;
|
|
328
436
|
forwarderImplementationAddress: string;
|
|
437
|
+
nativeCoinOperationHashPrefix: string;
|
|
438
|
+
tokenOperationHashPrefix: string;
|
|
329
439
|
}
|
|
330
440
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
331
441
|
name: string;
|
|
@@ -342,6 +452,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
342
452
|
batcherContractAddress: string;
|
|
343
453
|
forwarderFactoryAddress: string;
|
|
344
454
|
forwarderImplementationAddress: string;
|
|
455
|
+
nativeCoinOperationHashPrefix: string;
|
|
456
|
+
tokenOperationHashPrefix: string;
|
|
345
457
|
}
|
|
346
458
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
347
459
|
name: string;
|
|
@@ -358,16 +470,34 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
358
470
|
batcherContractAddress: string;
|
|
359
471
|
forwarderFactoryAddress: string;
|
|
360
472
|
forwarderImplementationAddress: string;
|
|
473
|
+
nativeCoinOperationHashPrefix: string;
|
|
474
|
+
tokenOperationHashPrefix: string;
|
|
361
475
|
}
|
|
362
476
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
363
477
|
name: string;
|
|
364
478
|
family: CoinFamily;
|
|
365
479
|
explorerUrl: string;
|
|
366
480
|
accountExplorerUrl: string;
|
|
481
|
+
blockExplorerUrl: string;
|
|
482
|
+
chainId: number;
|
|
483
|
+
batcherContractAddress: string;
|
|
484
|
+
forwarderFactoryAddress: string;
|
|
485
|
+
forwarderImplementationAddress: string;
|
|
486
|
+
nativeCoinOperationHashPrefix: string;
|
|
487
|
+
tokenOperationHashPrefix: string;
|
|
488
|
+
}
|
|
489
|
+
declare class Holesky extends Testnet implements EthereumNetwork {
|
|
490
|
+
name: string;
|
|
491
|
+
family: CoinFamily;
|
|
492
|
+
explorerUrl: string;
|
|
493
|
+
accountExplorerUrl: string;
|
|
494
|
+
blockExplorerUrl: string;
|
|
367
495
|
chainId: number;
|
|
368
496
|
batcherContractAddress: string;
|
|
369
497
|
forwarderFactoryAddress: string;
|
|
370
498
|
forwarderImplementationAddress: string;
|
|
499
|
+
nativeCoinOperationHashPrefix: string;
|
|
500
|
+
tokenOperationHashPrefix: string;
|
|
371
501
|
}
|
|
372
502
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
373
503
|
name: string;
|
|
@@ -375,6 +505,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
375
505
|
explorerUrl: string;
|
|
376
506
|
accountExplorerUrl: string;
|
|
377
507
|
chainId: number;
|
|
508
|
+
nativeCoinOperationHashPrefix: string;
|
|
509
|
+
tokenOperationHashPrefix: string;
|
|
378
510
|
}
|
|
379
511
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
380
512
|
name: string;
|
|
@@ -382,6 +514,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
382
514
|
explorerUrl: string;
|
|
383
515
|
accountExplorerUrl: string;
|
|
384
516
|
chainId: number;
|
|
517
|
+
nativeCoinOperationHashPrefix: string;
|
|
518
|
+
tokenOperationHashPrefix: string;
|
|
385
519
|
}
|
|
386
520
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
387
521
|
name: string;
|
|
@@ -431,6 +565,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
431
565
|
explorerUrl: string;
|
|
432
566
|
accountExplorerUrl: string;
|
|
433
567
|
chainId: number;
|
|
568
|
+
nativeCoinOperationHashPrefix: string;
|
|
569
|
+
tokenOperationHashPrefix: string;
|
|
434
570
|
}
|
|
435
571
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
436
572
|
name: string;
|
|
@@ -438,6 +574,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
438
574
|
explorerUrl: string;
|
|
439
575
|
accountExplorerUrl: string;
|
|
440
576
|
chainId: number;
|
|
577
|
+
nativeCoinOperationHashPrefix: string;
|
|
578
|
+
tokenOperationHashPrefix: string;
|
|
441
579
|
}
|
|
442
580
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
443
581
|
name: string;
|
|
@@ -549,6 +687,66 @@ declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
|
549
687
|
family: CoinFamily;
|
|
550
688
|
explorerUrl: string;
|
|
551
689
|
}
|
|
690
|
+
declare class Kava extends Mainnet implements AccountNetwork {
|
|
691
|
+
name: string;
|
|
692
|
+
family: CoinFamily;
|
|
693
|
+
explorerUrl: string;
|
|
694
|
+
}
|
|
695
|
+
declare class KavaTestnet extends Testnet implements AccountNetwork {
|
|
696
|
+
name: string;
|
|
697
|
+
family: CoinFamily;
|
|
698
|
+
explorerUrl: string;
|
|
699
|
+
}
|
|
700
|
+
declare class Ton extends Mainnet implements AccountNetwork {
|
|
701
|
+
name: string;
|
|
702
|
+
family: CoinFamily;
|
|
703
|
+
explorerUrl: string;
|
|
704
|
+
}
|
|
705
|
+
declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
706
|
+
name: string;
|
|
707
|
+
family: CoinFamily;
|
|
708
|
+
explorerUrl: string;
|
|
709
|
+
}
|
|
710
|
+
declare class Coreum extends Mainnet implements AccountNetwork {
|
|
711
|
+
name: string;
|
|
712
|
+
family: CoinFamily;
|
|
713
|
+
explorerUrl: string;
|
|
714
|
+
}
|
|
715
|
+
declare class CoreumTestnet extends Testnet implements AccountNetwork {
|
|
716
|
+
name: string;
|
|
717
|
+
family: CoinFamily;
|
|
718
|
+
explorerUrl: string;
|
|
719
|
+
}
|
|
720
|
+
declare class Rune extends Mainnet implements AccountNetwork {
|
|
721
|
+
name: string;
|
|
722
|
+
family: CoinFamily;
|
|
723
|
+
explorerUrl: string;
|
|
724
|
+
}
|
|
725
|
+
declare class RuneTestNet extends Testnet implements AccountNetwork {
|
|
726
|
+
name: string;
|
|
727
|
+
family: CoinFamily;
|
|
728
|
+
explorerUrl: string;
|
|
729
|
+
}
|
|
730
|
+
declare class Baby extends Mainnet implements AccountNetwork {
|
|
731
|
+
name: string;
|
|
732
|
+
family: CoinFamily;
|
|
733
|
+
explorerUrl: string;
|
|
734
|
+
}
|
|
735
|
+
declare class BabyTestnet extends Testnet implements AccountNetwork {
|
|
736
|
+
name: string;
|
|
737
|
+
family: CoinFamily;
|
|
738
|
+
explorerUrl: string;
|
|
739
|
+
}
|
|
740
|
+
declare class Islm extends Mainnet implements AccountNetwork {
|
|
741
|
+
name: string;
|
|
742
|
+
family: CoinFamily;
|
|
743
|
+
explorerUrl: string;
|
|
744
|
+
}
|
|
745
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
746
|
+
name: string;
|
|
747
|
+
family: CoinFamily;
|
|
748
|
+
explorerUrl: string;
|
|
749
|
+
}
|
|
552
750
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
553
751
|
name: string;
|
|
554
752
|
family: CoinFamily;
|
|
@@ -583,9 +781,25 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
583
781
|
family: CoinFamily;
|
|
584
782
|
explorerUrl: undefined;
|
|
585
783
|
}
|
|
784
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
785
|
+
name: string;
|
|
786
|
+
family: CoinFamily;
|
|
787
|
+
explorerUrl: string;
|
|
788
|
+
}
|
|
789
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
790
|
+
name: string;
|
|
791
|
+
family: CoinFamily;
|
|
792
|
+
explorerUrl: string;
|
|
793
|
+
specName: BittensorSpecNameType;
|
|
794
|
+
genesisHash: string;
|
|
795
|
+
specVersion: number;
|
|
796
|
+
chainName: string;
|
|
797
|
+
txVersion: number;
|
|
798
|
+
}
|
|
586
799
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
587
800
|
name: string;
|
|
588
801
|
family: CoinFamily;
|
|
802
|
+
accountExplorerUrl: string;
|
|
589
803
|
explorerUrl: string;
|
|
590
804
|
maxFeeLimit: string;
|
|
591
805
|
contractCallFeeLimit: string;
|
|
@@ -593,6 +807,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
593
807
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
594
808
|
name: string;
|
|
595
809
|
family: CoinFamily;
|
|
810
|
+
accountExplorerUrl: string;
|
|
596
811
|
explorerUrl: string;
|
|
597
812
|
maxFeeLimit: string;
|
|
598
813
|
contractCallFeeLimit: string;
|
|
@@ -611,11 +826,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
|
|
|
611
826
|
name: string;
|
|
612
827
|
family: CoinFamily;
|
|
613
828
|
explorerUrl: string;
|
|
829
|
+
accountExplorerUrl: string;
|
|
614
830
|
}
|
|
615
831
|
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
616
832
|
name: string;
|
|
617
833
|
family: CoinFamily;
|
|
618
834
|
explorerUrl: string;
|
|
835
|
+
accountExplorerUrl: string;
|
|
619
836
|
}
|
|
620
837
|
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
621
838
|
name: string;
|
|
@@ -654,6 +871,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
654
871
|
walletFactoryAddress: string;
|
|
655
872
|
walletImplementationAddress: string;
|
|
656
873
|
batcherContractAddress: string;
|
|
874
|
+
nativeCoinOperationHashPrefix: string;
|
|
875
|
+
tokenOperationHashPrefix: string;
|
|
657
876
|
}
|
|
658
877
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
659
878
|
name: string;
|
|
@@ -666,22 +885,237 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
666
885
|
walletFactoryAddress: string;
|
|
667
886
|
walletImplementationAddress: string;
|
|
668
887
|
batcherContractAddress: string;
|
|
888
|
+
nativeCoinOperationHashPrefix: string;
|
|
889
|
+
tokenOperationHashPrefix: string;
|
|
890
|
+
}
|
|
891
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
892
|
+
name: string;
|
|
893
|
+
family: CoinFamily;
|
|
894
|
+
explorerUrl: string;
|
|
895
|
+
accountExplorerUrl: string;
|
|
896
|
+
chainId: number;
|
|
897
|
+
nativeCoinOperationHashPrefix: string;
|
|
898
|
+
tokenOperationHashPrefix: string;
|
|
899
|
+
forwarderFactoryAddress: string;
|
|
900
|
+
forwarderImplementationAddress: string;
|
|
901
|
+
walletFactoryAddress: string;
|
|
902
|
+
walletImplementationAddress: string;
|
|
903
|
+
}
|
|
904
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
905
|
+
name: string;
|
|
906
|
+
family: CoinFamily;
|
|
907
|
+
explorerUrl: string;
|
|
908
|
+
accountExplorerUrl: string;
|
|
909
|
+
chainId: number;
|
|
910
|
+
nativeCoinOperationHashPrefix: string;
|
|
911
|
+
tokenOperationHashPrefix: string;
|
|
912
|
+
forwarderFactoryAddress: string;
|
|
913
|
+
forwarderImplementationAddress: string;
|
|
914
|
+
walletFactoryAddress: string;
|
|
915
|
+
walletImplementationAddress: string;
|
|
916
|
+
}
|
|
917
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
918
|
+
name: string;
|
|
919
|
+
family: CoinFamily;
|
|
920
|
+
explorerUrl: string;
|
|
921
|
+
accountExplorerUrl: string;
|
|
922
|
+
chainId: number;
|
|
923
|
+
nativeCoinOperationHashPrefix: string;
|
|
924
|
+
tokenOperationHashPrefix: string;
|
|
925
|
+
}
|
|
926
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
927
|
+
name: string;
|
|
928
|
+
family: CoinFamily;
|
|
929
|
+
explorerUrl: string;
|
|
930
|
+
accountExplorerUrl: string;
|
|
931
|
+
chainId: number;
|
|
932
|
+
nativeCoinOperationHashPrefix: string;
|
|
933
|
+
tokenOperationHashPrefix: string;
|
|
934
|
+
forwarderFactoryAddress: string;
|
|
935
|
+
forwarderImplementationAddress: string;
|
|
936
|
+
walletFactoryAddress: string;
|
|
937
|
+
walletImplementationAddress: string;
|
|
938
|
+
}
|
|
939
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
940
|
+
name: string;
|
|
941
|
+
family: CoinFamily;
|
|
942
|
+
explorerUrl: string;
|
|
943
|
+
accountExplorerUrl: string;
|
|
944
|
+
chainId: number;
|
|
945
|
+
nativeCoinOperationHashPrefix: string;
|
|
946
|
+
tokenOperationHashPrefix: string;
|
|
947
|
+
batcherContractAddress: string;
|
|
948
|
+
forwarderFactoryAddress: string;
|
|
949
|
+
forwarderImplementationAddress: string;
|
|
950
|
+
}
|
|
951
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
952
|
+
name: string;
|
|
953
|
+
family: CoinFamily;
|
|
954
|
+
explorerUrl: string;
|
|
955
|
+
accountExplorerUrl: string;
|
|
956
|
+
chainId: number;
|
|
957
|
+
nativeCoinOperationHashPrefix: string;
|
|
958
|
+
tokenOperationHashPrefix: string;
|
|
959
|
+
batcherContractAddress: string;
|
|
960
|
+
forwarderFactoryAddress: string;
|
|
961
|
+
forwarderImplementationAddress: string;
|
|
962
|
+
}
|
|
963
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
964
|
+
name: string;
|
|
965
|
+
family: CoinFamily;
|
|
966
|
+
explorerUrl: string;
|
|
967
|
+
accountExplorerUrl: string;
|
|
968
|
+
chainId: number;
|
|
969
|
+
nativeCoinOperationHashPrefix: string;
|
|
970
|
+
batcherContractAddress: string;
|
|
971
|
+
forwarderFactoryAddress: string;
|
|
972
|
+
forwarderImplementationAddress: string;
|
|
973
|
+
}
|
|
974
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
975
|
+
name: string;
|
|
976
|
+
family: CoinFamily;
|
|
977
|
+
explorerUrl: string;
|
|
978
|
+
accountExplorerUrl: string;
|
|
979
|
+
chainId: number;
|
|
980
|
+
nativeCoinOperationHashPrefix: string;
|
|
981
|
+
batcherContractAddress: string;
|
|
982
|
+
forwarderFactoryAddress: string;
|
|
983
|
+
forwarderImplementationAddress: string;
|
|
984
|
+
}
|
|
985
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
986
|
+
name: string;
|
|
987
|
+
family: CoinFamily;
|
|
988
|
+
explorerUrl: string;
|
|
989
|
+
accountExplorerUrl: string;
|
|
990
|
+
chainId: number;
|
|
991
|
+
nativeCoinOperationHashPrefix: string;
|
|
992
|
+
batcherContractAddress: string;
|
|
993
|
+
forwarderFactoryAddress: string;
|
|
994
|
+
forwarderImplementationAddress: string;
|
|
995
|
+
}
|
|
996
|
+
declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
997
|
+
name: string;
|
|
998
|
+
family: CoinFamily;
|
|
999
|
+
explorerUrl: string;
|
|
1000
|
+
accountExplorerUrl: string;
|
|
1001
|
+
chainId: number;
|
|
1002
|
+
nativeCoinOperationHashPrefix: string;
|
|
1003
|
+
batcherContractAddress: string;
|
|
1004
|
+
forwarderFactoryAddress: string;
|
|
1005
|
+
forwarderImplementationAddress: string;
|
|
1006
|
+
}
|
|
1007
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
1008
|
+
name: string;
|
|
1009
|
+
family: CoinFamily;
|
|
1010
|
+
explorerUrl: string;
|
|
1011
|
+
accountExplorerUrl: string;
|
|
1012
|
+
chainId: number;
|
|
1013
|
+
nativeCoinOperationHashPrefix: string;
|
|
1014
|
+
}
|
|
1015
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1016
|
+
name: string;
|
|
1017
|
+
family: CoinFamily;
|
|
1018
|
+
explorerUrl: string;
|
|
1019
|
+
accountExplorerUrl: string;
|
|
1020
|
+
chainId: number;
|
|
1021
|
+
nativeCoinOperationHashPrefix: string;
|
|
1022
|
+
}
|
|
1023
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1024
|
+
name: string;
|
|
1025
|
+
family: CoinFamily;
|
|
1026
|
+
explorerUrl: string;
|
|
1027
|
+
accountExplorerUrl: string;
|
|
1028
|
+
chainId: number;
|
|
1029
|
+
nativeCoinOperationHashPrefix: string;
|
|
1030
|
+
}
|
|
1031
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1032
|
+
name: string;
|
|
1033
|
+
family: CoinFamily;
|
|
1034
|
+
explorerUrl: string;
|
|
1035
|
+
accountExplorerUrl: string;
|
|
1036
|
+
chainId: number;
|
|
1037
|
+
nativeCoinOperationHashPrefix: string;
|
|
1038
|
+
}
|
|
1039
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1040
|
+
name: string;
|
|
1041
|
+
family: CoinFamily;
|
|
1042
|
+
explorerUrl: string;
|
|
1043
|
+
accountExplorerUrl: string;
|
|
1044
|
+
chainId: number;
|
|
1045
|
+
nativeCoinOperationHashPrefix: string;
|
|
1046
|
+
}
|
|
1047
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1048
|
+
name: string;
|
|
1049
|
+
family: CoinFamily;
|
|
1050
|
+
explorerUrl: string;
|
|
1051
|
+
accountExplorerUrl: string;
|
|
1052
|
+
chainId: number;
|
|
1053
|
+
nativeCoinOperationHashPrefix: string;
|
|
1054
|
+
}
|
|
1055
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1056
|
+
name: string;
|
|
1057
|
+
family: CoinFamily;
|
|
1058
|
+
explorerUrl: string;
|
|
1059
|
+
accountExplorerUrl: string;
|
|
1060
|
+
chainId: number;
|
|
1061
|
+
nativeCoinOperationHashPrefix: string;
|
|
1062
|
+
}
|
|
1063
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1064
|
+
name: string;
|
|
1065
|
+
family: CoinFamily;
|
|
1066
|
+
explorerUrl: string;
|
|
1067
|
+
accountExplorerUrl: string;
|
|
1068
|
+
chainId: number;
|
|
1069
|
+
nativeCoinOperationHashPrefix: string;
|
|
1070
|
+
}
|
|
1071
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1072
|
+
name: string;
|
|
1073
|
+
family: CoinFamily;
|
|
1074
|
+
explorerUrl: string;
|
|
1075
|
+
accountExplorerUrl: string;
|
|
1076
|
+
chainId: number;
|
|
1077
|
+
nativeCoinOperationHashPrefix: string;
|
|
1078
|
+
tokenOperationHashPrefix: string;
|
|
1079
|
+
forwarderFactoryAddress: string;
|
|
1080
|
+
forwarderImplementationAddress: string;
|
|
1081
|
+
walletFactoryAddress: string;
|
|
1082
|
+
walletImplementationAddress: string;
|
|
1083
|
+
}
|
|
1084
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1085
|
+
name: string;
|
|
1086
|
+
family: CoinFamily;
|
|
1087
|
+
explorerUrl: string;
|
|
1088
|
+
accountExplorerUrl: string;
|
|
1089
|
+
chainId: number;
|
|
1090
|
+
nativeCoinOperationHashPrefix: string;
|
|
1091
|
+
tokenOperationHashPrefix: string;
|
|
1092
|
+
forwarderFactoryAddress: string;
|
|
1093
|
+
forwarderImplementationAddress: string;
|
|
1094
|
+
walletFactoryAddress: string;
|
|
1095
|
+
walletImplementationAddress: string;
|
|
669
1096
|
}
|
|
670
1097
|
export declare const Networks: {
|
|
671
1098
|
main: {
|
|
672
1099
|
ada: Readonly<Ada>;
|
|
673
1100
|
algorand: Readonly<Algorand>;
|
|
1101
|
+
apt: Readonly<Apt>;
|
|
1102
|
+
arbitrum: Readonly<Arbitrum>;
|
|
674
1103
|
atom: Readonly<Atom>;
|
|
675
1104
|
avalancheC: Readonly<AvalancheC>;
|
|
676
1105
|
avalancheP: Readonly<AvalancheP>;
|
|
1106
|
+
baby: Readonly<Baby>;
|
|
1107
|
+
basechain: Readonly<BaseChain>;
|
|
677
1108
|
bitcoin: Readonly<Bitcoin>;
|
|
678
1109
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
679
1110
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
680
1111
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1112
|
+
bera: Readonly<Berachain>;
|
|
681
1113
|
bld: Readonly<Bld>;
|
|
682
1114
|
bsc: Readonly<BinanceSmartChain>;
|
|
683
1115
|
casper: Readonly<Casper>;
|
|
684
1116
|
celo: Readonly<Celo>;
|
|
1117
|
+
coredao: Readonly<Coredao>;
|
|
1118
|
+
coreum: Readonly<Coreum>;
|
|
685
1119
|
dash: Readonly<Dash>;
|
|
686
1120
|
dogecoin: Readonly<Dogecoin>;
|
|
687
1121
|
dot: Readonly<Polkadot>;
|
|
@@ -692,41 +1126,64 @@ export declare const Networks: {
|
|
|
692
1126
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
693
1127
|
ethereumW: Readonly<EthereumW>;
|
|
694
1128
|
fiat: Readonly<Fiat>;
|
|
1129
|
+
flr: Readonly<Flare>;
|
|
695
1130
|
hash: Readonly<Hash>;
|
|
696
1131
|
hedera: Readonly<Hedera>;
|
|
1132
|
+
icp: Readonly<Icp>;
|
|
697
1133
|
injective: Readonly<Injective>;
|
|
1134
|
+
islm: Readonly<Islm>;
|
|
1135
|
+
kava: Readonly<Kava>;
|
|
1136
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
698
1137
|
litecoin: Readonly<Litecoin>;
|
|
699
1138
|
polygon: Readonly<Polygon>;
|
|
1139
|
+
oas: Readonly<Oas>;
|
|
700
1140
|
ofc: Readonly<Ofc>;
|
|
1141
|
+
optimism: Readonly<Optimism>;
|
|
701
1142
|
osmo: Readonly<Osmo>;
|
|
702
1143
|
rbtc: Readonly<Rbtc>;
|
|
1144
|
+
rune: Readonly<Rune>;
|
|
703
1145
|
stellar: Readonly<Stellar>;
|
|
704
1146
|
sei: Readonly<Sei>;
|
|
1147
|
+
sgb: Readonly<Songbird>;
|
|
705
1148
|
sol: Readonly<Sol>;
|
|
706
1149
|
sui: Readonly<Sui>;
|
|
707
1150
|
near: Readonly<Near>;
|
|
708
1151
|
stx: Readonly<Stx>;
|
|
709
1152
|
susd: Readonly<SUSD>;
|
|
1153
|
+
tao: Readonly<Bittensor>;
|
|
710
1154
|
tia: Readonly<Tia>;
|
|
1155
|
+
ton: Readonly<Ton>;
|
|
711
1156
|
trx: Readonly<Trx>;
|
|
1157
|
+
wemix: Readonly<Wemix>;
|
|
1158
|
+
xdc: Readonly<Xdc>;
|
|
712
1159
|
xrp: Readonly<Xrp>;
|
|
713
1160
|
xtz: Readonly<Xtz>;
|
|
714
1161
|
zCash: Readonly<ZCash>;
|
|
715
1162
|
zeta: Readonly<Zeta>;
|
|
1163
|
+
zkSync: Readonly<ZkSync>;
|
|
716
1164
|
};
|
|
717
1165
|
test: {
|
|
718
1166
|
ada: Readonly<AdaTestnet>;
|
|
719
1167
|
algorand: Readonly<AlgorandTestnet>;
|
|
1168
|
+
apt: Readonly<AptTestnet>;
|
|
1169
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
720
1170
|
atom: Readonly<AtomTestnet>;
|
|
721
1171
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
722
1172
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1173
|
+
baby: Readonly<BabyTestnet>;
|
|
1174
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
723
1175
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1176
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1177
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1178
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
724
1179
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
725
1180
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
726
1181
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1182
|
+
bera: Readonly<BerachainTestnet>;
|
|
727
1183
|
bld: Readonly<BldTestnet>;
|
|
728
1184
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
729
1185
|
casper: Readonly<CasperTestnet>;
|
|
1186
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
730
1187
|
celo: Readonly<CeloTestnet>;
|
|
731
1188
|
dash: Readonly<DashTestnet>;
|
|
732
1189
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
@@ -734,18 +1191,28 @@ export declare const Networks: {
|
|
|
734
1191
|
eCash: Readonly<ECashTestnet>;
|
|
735
1192
|
eos: Readonly<EosTestnet>;
|
|
736
1193
|
fiat: Readonly<FiatTestnet>;
|
|
1194
|
+
flr: Readonly<FlareTestnet>;
|
|
737
1195
|
pyrmont: Readonly<Pyrmont>;
|
|
738
1196
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
739
1197
|
hash: Readonly<HashTestnet>;
|
|
740
1198
|
hedera: Readonly<HederaTestnet>;
|
|
1199
|
+
icp: Readonly<IcpTestnet>;
|
|
741
1200
|
injective: Readonly<InjectiveTestnet>;
|
|
1201
|
+
islm: Readonly<IslmTestnet>;
|
|
1202
|
+
kava: Readonly<KavaTestnet>;
|
|
742
1203
|
kovan: Readonly<Kovan>;
|
|
743
1204
|
goerli: Readonly<Goerli>;
|
|
1205
|
+
holesky: Readonly<Holesky>;
|
|
1206
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
744
1207
|
litecoin: Readonly<LitecoinTestnet>;
|
|
745
1208
|
polygon: Readonly<PolygonTestnet>;
|
|
1209
|
+
oas: Readonly<OasTestnet>;
|
|
746
1210
|
ofc: Readonly<OfcTestnet>;
|
|
1211
|
+
optimism: Readonly<OptimismTestnet>;
|
|
747
1212
|
osmo: Readonly<OsmoTestnet>;
|
|
748
1213
|
rbtc: Readonly<RbtcTestnet>;
|
|
1214
|
+
rune: Readonly<RuneTestNet>;
|
|
1215
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
749
1216
|
stellar: Readonly<StellarTestnet>;
|
|
750
1217
|
sei: Readonly<SeiTestnet>;
|
|
751
1218
|
sol: Readonly<SolTestnet>;
|
|
@@ -753,12 +1220,18 @@ export declare const Networks: {
|
|
|
753
1220
|
near: Readonly<NearTestnet>;
|
|
754
1221
|
stx: Readonly<StxTestnet>;
|
|
755
1222
|
susd: Readonly<SUSDTestnet>;
|
|
1223
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1224
|
+
tao: Readonly<BittensorTestnet>;
|
|
756
1225
|
tia: Readonly<TiaTestnet>;
|
|
1226
|
+
ton: Readonly<TonTestnet>;
|
|
757
1227
|
trx: Readonly<TrxTestnet>;
|
|
1228
|
+
wemix: Readonly<WemixTestnet>;
|
|
1229
|
+
xdc: Readonly<XdcTestnet>;
|
|
758
1230
|
xrp: Readonly<XrpTestnet>;
|
|
759
1231
|
xtz: Readonly<XtzTestnet>;
|
|
760
1232
|
zCash: Readonly<ZCashTestnet>;
|
|
761
1233
|
zeta: Readonly<ZetaTestnet>;
|
|
1234
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
762
1235
|
};
|
|
763
1236
|
};
|
|
764
1237
|
export {};
|