@bitgo-beta/statics 15.1.1-beta.68 → 15.1.1-beta.680
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 +2531 -0
- package/dist/src/account.d.ts +253 -4
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +432 -43
- package/dist/src/ada.d.ts.map +1 -1
- package/dist/src/ada.js +6 -3
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +5 -3
- package/dist/src/base.d.ts +1194 -35
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +1235 -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 +2966 -1352
- 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 +38 -3
- package/dist/src/networks.d.ts +476 -1
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +645 -39
- package/dist/src/ofc.d.ts +240 -0
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +507 -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 +76 -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,237 @@ 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
|
+
batcherContractAddress: string;
|
|
938
|
+
forwarderFactoryAddress: string;
|
|
939
|
+
forwarderImplementationAddress: string;
|
|
940
|
+
}
|
|
941
|
+
declare class BerachainTestnet extends Testnet implements EthereumNetwork {
|
|
942
|
+
name: string;
|
|
943
|
+
family: CoinFamily;
|
|
944
|
+
explorerUrl: string;
|
|
945
|
+
accountExplorerUrl: string;
|
|
946
|
+
chainId: number;
|
|
947
|
+
nativeCoinOperationHashPrefix: string;
|
|
948
|
+
tokenOperationHashPrefix: string;
|
|
949
|
+
batcherContractAddress: string;
|
|
950
|
+
forwarderFactoryAddress: string;
|
|
951
|
+
forwarderImplementationAddress: string;
|
|
952
|
+
}
|
|
953
|
+
declare class Oas extends Mainnet implements EthereumNetwork {
|
|
954
|
+
name: string;
|
|
955
|
+
family: CoinFamily;
|
|
956
|
+
explorerUrl: string;
|
|
957
|
+
accountExplorerUrl: string;
|
|
958
|
+
chainId: number;
|
|
959
|
+
nativeCoinOperationHashPrefix: string;
|
|
960
|
+
batcherContractAddress: string;
|
|
961
|
+
forwarderFactoryAddress: string;
|
|
962
|
+
forwarderImplementationAddress: string;
|
|
963
|
+
}
|
|
964
|
+
declare class OasTestnet extends Testnet implements EthereumNetwork {
|
|
965
|
+
name: string;
|
|
966
|
+
family: CoinFamily;
|
|
967
|
+
explorerUrl: string;
|
|
968
|
+
accountExplorerUrl: string;
|
|
969
|
+
chainId: number;
|
|
970
|
+
nativeCoinOperationHashPrefix: string;
|
|
971
|
+
batcherContractAddress: string;
|
|
972
|
+
forwarderFactoryAddress: string;
|
|
973
|
+
forwarderImplementationAddress: string;
|
|
974
|
+
}
|
|
975
|
+
declare class Coredao extends Mainnet implements EthereumNetwork {
|
|
976
|
+
name: string;
|
|
977
|
+
family: CoinFamily;
|
|
978
|
+
explorerUrl: string;
|
|
979
|
+
accountExplorerUrl: string;
|
|
980
|
+
chainId: number;
|
|
981
|
+
nativeCoinOperationHashPrefix: string;
|
|
982
|
+
batcherContractAddress: string;
|
|
983
|
+
forwarderFactoryAddress: string;
|
|
984
|
+
forwarderImplementationAddress: string;
|
|
985
|
+
}
|
|
986
|
+
declare class CoredaoTestnet extends Testnet implements EthereumNetwork {
|
|
987
|
+
name: string;
|
|
988
|
+
family: CoinFamily;
|
|
989
|
+
explorerUrl: string;
|
|
990
|
+
accountExplorerUrl: string;
|
|
991
|
+
chainId: number;
|
|
992
|
+
nativeCoinOperationHashPrefix: string;
|
|
993
|
+
batcherContractAddress: string;
|
|
994
|
+
forwarderFactoryAddress: string;
|
|
995
|
+
forwarderImplementationAddress: string;
|
|
996
|
+
}
|
|
997
|
+
declare class Xdc extends Mainnet implements EthereumNetwork {
|
|
998
|
+
name: string;
|
|
999
|
+
family: CoinFamily;
|
|
1000
|
+
explorerUrl: string;
|
|
1001
|
+
accountExplorerUrl: string;
|
|
1002
|
+
chainId: number;
|
|
1003
|
+
nativeCoinOperationHashPrefix: string;
|
|
1004
|
+
}
|
|
1005
|
+
declare class XdcTestnet extends Testnet implements EthereumNetwork {
|
|
1006
|
+
name: string;
|
|
1007
|
+
family: CoinFamily;
|
|
1008
|
+
explorerUrl: string;
|
|
1009
|
+
accountExplorerUrl: string;
|
|
1010
|
+
chainId: number;
|
|
1011
|
+
nativeCoinOperationHashPrefix: string;
|
|
1012
|
+
}
|
|
1013
|
+
declare class Wemix extends Mainnet implements EthereumNetwork {
|
|
1014
|
+
name: string;
|
|
1015
|
+
family: CoinFamily;
|
|
1016
|
+
explorerUrl: string;
|
|
1017
|
+
accountExplorerUrl: string;
|
|
1018
|
+
chainId: number;
|
|
1019
|
+
nativeCoinOperationHashPrefix: string;
|
|
1020
|
+
}
|
|
1021
|
+
declare class WemixTestnet extends Testnet implements EthereumNetwork {
|
|
1022
|
+
name: string;
|
|
1023
|
+
family: CoinFamily;
|
|
1024
|
+
explorerUrl: string;
|
|
1025
|
+
accountExplorerUrl: string;
|
|
1026
|
+
chainId: number;
|
|
1027
|
+
nativeCoinOperationHashPrefix: string;
|
|
1028
|
+
}
|
|
1029
|
+
declare class Flare extends Mainnet implements EthereumNetwork {
|
|
1030
|
+
name: string;
|
|
1031
|
+
family: CoinFamily;
|
|
1032
|
+
explorerUrl: string;
|
|
1033
|
+
accountExplorerUrl: string;
|
|
1034
|
+
chainId: number;
|
|
1035
|
+
nativeCoinOperationHashPrefix: string;
|
|
1036
|
+
}
|
|
1037
|
+
declare class FlareTestnet extends Testnet implements EthereumNetwork {
|
|
1038
|
+
name: string;
|
|
1039
|
+
family: CoinFamily;
|
|
1040
|
+
explorerUrl: string;
|
|
1041
|
+
accountExplorerUrl: string;
|
|
1042
|
+
chainId: number;
|
|
1043
|
+
nativeCoinOperationHashPrefix: string;
|
|
1044
|
+
}
|
|
1045
|
+
declare class Songbird extends Mainnet implements EthereumNetwork {
|
|
1046
|
+
name: string;
|
|
1047
|
+
family: CoinFamily;
|
|
1048
|
+
explorerUrl: string;
|
|
1049
|
+
accountExplorerUrl: string;
|
|
1050
|
+
chainId: number;
|
|
1051
|
+
nativeCoinOperationHashPrefix: string;
|
|
1052
|
+
}
|
|
1053
|
+
declare class SongbirdTestnet extends Testnet implements EthereumNetwork {
|
|
1054
|
+
name: string;
|
|
1055
|
+
family: CoinFamily;
|
|
1056
|
+
explorerUrl: string;
|
|
1057
|
+
accountExplorerUrl: string;
|
|
1058
|
+
chainId: number;
|
|
1059
|
+
nativeCoinOperationHashPrefix: string;
|
|
1060
|
+
}
|
|
1061
|
+
declare class BaseChainTestnet extends Testnet implements EthereumNetwork {
|
|
1062
|
+
name: string;
|
|
1063
|
+
family: CoinFamily;
|
|
1064
|
+
explorerUrl: string;
|
|
1065
|
+
accountExplorerUrl: string;
|
|
1066
|
+
chainId: number;
|
|
1067
|
+
nativeCoinOperationHashPrefix: string;
|
|
1068
|
+
tokenOperationHashPrefix: string;
|
|
1069
|
+
forwarderFactoryAddress: string;
|
|
1070
|
+
forwarderImplementationAddress: string;
|
|
1071
|
+
walletFactoryAddress: string;
|
|
1072
|
+
walletImplementationAddress: string;
|
|
1073
|
+
}
|
|
1074
|
+
declare class BaseChain extends Mainnet implements EthereumNetwork {
|
|
1075
|
+
name: string;
|
|
1076
|
+
family: CoinFamily;
|
|
1077
|
+
explorerUrl: string;
|
|
1078
|
+
accountExplorerUrl: string;
|
|
1079
|
+
chainId: number;
|
|
1080
|
+
nativeCoinOperationHashPrefix: string;
|
|
1081
|
+
tokenOperationHashPrefix: string;
|
|
1082
|
+
forwarderFactoryAddress: string;
|
|
1083
|
+
forwarderImplementationAddress: string;
|
|
1084
|
+
walletFactoryAddress: string;
|
|
1085
|
+
walletImplementationAddress: string;
|
|
659
1086
|
}
|
|
660
1087
|
export declare const Networks: {
|
|
661
1088
|
main: {
|
|
662
1089
|
ada: Readonly<Ada>;
|
|
663
1090
|
algorand: Readonly<Algorand>;
|
|
1091
|
+
apt: Readonly<Apt>;
|
|
1092
|
+
arbitrum: Readonly<Arbitrum>;
|
|
664
1093
|
atom: Readonly<Atom>;
|
|
665
1094
|
avalancheC: Readonly<AvalancheC>;
|
|
666
1095
|
avalancheP: Readonly<AvalancheP>;
|
|
1096
|
+
baby: Readonly<Baby>;
|
|
1097
|
+
basechain: Readonly<BaseChain>;
|
|
667
1098
|
bitcoin: Readonly<Bitcoin>;
|
|
668
1099
|
bitcoinCash: Readonly<BitcoinCash>;
|
|
669
1100
|
bitcoinGold: Readonly<BitcoinGold>;
|
|
670
1101
|
bitcoinSV: Readonly<BitcoinSV>;
|
|
1102
|
+
bera: Readonly<Berachain>;
|
|
671
1103
|
bld: Readonly<Bld>;
|
|
672
1104
|
bsc: Readonly<BinanceSmartChain>;
|
|
673
1105
|
casper: Readonly<Casper>;
|
|
674
1106
|
celo: Readonly<Celo>;
|
|
1107
|
+
coredao: Readonly<Coredao>;
|
|
1108
|
+
coreum: Readonly<Coreum>;
|
|
675
1109
|
dash: Readonly<Dash>;
|
|
676
1110
|
dogecoin: Readonly<Dogecoin>;
|
|
677
1111
|
dot: Readonly<Polkadot>;
|
|
@@ -682,40 +1116,64 @@ export declare const Networks: {
|
|
|
682
1116
|
ethereumClassic: Readonly<EthereumClassic>;
|
|
683
1117
|
ethereumW: Readonly<EthereumW>;
|
|
684
1118
|
fiat: Readonly<Fiat>;
|
|
1119
|
+
flr: Readonly<Flare>;
|
|
685
1120
|
hash: Readonly<Hash>;
|
|
686
1121
|
hedera: Readonly<Hedera>;
|
|
1122
|
+
icp: Readonly<Icp>;
|
|
687
1123
|
injective: Readonly<Injective>;
|
|
1124
|
+
islm: Readonly<Islm>;
|
|
1125
|
+
kava: Readonly<Kava>;
|
|
1126
|
+
lnbtc: Readonly<LightningBitcoin>;
|
|
688
1127
|
litecoin: Readonly<Litecoin>;
|
|
689
1128
|
polygon: Readonly<Polygon>;
|
|
1129
|
+
oas: Readonly<Oas>;
|
|
690
1130
|
ofc: Readonly<Ofc>;
|
|
1131
|
+
optimism: Readonly<Optimism>;
|
|
691
1132
|
osmo: Readonly<Osmo>;
|
|
692
1133
|
rbtc: Readonly<Rbtc>;
|
|
1134
|
+
rune: Readonly<Rune>;
|
|
693
1135
|
stellar: Readonly<Stellar>;
|
|
694
1136
|
sei: Readonly<Sei>;
|
|
1137
|
+
sgb: Readonly<Songbird>;
|
|
695
1138
|
sol: Readonly<Sol>;
|
|
696
1139
|
sui: Readonly<Sui>;
|
|
697
1140
|
near: Readonly<Near>;
|
|
698
1141
|
stx: Readonly<Stx>;
|
|
699
1142
|
susd: Readonly<SUSD>;
|
|
1143
|
+
tao: Readonly<Bittensor>;
|
|
700
1144
|
tia: Readonly<Tia>;
|
|
1145
|
+
ton: Readonly<Ton>;
|
|
701
1146
|
trx: Readonly<Trx>;
|
|
1147
|
+
wemix: Readonly<Wemix>;
|
|
1148
|
+
xdc: Readonly<Xdc>;
|
|
702
1149
|
xrp: Readonly<Xrp>;
|
|
703
1150
|
xtz: Readonly<Xtz>;
|
|
704
1151
|
zCash: Readonly<ZCash>;
|
|
1152
|
+
zeta: Readonly<Zeta>;
|
|
1153
|
+
zkSync: Readonly<ZkSync>;
|
|
705
1154
|
};
|
|
706
1155
|
test: {
|
|
707
1156
|
ada: Readonly<AdaTestnet>;
|
|
708
1157
|
algorand: Readonly<AlgorandTestnet>;
|
|
1158
|
+
apt: Readonly<AptTestnet>;
|
|
1159
|
+
arbitrum: Readonly<ArbitrumTestnet>;
|
|
709
1160
|
atom: Readonly<AtomTestnet>;
|
|
710
1161
|
avalancheC: Readonly<AvalancheCTestnet>;
|
|
711
1162
|
avalancheP: Readonly<AvalanchePTestnet>;
|
|
1163
|
+
baby: Readonly<BabyTestnet>;
|
|
1164
|
+
basechain: Readonly<BaseChainTestnet>;
|
|
712
1165
|
bitcoin: Readonly<BitcoinTestnet>;
|
|
1166
|
+
bitcoinPublicSignet: Readonly<BitcoinPublicSignet>;
|
|
1167
|
+
bitcoinTestnet4: Readonly<BitcoinTestnet4>;
|
|
1168
|
+
bitcoinBitGoSignet: Readonly<BitcoinBitGoSignet>;
|
|
713
1169
|
bitcoinCash: Readonly<BitcoinCashTestnet>;
|
|
714
1170
|
bitcoinGold: Readonly<BitcoinGoldTestnet>;
|
|
715
1171
|
bitcoinSV: Readonly<BitcoinSVTestnet>;
|
|
1172
|
+
bera: Readonly<BerachainTestnet>;
|
|
716
1173
|
bld: Readonly<BldTestnet>;
|
|
717
1174
|
bsc: Readonly<BinanceSmartChainTestnet>;
|
|
718
1175
|
casper: Readonly<CasperTestnet>;
|
|
1176
|
+
coredao: Readonly<CoredaoTestnet>;
|
|
719
1177
|
celo: Readonly<CeloTestnet>;
|
|
720
1178
|
dash: Readonly<DashTestnet>;
|
|
721
1179
|
dogecoin: Readonly<DogecoinTestnet>;
|
|
@@ -723,18 +1181,28 @@ export declare const Networks: {
|
|
|
723
1181
|
eCash: Readonly<ECashTestnet>;
|
|
724
1182
|
eos: Readonly<EosTestnet>;
|
|
725
1183
|
fiat: Readonly<FiatTestnet>;
|
|
1184
|
+
flr: Readonly<FlareTestnet>;
|
|
726
1185
|
pyrmont: Readonly<Pyrmont>;
|
|
727
1186
|
ethereumClassicTestnet: Readonly<EthereumClassicTestnet>;
|
|
728
1187
|
hash: Readonly<HashTestnet>;
|
|
729
1188
|
hedera: Readonly<HederaTestnet>;
|
|
1189
|
+
icp: Readonly<IcpTestnet>;
|
|
730
1190
|
injective: Readonly<InjectiveTestnet>;
|
|
1191
|
+
islm: Readonly<IslmTestnet>;
|
|
1192
|
+
kava: Readonly<KavaTestnet>;
|
|
731
1193
|
kovan: Readonly<Kovan>;
|
|
732
1194
|
goerli: Readonly<Goerli>;
|
|
1195
|
+
holesky: Readonly<Holesky>;
|
|
1196
|
+
lnbtc: Readonly<LightningBitcoinTestnet>;
|
|
733
1197
|
litecoin: Readonly<LitecoinTestnet>;
|
|
734
1198
|
polygon: Readonly<PolygonTestnet>;
|
|
1199
|
+
oas: Readonly<OasTestnet>;
|
|
735
1200
|
ofc: Readonly<OfcTestnet>;
|
|
1201
|
+
optimism: Readonly<OptimismTestnet>;
|
|
736
1202
|
osmo: Readonly<OsmoTestnet>;
|
|
737
1203
|
rbtc: Readonly<RbtcTestnet>;
|
|
1204
|
+
rune: Readonly<RuneTestNet>;
|
|
1205
|
+
sgb: Readonly<SongbirdTestnet>;
|
|
738
1206
|
stellar: Readonly<StellarTestnet>;
|
|
739
1207
|
sei: Readonly<SeiTestnet>;
|
|
740
1208
|
sol: Readonly<SolTestnet>;
|
|
@@ -742,11 +1210,18 @@ export declare const Networks: {
|
|
|
742
1210
|
near: Readonly<NearTestnet>;
|
|
743
1211
|
stx: Readonly<StxTestnet>;
|
|
744
1212
|
susd: Readonly<SUSDTestnet>;
|
|
1213
|
+
coreum: Readonly<CoreumTestnet>;
|
|
1214
|
+
tao: Readonly<BittensorTestnet>;
|
|
745
1215
|
tia: Readonly<TiaTestnet>;
|
|
1216
|
+
ton: Readonly<TonTestnet>;
|
|
746
1217
|
trx: Readonly<TrxTestnet>;
|
|
1218
|
+
wemix: Readonly<WemixTestnet>;
|
|
1219
|
+
xdc: Readonly<XdcTestnet>;
|
|
747
1220
|
xrp: Readonly<XrpTestnet>;
|
|
748
1221
|
xtz: Readonly<XtzTestnet>;
|
|
749
1222
|
zCash: Readonly<ZCashTestnet>;
|
|
1223
|
+
zeta: Readonly<ZetaTestnet>;
|
|
1224
|
+
zkSync: Readonly<ZkSyncTestnet>;
|
|
750
1225
|
};
|
|
751
1226
|
};
|
|
752
1227
|
export {};
|