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