@bitgo-beta/statics 15.1.1-beta.65 → 15.1.1-beta.651
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 +2508 -0
- package/dist/src/account.d.ts +208 -4
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +364 -43
- package/dist/src/ada.d.ts.map +1 -1
- package/dist/src/ada.js +5 -3
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +4 -3
- package/dist/src/base.d.ts +1177 -35
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1216 -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 +2940 -1351
- package/dist/src/index.d.ts +2 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +11 -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 +38 -3
- package/dist/src/networks.d.ts +475 -1
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +644 -39
- package/dist/src/ofc.d.ts +240 -0
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +506 -14
- package/dist/src/tokenConfig.d.ts +50 -13
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +109 -7
- package/dist/src/utxo.d.ts +3 -1
- package/dist/src/utxo.d.ts.map +1 -1
- package/dist/src/utxo.js +75 -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,16 @@ 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';
|
|
51
61
|
export interface DotNetwork extends AccountNetwork {
|
|
52
62
|
readonly specName: PolkadotSpecNameType;
|
|
53
63
|
readonly genesisHash: string;
|
|
@@ -60,6 +70,8 @@ export interface EthereumNetwork extends AccountNetwork {
|
|
|
60
70
|
readonly batcherContractAddress?: string;
|
|
61
71
|
readonly forwarderFactoryAddress?: string;
|
|
62
72
|
readonly forwarderImplementationAddress?: string;
|
|
73
|
+
readonly nativeCoinOperationHashPrefix?: string;
|
|
74
|
+
readonly tokenOperationHashPrefix?: string;
|
|
63
75
|
}
|
|
64
76
|
export interface TronNetwork extends AccountNetwork {
|
|
65
77
|
maxFeeLimit: string;
|
|
@@ -109,6 +121,52 @@ declare class AdaTestnet extends Testnet implements AdaNetwork {
|
|
|
109
121
|
poolDeposit: number;
|
|
110
122
|
stakeKeyDeposit: number;
|
|
111
123
|
}
|
|
124
|
+
declare class Apt extends Mainnet implements AccountNetwork {
|
|
125
|
+
name: string;
|
|
126
|
+
family: CoinFamily;
|
|
127
|
+
explorerUrl: string;
|
|
128
|
+
}
|
|
129
|
+
declare class AptTestnet extends Testnet implements AccountNetwork {
|
|
130
|
+
name: string;
|
|
131
|
+
family: CoinFamily;
|
|
132
|
+
explorerUrl: string;
|
|
133
|
+
}
|
|
134
|
+
declare class Icp extends Mainnet implements AccountNetwork {
|
|
135
|
+
name: string;
|
|
136
|
+
family: CoinFamily;
|
|
137
|
+
explorerUrl: string;
|
|
138
|
+
}
|
|
139
|
+
declare class IcpTestnet extends Testnet implements AccountNetwork {
|
|
140
|
+
name: string;
|
|
141
|
+
family: CoinFamily;
|
|
142
|
+
explorerUrl: string;
|
|
143
|
+
}
|
|
144
|
+
declare class Arbitrum extends Mainnet implements EthereumNetwork {
|
|
145
|
+
name: string;
|
|
146
|
+
family: CoinFamily;
|
|
147
|
+
explorerUrl: string;
|
|
148
|
+
accountExplorerUrl: string;
|
|
149
|
+
chainId: number;
|
|
150
|
+
nativeCoinOperationHashPrefix: string;
|
|
151
|
+
tokenOperationHashPrefix: string;
|
|
152
|
+
forwarderFactoryAddress: string;
|
|
153
|
+
forwarderImplementationAddress: string;
|
|
154
|
+
walletFactoryAddress: string;
|
|
155
|
+
walletImplementationAddress: string;
|
|
156
|
+
}
|
|
157
|
+
declare class ArbitrumTestnet extends Testnet implements EthereumNetwork {
|
|
158
|
+
name: string;
|
|
159
|
+
family: CoinFamily;
|
|
160
|
+
explorerUrl: string;
|
|
161
|
+
accountExplorerUrl: string;
|
|
162
|
+
chainId: number;
|
|
163
|
+
nativeCoinOperationHashPrefix: string;
|
|
164
|
+
tokenOperationHashPrefix: string;
|
|
165
|
+
forwarderFactoryAddress: string;
|
|
166
|
+
forwarderImplementationAddress: string;
|
|
167
|
+
walletFactoryAddress: string;
|
|
168
|
+
walletImplementationAddress: string;
|
|
169
|
+
}
|
|
112
170
|
declare class AvalancheC extends Mainnet implements AccountNetwork {
|
|
113
171
|
name: string;
|
|
114
172
|
family: CoinFamily;
|
|
@@ -136,6 +194,7 @@ declare class AvalancheP extends Mainnet implements AvalancheNetwork {
|
|
|
136
194
|
alias: string;
|
|
137
195
|
vm: string;
|
|
138
196
|
txFee: string;
|
|
197
|
+
maxImportFee: string;
|
|
139
198
|
createSubnetTx: string;
|
|
140
199
|
createChainTx: string;
|
|
141
200
|
creationTxFee: string;
|
|
@@ -161,6 +220,7 @@ declare class AvalanchePTestnet extends Testnet implements AvalancheNetwork {
|
|
|
161
220
|
hrp: string;
|
|
162
221
|
vm: string;
|
|
163
222
|
txFee: string;
|
|
223
|
+
maxImportFee: string;
|
|
164
224
|
createSubnetTx: string;
|
|
165
225
|
createChainTx: string;
|
|
166
226
|
creationTxFee: string;
|
|
@@ -179,6 +239,9 @@ declare class BinanceSmartChain extends Mainnet implements EthereumNetwork {
|
|
|
179
239
|
explorerUrl: string;
|
|
180
240
|
accountExplorerUrl: string;
|
|
181
241
|
chainId: number;
|
|
242
|
+
nativeCoinOperationHashPrefix: string;
|
|
243
|
+
tokenOperationHashPrefix: string;
|
|
244
|
+
batcherContractAddress: string;
|
|
182
245
|
}
|
|
183
246
|
declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwork {
|
|
184
247
|
name: string;
|
|
@@ -186,6 +249,23 @@ declare class BinanceSmartChainTestnet extends Testnet implements EthereumNetwor
|
|
|
186
249
|
explorerUrl: string;
|
|
187
250
|
accountExplorerUrl: string;
|
|
188
251
|
chainId: number;
|
|
252
|
+
nativeCoinOperationHashPrefix: string;
|
|
253
|
+
tokenOperationHashPrefix: string;
|
|
254
|
+
batcherContractAddress: string;
|
|
255
|
+
}
|
|
256
|
+
declare class LightningBitcoin extends Mainnet implements LightningNetwork {
|
|
257
|
+
name: string;
|
|
258
|
+
family: CoinFamily;
|
|
259
|
+
utxolibName: string;
|
|
260
|
+
explorerUrl: string;
|
|
261
|
+
lightningServicePubKey: string;
|
|
262
|
+
}
|
|
263
|
+
declare class LightningBitcoinTestnet extends Testnet implements LightningNetwork {
|
|
264
|
+
name: string;
|
|
265
|
+
family: CoinFamily;
|
|
266
|
+
utxolibName: string;
|
|
267
|
+
explorerUrl: string;
|
|
268
|
+
lightningServicePubKey: string;
|
|
189
269
|
}
|
|
190
270
|
declare class Bitcoin extends Mainnet implements UtxoNetwork {
|
|
191
271
|
name: string;
|
|
@@ -199,6 +279,24 @@ declare class BitcoinTestnet extends Testnet implements UtxoNetwork {
|
|
|
199
279
|
utxolibName: string;
|
|
200
280
|
explorerUrl: string;
|
|
201
281
|
}
|
|
282
|
+
declare class BitcoinPublicSignet extends Testnet implements UtxoNetwork {
|
|
283
|
+
name: string;
|
|
284
|
+
family: CoinFamily;
|
|
285
|
+
utxolibName: string;
|
|
286
|
+
explorerUrl: string;
|
|
287
|
+
}
|
|
288
|
+
declare class BitcoinTestnet4 extends Testnet implements UtxoNetwork {
|
|
289
|
+
name: string;
|
|
290
|
+
family: CoinFamily;
|
|
291
|
+
utxolibName: string;
|
|
292
|
+
explorerUrl: string;
|
|
293
|
+
}
|
|
294
|
+
declare class BitcoinBitGoSignet extends Testnet implements UtxoNetwork {
|
|
295
|
+
name: string;
|
|
296
|
+
family: CoinFamily;
|
|
297
|
+
utxolibName: string;
|
|
298
|
+
explorerUrl: string;
|
|
299
|
+
}
|
|
202
300
|
declare class BitcoinCash extends Mainnet implements UtxoNetwork {
|
|
203
301
|
name: string;
|
|
204
302
|
family: CoinFamily;
|
|
@@ -297,6 +395,8 @@ declare class Celo extends Mainnet implements EthereumNetwork {
|
|
|
297
395
|
explorerUrl: string;
|
|
298
396
|
accountExplorerUrl: string;
|
|
299
397
|
chainId: number;
|
|
398
|
+
nativeCoinOperationHashPrefix: string;
|
|
399
|
+
tokenOperationHashPrefix: string;
|
|
300
400
|
}
|
|
301
401
|
declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
302
402
|
name: string;
|
|
@@ -304,6 +404,8 @@ declare class CeloTestnet extends Testnet implements EthereumNetwork {
|
|
|
304
404
|
explorerUrl: string;
|
|
305
405
|
accountExplorerUrl: string;
|
|
306
406
|
chainId: number;
|
|
407
|
+
nativeCoinOperationHashPrefix: string;
|
|
408
|
+
tokenOperationHashPrefix: string;
|
|
307
409
|
}
|
|
308
410
|
declare class Casper extends Mainnet implements AccountNetwork {
|
|
309
411
|
name: string;
|
|
@@ -322,10 +424,13 @@ declare class Ethereum extends Mainnet implements EthereumNetwork {
|
|
|
322
424
|
family: CoinFamily;
|
|
323
425
|
explorerUrl: string;
|
|
324
426
|
accountExplorerUrl: string;
|
|
427
|
+
blockExplorerUrl: string;
|
|
325
428
|
chainId: number;
|
|
326
429
|
batcherContractAddress: string;
|
|
327
430
|
forwarderFactoryAddress: string;
|
|
328
431
|
forwarderImplementationAddress: string;
|
|
432
|
+
nativeCoinOperationHashPrefix: string;
|
|
433
|
+
tokenOperationHashPrefix: string;
|
|
329
434
|
}
|
|
330
435
|
declare class Ethereum2 extends Mainnet implements AccountNetwork {
|
|
331
436
|
name: string;
|
|
@@ -342,6 +447,8 @@ declare class EthereumW extends Mainnet implements EthereumNetwork {
|
|
|
342
447
|
batcherContractAddress: string;
|
|
343
448
|
forwarderFactoryAddress: string;
|
|
344
449
|
forwarderImplementationAddress: string;
|
|
450
|
+
nativeCoinOperationHashPrefix: string;
|
|
451
|
+
tokenOperationHashPrefix: string;
|
|
345
452
|
}
|
|
346
453
|
declare class Pyrmont extends Testnet implements AccountNetwork {
|
|
347
454
|
name: string;
|
|
@@ -358,16 +465,34 @@ declare class Kovan extends Testnet implements EthereumNetwork {
|
|
|
358
465
|
batcherContractAddress: string;
|
|
359
466
|
forwarderFactoryAddress: string;
|
|
360
467
|
forwarderImplementationAddress: string;
|
|
468
|
+
nativeCoinOperationHashPrefix: string;
|
|
469
|
+
tokenOperationHashPrefix: string;
|
|
361
470
|
}
|
|
362
471
|
declare class Goerli extends Testnet implements EthereumNetwork {
|
|
363
472
|
name: string;
|
|
364
473
|
family: CoinFamily;
|
|
365
474
|
explorerUrl: string;
|
|
366
475
|
accountExplorerUrl: string;
|
|
476
|
+
blockExplorerUrl: string;
|
|
477
|
+
chainId: number;
|
|
478
|
+
batcherContractAddress: string;
|
|
479
|
+
forwarderFactoryAddress: string;
|
|
480
|
+
forwarderImplementationAddress: string;
|
|
481
|
+
nativeCoinOperationHashPrefix: string;
|
|
482
|
+
tokenOperationHashPrefix: string;
|
|
483
|
+
}
|
|
484
|
+
declare class Holesky extends Testnet implements EthereumNetwork {
|
|
485
|
+
name: string;
|
|
486
|
+
family: CoinFamily;
|
|
487
|
+
explorerUrl: string;
|
|
488
|
+
accountExplorerUrl: string;
|
|
489
|
+
blockExplorerUrl: string;
|
|
367
490
|
chainId: number;
|
|
368
491
|
batcherContractAddress: string;
|
|
369
492
|
forwarderFactoryAddress: string;
|
|
370
493
|
forwarderImplementationAddress: string;
|
|
494
|
+
nativeCoinOperationHashPrefix: string;
|
|
495
|
+
tokenOperationHashPrefix: string;
|
|
371
496
|
}
|
|
372
497
|
declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
373
498
|
name: string;
|
|
@@ -375,6 +500,8 @@ declare class EthereumClassic extends Mainnet implements EthereumNetwork {
|
|
|
375
500
|
explorerUrl: string;
|
|
376
501
|
accountExplorerUrl: string;
|
|
377
502
|
chainId: number;
|
|
503
|
+
nativeCoinOperationHashPrefix: string;
|
|
504
|
+
tokenOperationHashPrefix: string;
|
|
378
505
|
}
|
|
379
506
|
declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork {
|
|
380
507
|
name: string;
|
|
@@ -382,6 +509,8 @@ declare class EthereumClassicTestnet extends Testnet implements EthereumNetwork
|
|
|
382
509
|
explorerUrl: string;
|
|
383
510
|
accountExplorerUrl: string;
|
|
384
511
|
chainId: number;
|
|
512
|
+
nativeCoinOperationHashPrefix: string;
|
|
513
|
+
tokenOperationHashPrefix: string;
|
|
385
514
|
}
|
|
386
515
|
declare class Eos extends Mainnet implements AccountNetwork {
|
|
387
516
|
name: string;
|
|
@@ -431,6 +560,8 @@ declare class Rbtc extends Mainnet implements EthereumNetwork {
|
|
|
431
560
|
explorerUrl: string;
|
|
432
561
|
accountExplorerUrl: string;
|
|
433
562
|
chainId: number;
|
|
563
|
+
nativeCoinOperationHashPrefix: string;
|
|
564
|
+
tokenOperationHashPrefix: string;
|
|
434
565
|
}
|
|
435
566
|
declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
436
567
|
name: string;
|
|
@@ -438,6 +569,8 @@ declare class RbtcTestnet extends Testnet implements EthereumNetwork {
|
|
|
438
569
|
explorerUrl: string;
|
|
439
570
|
accountExplorerUrl: string;
|
|
440
571
|
chainId: number;
|
|
572
|
+
nativeCoinOperationHashPrefix: string;
|
|
573
|
+
tokenOperationHashPrefix: string;
|
|
441
574
|
}
|
|
442
575
|
declare class Stellar extends Mainnet implements AccountNetwork {
|
|
443
576
|
name: string;
|
|
@@ -529,6 +662,16 @@ declare class SeiTestnet extends Testnet implements AccountNetwork {
|
|
|
529
662
|
family: CoinFamily;
|
|
530
663
|
explorerUrl: string;
|
|
531
664
|
}
|
|
665
|
+
declare class Zeta extends Mainnet implements AccountNetwork {
|
|
666
|
+
name: string;
|
|
667
|
+
family: CoinFamily;
|
|
668
|
+
explorerUrl: string;
|
|
669
|
+
}
|
|
670
|
+
declare class ZetaTestnet extends Testnet implements AccountNetwork {
|
|
671
|
+
name: string;
|
|
672
|
+
family: CoinFamily;
|
|
673
|
+
explorerUrl: string;
|
|
674
|
+
}
|
|
532
675
|
declare class Injective extends Mainnet implements AccountNetwork {
|
|
533
676
|
name: string;
|
|
534
677
|
family: CoinFamily;
|
|
@@ -539,6 +682,66 @@ declare class InjectiveTestnet extends Testnet implements AccountNetwork {
|
|
|
539
682
|
family: CoinFamily;
|
|
540
683
|
explorerUrl: string;
|
|
541
684
|
}
|
|
685
|
+
declare class Kava extends Mainnet implements AccountNetwork {
|
|
686
|
+
name: string;
|
|
687
|
+
family: CoinFamily;
|
|
688
|
+
explorerUrl: string;
|
|
689
|
+
}
|
|
690
|
+
declare class KavaTestnet extends Testnet implements AccountNetwork {
|
|
691
|
+
name: string;
|
|
692
|
+
family: CoinFamily;
|
|
693
|
+
explorerUrl: string;
|
|
694
|
+
}
|
|
695
|
+
declare class Ton extends Mainnet implements AccountNetwork {
|
|
696
|
+
name: string;
|
|
697
|
+
family: CoinFamily;
|
|
698
|
+
explorerUrl: string;
|
|
699
|
+
}
|
|
700
|
+
declare class TonTestnet extends Testnet implements AccountNetwork {
|
|
701
|
+
name: string;
|
|
702
|
+
family: CoinFamily;
|
|
703
|
+
explorerUrl: string;
|
|
704
|
+
}
|
|
705
|
+
declare class Coreum extends Mainnet implements AccountNetwork {
|
|
706
|
+
name: string;
|
|
707
|
+
family: CoinFamily;
|
|
708
|
+
explorerUrl: string;
|
|
709
|
+
}
|
|
710
|
+
declare class CoreumTestnet extends Testnet implements AccountNetwork {
|
|
711
|
+
name: string;
|
|
712
|
+
family: CoinFamily;
|
|
713
|
+
explorerUrl: string;
|
|
714
|
+
}
|
|
715
|
+
declare class Rune extends Mainnet implements AccountNetwork {
|
|
716
|
+
name: string;
|
|
717
|
+
family: CoinFamily;
|
|
718
|
+
explorerUrl: string;
|
|
719
|
+
}
|
|
720
|
+
declare class RuneTestNet extends Testnet implements AccountNetwork {
|
|
721
|
+
name: string;
|
|
722
|
+
family: CoinFamily;
|
|
723
|
+
explorerUrl: string;
|
|
724
|
+
}
|
|
725
|
+
declare class Baby extends Mainnet implements AccountNetwork {
|
|
726
|
+
name: string;
|
|
727
|
+
family: CoinFamily;
|
|
728
|
+
explorerUrl: string;
|
|
729
|
+
}
|
|
730
|
+
declare class BabyTestnet extends Testnet implements AccountNetwork {
|
|
731
|
+
name: string;
|
|
732
|
+
family: CoinFamily;
|
|
733
|
+
explorerUrl: string;
|
|
734
|
+
}
|
|
735
|
+
declare class Islm extends Mainnet implements AccountNetwork {
|
|
736
|
+
name: string;
|
|
737
|
+
family: CoinFamily;
|
|
738
|
+
explorerUrl: string;
|
|
739
|
+
}
|
|
740
|
+
declare class IslmTestnet extends Testnet implements AccountNetwork {
|
|
741
|
+
name: string;
|
|
742
|
+
family: CoinFamily;
|
|
743
|
+
explorerUrl: string;
|
|
744
|
+
}
|
|
542
745
|
declare class Stx extends Mainnet implements StacksNetwork {
|
|
543
746
|
name: string;
|
|
544
747
|
family: CoinFamily;
|
|
@@ -573,9 +776,20 @@ declare class Fiat extends Mainnet implements BaseNetwork {
|
|
|
573
776
|
family: CoinFamily;
|
|
574
777
|
explorerUrl: undefined;
|
|
575
778
|
}
|
|
779
|
+
declare class Bittensor extends Mainnet implements AccountNetwork {
|
|
780
|
+
name: string;
|
|
781
|
+
family: CoinFamily;
|
|
782
|
+
explorerUrl: string;
|
|
783
|
+
}
|
|
784
|
+
declare class BittensorTestnet extends Testnet implements AccountNetwork {
|
|
785
|
+
name: string;
|
|
786
|
+
family: CoinFamily;
|
|
787
|
+
explorerUrl: string;
|
|
788
|
+
}
|
|
576
789
|
declare class Trx extends Mainnet implements TronNetwork {
|
|
577
790
|
name: string;
|
|
578
791
|
family: CoinFamily;
|
|
792
|
+
accountExplorerUrl: string;
|
|
579
793
|
explorerUrl: string;
|
|
580
794
|
maxFeeLimit: string;
|
|
581
795
|
contractCallFeeLimit: string;
|
|
@@ -583,6 +797,7 @@ declare class Trx extends Mainnet implements TronNetwork {
|
|
|
583
797
|
declare class TrxTestnet extends Testnet implements TronNetwork {
|
|
584
798
|
name: string;
|
|
585
799
|
family: CoinFamily;
|
|
800
|
+
accountExplorerUrl: string;
|
|
586
801
|
explorerUrl: string;
|
|
587
802
|
maxFeeLimit: string;
|
|
588
803
|
contractCallFeeLimit: string;
|
|
@@ -601,11 +816,13 @@ declare class Xtz extends Mainnet implements AccountNetwork {
|
|
|
601
816
|
name: string;
|
|
602
817
|
family: CoinFamily;
|
|
603
818
|
explorerUrl: string;
|
|
819
|
+
accountExplorerUrl: string;
|
|
604
820
|
}
|
|
605
821
|
declare class XtzTestnet extends Testnet implements AccountNetwork {
|
|
606
822
|
name: string;
|
|
607
823
|
family: CoinFamily;
|
|
608
824
|
explorerUrl: string;
|
|
825
|
+
accountExplorerUrl: string;
|
|
609
826
|
}
|
|
610
827
|
declare class ZCash extends Mainnet implements UtxoNetwork {
|
|
611
828
|
name: string;
|
|
@@ -644,6 +861,8 @@ declare class Polygon extends Mainnet implements EthereumNetwork {
|
|
|
644
861
|
walletFactoryAddress: string;
|
|
645
862
|
walletImplementationAddress: string;
|
|
646
863
|
batcherContractAddress: string;
|
|
864
|
+
nativeCoinOperationHashPrefix: string;
|
|
865
|
+
tokenOperationHashPrefix: string;
|
|
647
866
|
}
|
|
648
867
|
declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
649
868
|
name: string;
|
|
@@ -656,22 +875,236 @@ declare class PolygonTestnet extends Testnet implements EthereumNetwork {
|
|
|
656
875
|
walletFactoryAddress: string;
|
|
657
876
|
walletImplementationAddress: string;
|
|
658
877
|
batcherContractAddress: string;
|
|
878
|
+
nativeCoinOperationHashPrefix: string;
|
|
879
|
+
tokenOperationHashPrefix: string;
|
|
880
|
+
}
|
|
881
|
+
declare class Optimism extends Mainnet implements EthereumNetwork {
|
|
882
|
+
name: string;
|
|
883
|
+
family: CoinFamily;
|
|
884
|
+
explorerUrl: string;
|
|
885
|
+
accountExplorerUrl: string;
|
|
886
|
+
chainId: number;
|
|
887
|
+
nativeCoinOperationHashPrefix: string;
|
|
888
|
+
tokenOperationHashPrefix: string;
|
|
889
|
+
forwarderFactoryAddress: string;
|
|
890
|
+
forwarderImplementationAddress: string;
|
|
891
|
+
walletFactoryAddress: string;
|
|
892
|
+
walletImplementationAddress: string;
|
|
893
|
+
}
|
|
894
|
+
declare class OptimismTestnet extends Testnet implements EthereumNetwork {
|
|
895
|
+
name: string;
|
|
896
|
+
family: CoinFamily;
|
|
897
|
+
explorerUrl: string;
|
|
898
|
+
accountExplorerUrl: string;
|
|
899
|
+
chainId: number;
|
|
900
|
+
nativeCoinOperationHashPrefix: string;
|
|
901
|
+
tokenOperationHashPrefix: string;
|
|
902
|
+
forwarderFactoryAddress: string;
|
|
903
|
+
forwarderImplementationAddress: string;
|
|
904
|
+
walletFactoryAddress: string;
|
|
905
|
+
walletImplementationAddress: string;
|
|
906
|
+
}
|
|
907
|
+
declare class ZkSync extends Mainnet implements EthereumNetwork {
|
|
908
|
+
name: string;
|
|
909
|
+
family: CoinFamily;
|
|
910
|
+
explorerUrl: string;
|
|
911
|
+
accountExplorerUrl: string;
|
|
912
|
+
chainId: number;
|
|
913
|
+
nativeCoinOperationHashPrefix: string;
|
|
914
|
+
tokenOperationHashPrefix: string;
|
|
915
|
+
}
|
|
916
|
+
declare class ZkSyncTestnet extends Testnet implements EthereumNetwork {
|
|
917
|
+
name: string;
|
|
918
|
+
family: CoinFamily;
|
|
919
|
+
explorerUrl: string;
|
|
920
|
+
accountExplorerUrl: string;
|
|
921
|
+
chainId: number;
|
|
922
|
+
nativeCoinOperationHashPrefix: string;
|
|
923
|
+
tokenOperationHashPrefix: string;
|
|
924
|
+
forwarderFactoryAddress: string;
|
|
925
|
+
forwarderImplementationAddress: string;
|
|
926
|
+
walletFactoryAddress: string;
|
|
927
|
+
walletImplementationAddress: string;
|
|
928
|
+
}
|
|
929
|
+
declare class Berachain extends Mainnet implements EthereumNetwork {
|
|
930
|
+
name: string;
|
|
931
|
+
family: CoinFamily;
|
|
932
|
+
explorerUrl: string;
|
|
933
|
+
accountExplorerUrl: string;
|
|
934
|
+
chainId: number;
|
|
935
|
+
nativeCoinOperationHashPrefix: string;
|
|
936
|
+
tokenOperationHashPrefix: string;
|
|
937
|
+
}
|
|
938
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
939
|
+
name: string;
|
|
940
|
+
family: CoinFamily;
|
|
941
|
+
explorerUrl: string;
|
|
942
|
+
accountExplorerUrl: string;
|
|
943
|
+
chainId: number;
|
|
944
|
+
nativeCoinOperationHashPrefix: string;
|
|
945
|
+
tokenOperationHashPrefix: string;
|
|
946
|
+
forwarderFactoryAddress: string;
|
|
947
|
+
forwarderImplementationAddress: string;
|
|
948
|
+
walletFactoryAddress: string;
|
|
949
|
+
walletImplementationAddress: string;
|
|
950
|
+
batcherContractAddress: string;
|
|
951
|
+
}
|
|
952
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
953
|
+
name: string;
|
|
954
|
+
family: CoinFamily;
|
|
955
|
+
explorerUrl: string;
|
|
956
|
+
accountExplorerUrl: string;
|
|
957
|
+
chainId: number;
|
|
958
|
+
nativeCoinOperationHashPrefix: string;
|
|
959
|
+
batcherContractAddress: string;
|
|
960
|
+
forwarderFactoryAddress: string;
|
|
961
|
+
forwarderImplementationAddress: string;
|
|
962
|
+
}
|
|
963
|
+
declare class OasTestnet extends Testnet 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 Coredao extends Mainnet 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 CoredaoTestnet extends Testnet 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 Xdc extends Mainnet implements EthereumNetwork {
|
|
997
|
+
name: string;
|
|
998
|
+
family: CoinFamily;
|
|
999
|
+
explorerUrl: string;
|
|
1000
|
+
accountExplorerUrl: string;
|
|
1001
|
+
chainId: number;
|
|
1002
|
+
nativeCoinOperationHashPrefix: string;
|
|
1003
|
+
}
|
|
1004
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1005
|
+
name: string;
|
|
1006
|
+
family: CoinFamily;
|
|
1007
|
+
explorerUrl: string;
|
|
1008
|
+
accountExplorerUrl: string;
|
|
1009
|
+
chainId: number;
|
|
1010
|
+
nativeCoinOperationHashPrefix: string;
|
|
1011
|
+
}
|
|
1012
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1013
|
+
name: string;
|
|
1014
|
+
family: CoinFamily;
|
|
1015
|
+
explorerUrl: string;
|
|
1016
|
+
accountExplorerUrl: string;
|
|
1017
|
+
chainId: number;
|
|
1018
|
+
nativeCoinOperationHashPrefix: string;
|
|
1019
|
+
}
|
|
1020
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1021
|
+
name: string;
|
|
1022
|
+
family: CoinFamily;
|
|
1023
|
+
explorerUrl: string;
|
|
1024
|
+
accountExplorerUrl: string;
|
|
1025
|
+
chainId: number;
|
|
1026
|
+
nativeCoinOperationHashPrefix: string;
|
|
1027
|
+
}
|
|
1028
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1029
|
+
name: string;
|
|
1030
|
+
family: CoinFamily;
|
|
1031
|
+
explorerUrl: string;
|
|
1032
|
+
accountExplorerUrl: string;
|
|
1033
|
+
chainId: number;
|
|
1034
|
+
nativeCoinOperationHashPrefix: string;
|
|
1035
|
+
}
|
|
1036
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1037
|
+
name: string;
|
|
1038
|
+
family: CoinFamily;
|
|
1039
|
+
explorerUrl: string;
|
|
1040
|
+
accountExplorerUrl: string;
|
|
1041
|
+
chainId: number;
|
|
1042
|
+
nativeCoinOperationHashPrefix: string;
|
|
1043
|
+
}
|
|
1044
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1045
|
+
name: string;
|
|
1046
|
+
family: CoinFamily;
|
|
1047
|
+
explorerUrl: string;
|
|
1048
|
+
accountExplorerUrl: string;
|
|
1049
|
+
chainId: number;
|
|
1050
|
+
nativeCoinOperationHashPrefix: string;
|
|
1051
|
+
}
|
|
1052
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1053
|
+
name: string;
|
|
1054
|
+
family: CoinFamily;
|
|
1055
|
+
explorerUrl: string;
|
|
1056
|
+
accountExplorerUrl: string;
|
|
1057
|
+
chainId: number;
|
|
1058
|
+
nativeCoinOperationHashPrefix: string;
|
|
1059
|
+
}
|
|
1060
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1061
|
+
name: string;
|
|
1062
|
+
family: CoinFamily;
|
|
1063
|
+
explorerUrl: string;
|
|
1064
|
+
accountExplorerUrl: string;
|
|
1065
|
+
chainId: number;
|
|
1066
|
+
nativeCoinOperationHashPrefix: string;
|
|
1067
|
+
tokenOperationHashPrefix: string;
|
|
1068
|
+
forwarderFactoryAddress: string;
|
|
1069
|
+
forwarderImplementationAddress: string;
|
|
1070
|
+
walletFactoryAddress: string;
|
|
1071
|
+
walletImplementationAddress: string;
|
|
1072
|
+
}
|
|
1073
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1074
|
+
name: string;
|
|
1075
|
+
family: CoinFamily;
|
|
1076
|
+
explorerUrl: string;
|
|
1077
|
+
accountExplorerUrl: string;
|
|
1078
|
+
chainId: number;
|
|
1079
|
+
nativeCoinOperationHashPrefix: string;
|
|
1080
|
+
tokenOperationHashPrefix: string;
|
|
1081
|
+
forwarderFactoryAddress: string;
|
|
1082
|
+
forwarderImplementationAddress: string;
|
|
1083
|
+
walletFactoryAddress: string;
|
|
1084
|
+
walletImplementationAddress: string;
|
|
659
1085
|
}
|
|
660
1086
|
export declare const Networks: {
|
|
661
1087
|
main: {
|
|
662
1088
|
ada: Readonly<Ada>;
|
|
663
1089
|
algorand: Readonly<Algorand>;
|
|
1090
|
+
apt: Readonly<Apt>;
|
|
1091
|
+
arbitrum: Readonly<Arbitrum>;
|
|
664
1092
|
atom: Readonly<Atom>;
|
|
665
1093
|
avalancheC: Readonly<AvalancheC>;
|
|
666
1094
|
avalancheP: Readonly<AvalancheP>;
|
|
1095
|
+
baby: Readonly<Baby>;
|
|
1096
|
+
basechain: Readonly<BaseChain>;
|
|
667
1097
|
bitcoin: Readonly<Bitcoin>;
|
|
668
1098
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
669
1099
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
670
1100
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1101
|
+
bera: Readonly<Berachain>;
|
|
671
1102
|
bld: Readonly<Bld>;
|
|
672
1103
|
bsc: Readonly<BinanceSmartChain>;
|
|
673
1104
|
casper: Readonly<Casper>;
|
|
674
1105
|
celo: Readonly<Celo>;
|
|
1106
|
+
coredao: Readonly<Coredao>;
|
|
1107
|
+
coreum: Readonly<Coreum>;
|
|
675
1108
|
dash: Readonly<Dash>;
|
|
676
1109
|
dogecoin: Readonly<Dogecoin>;
|
|
677
1110
|
dot: Readonly<Polkadot>;
|
|
@@ -682,40 +1115,64 @@ export declare const Networks: {
|
|
|
682
1115
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
683
1116
|
ethereumW: Readonly<EthereumW>;
|
|
684
1117
|
fiat: Readonly<Fiat>;
|
|
1118
|
+
flr: Readonly<Flare>;
|
|
685
1119
|
hash: Readonly<Hash>;
|
|
686
1120
|
hedera: Readonly<Hedera>;
|
|
1121
|
+
icp: Readonly<Icp>;
|
|
687
1122
|
injective: Readonly<Injective>;
|
|
1123
|
+
islm: Readonly<Islm>;
|
|
1124
|
+
kava: Readonly<Kava>;
|
|
1125
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
688
1126
|
litecoin: Readonly<Litecoin>;
|
|
689
1127
|
polygon: Readonly<Polygon>;
|
|
1128
|
+
oas: Readonly<Oas>;
|
|
690
1129
|
ofc: Readonly<Ofc>;
|
|
1130
|
+
optimism: Readonly<Optimism>;
|
|
691
1131
|
osmo: Readonly<Osmo>;
|
|
692
1132
|
rbtc: Readonly<Rbtc>;
|
|
1133
|
+
rune: Readonly<Rune>;
|
|
693
1134
|
stellar: Readonly<Stellar>;
|
|
694
1135
|
sei: Readonly<Sei>;
|
|
1136
|
+
sgb: Readonly<Songbird>;
|
|
695
1137
|
sol: Readonly<Sol>;
|
|
696
1138
|
sui: Readonly<Sui>;
|
|
697
1139
|
near: Readonly<Near>;
|
|
698
1140
|
stx: Readonly<Stx>;
|
|
699
1141
|
susd: Readonly<SUSD>;
|
|
1142
|
+
tao: Readonly<Bittensor>;
|
|
700
1143
|
tia: Readonly<Tia>;
|
|
1144
|
+
ton: Readonly<Ton>;
|
|
701
1145
|
trx: Readonly<Trx>;
|
|
1146
|
+
wemix: Readonly<Wemix>;
|
|
1147
|
+
xdc: Readonly<Xdc>;
|
|
702
1148
|
xrp: Readonly<Xrp>;
|
|
703
1149
|
xtz: Readonly<Xtz>;
|
|
704
1150
|
zCash: Readonly<ZCash>;
|
|
1151
|
+
zeta: Readonly<Zeta>;
|
|
1152
|
+
zkSync: Readonly<ZkSync>;
|
|
705
1153
|
};
|
|
706
1154
|
test: {
|
|
707
1155
|
ada: Readonly<AdaTestnet>;
|
|
708
1156
|
algorand: Readonly<AlgorandTestnet>;
|
|
1157
|
+
apt: Readonly<AptTestnet>;
|
|
1158
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
709
1159
|
atom: Readonly<AtomTestnet>;
|
|
710
1160
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
711
1161
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1162
|
+
baby: Readonly<BabyTestnet>;
|
|
1163
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
712
1164
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1165
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1166
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1167
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
713
1168
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
714
1169
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
715
1170
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1171
|
+
bera: Readonly<BerachainTestnet>;
|
|
716
1172
|
bld: Readonly<BldTestnet>;
|
|
717
1173
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
718
1174
|
casper: Readonly<CasperTestnet>;
|
|
1175
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
719
1176
|
celo: Readonly<CeloTestnet>;
|
|
720
1177
|
dash: Readonly<DashTestnet>;
|
|
721
1178
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
@@ -723,18 +1180,28 @@ export declare const Networks: {
|
|
|
723
1180
|
eCash: Readonly<ECashTestnet>;
|
|
724
1181
|
eos: Readonly<EosTestnet>;
|
|
725
1182
|
fiat: Readonly<FiatTestnet>;
|
|
1183
|
+
flr: Readonly<FlareTestnet>;
|
|
726
1184
|
pyrmont: Readonly<Pyrmont>;
|
|
727
1185
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
728
1186
|
hash: Readonly<HashTestnet>;
|
|
729
1187
|
hedera: Readonly<HederaTestnet>;
|
|
1188
|
+
icp: Readonly<IcpTestnet>;
|
|
730
1189
|
injective: Readonly<InjectiveTestnet>;
|
|
1190
|
+
islm: Readonly<IslmTestnet>;
|
|
1191
|
+
kava: Readonly<KavaTestnet>;
|
|
731
1192
|
kovan: Readonly<Kovan>;
|
|
732
1193
|
goerli: Readonly<Goerli>;
|
|
1194
|
+
holesky: Readonly<Holesky>;
|
|
1195
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
733
1196
|
litecoin: Readonly<LitecoinTestnet>;
|
|
734
1197
|
polygon: Readonly<PolygonTestnet>;
|
|
1198
|
+
oas: Readonly<OasTestnet>;
|
|
735
1199
|
ofc: Readonly<OfcTestnet>;
|
|
1200
|
+
optimism: Readonly<OptimismTestnet>;
|
|
736
1201
|
osmo: Readonly<OsmoTestnet>;
|
|
737
1202
|
rbtc: Readonly<RbtcTestnet>;
|
|
1203
|
+
rune: Readonly<RuneTestNet>;
|
|
1204
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
738
1205
|
stellar: Readonly<StellarTestnet>;
|
|
739
1206
|
sei: Readonly<SeiTestnet>;
|
|
740
1207
|
sol: Readonly<SolTestnet>;
|
|
@@ -742,11 +1209,18 @@ export declare const Networks: {
|
|
|
742
1209
|
near: Readonly<NearTestnet>;
|
|
743
1210
|
stx: Readonly<StxTestnet>;
|
|
744
1211
|
susd: Readonly<SUSDTestnet>;
|
|
1212
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1213
|
+
tao: Readonly<BittensorTestnet>;
|
|
745
1214
|
tia: Readonly<TiaTestnet>;
|
|
1215
|
+
ton: Readonly<TonTestnet>;
|
|
746
1216
|
trx: Readonly<TrxTestnet>;
|
|
1217
|
+
wemix: Readonly<WemixTestnet>;
|
|
1218
|
+
xdc: Readonly<XdcTestnet>;
|
|
747
1219
|
xrp: Readonly<XrpTestnet>;
|
|
748
1220
|
xtz: Readonly<XtzTestnet>;
|
|
749
1221
|
zCash: Readonly<ZCashTestnet>;
|
|
1222
|
+
zeta: Readonly<ZetaTestnet>;
|
|
1223
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
750
1224
|
};
|
|
751
1225
|
};
|
|
752
1226
|
export {};
|