@bitgo-beta/statics 15.1.1-beta.73 → 15.1.1-beta.730

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.
Files changed (53) hide show
  1. package/.mocharc.js +1 -1
  2. package/CHANGELOG.md +2606 -0
  3. package/dist/src/account.d.ts +310 -21
  4. package/dist/src/account.d.ts.map +1 -1
  5. package/dist/src/account.js +519 -76
  6. package/dist/src/ada.d.ts.map +1 -1
  7. package/dist/src/ada.js +7 -3
  8. package/dist/src/avaxp.d.ts.map +1 -1
  9. package/dist/src/avaxp.js +6 -3
  10. package/dist/src/base.d.ts +1209 -35
  11. package/dist/src/base.d.ts.map +1 -1
  12. package/dist/src/base.js +1250 -46
  13. package/dist/src/coinFeatures.d.ts +75 -0
  14. package/dist/src/coinFeatures.d.ts.map +1 -0
  15. package/dist/src/coinFeatures.js +423 -0
  16. package/dist/src/coins/erc20Coins.d.ts +2 -0
  17. package/dist/src/coins/erc20Coins.d.ts.map +1 -0
  18. package/dist/src/coins/erc20Coins.js +1338 -0
  19. package/dist/src/coins/ofcCoins.d.ts +2 -0
  20. package/dist/src/coins/ofcCoins.d.ts.map +1 -0
  21. package/dist/src/coins/ofcCoins.js +233 -0
  22. package/dist/src/coins/ofcErc20Coins.d.ts +3 -0
  23. package/dist/src/coins/ofcErc20Coins.d.ts.map +1 -0
  24. package/dist/src/coins/ofcErc20Coins.js +1266 -0
  25. package/dist/src/coins.d.ts +0 -1
  26. package/dist/src/coins.d.ts.map +1 -1
  27. package/dist/src/coins.js +974 -1504
  28. package/dist/src/constants.d.ts +1 -0
  29. package/dist/src/constants.d.ts.map +1 -1
  30. package/dist/src/constants.js +3 -2
  31. package/dist/src/index.d.ts +2 -1
  32. package/dist/src/index.d.ts.map +1 -1
  33. package/dist/src/index.js +13 -3
  34. package/dist/src/lightning.d.ts +43 -0
  35. package/dist/src/lightning.d.ts.map +1 -0
  36. package/dist/src/lightning.js +60 -0
  37. package/dist/src/map.d.ts +2 -0
  38. package/dist/src/map.d.ts.map +1 -1
  39. package/dist/src/map.js +46 -3
  40. package/dist/src/networks.d.ts +486 -1
  41. package/dist/src/networks.d.ts.map +1 -1
  42. package/dist/src/networks.js +651 -42
  43. package/dist/src/ofc.d.ts +279 -0
  44. package/dist/src/ofc.d.ts.map +1 -1
  45. package/dist/src/ofc.js +583 -14
  46. package/dist/src/tokenConfig.d.ts +69 -13
  47. package/dist/src/tokenConfig.d.ts.map +1 -1
  48. package/dist/src/tokenConfig.js +136 -7
  49. package/dist/src/utxo.d.ts +3 -1
  50. package/dist/src/utxo.d.ts.map +1 -1
  51. package/dist/src/utxo.js +77 -3
  52. package/dist/tsconfig.tsbuildinfo +1 -1
  53. package/package.json +2 -2
@@ -24,11 +24,16 @@ export interface AccountConstructorOptions {
24
24
  */
25
25
  export declare class AccountCoin extends BaseCoin {
26
26
  static readonly DEFAULT_FEATURES: CoinFeature[];
27
+ static readonly DEFAULT_FEATURES_EXCLUDE_SINGAPORE: (CoinFeature.EVM_WALLET | CoinFeature.METAMASK_INSTITUTIONAL | CoinFeature.VALUELESS_TRANSFER | CoinFeature.TRANSACTION_DATA | CoinFeature.REQUIRES_BIG_NUMBER | CoinFeature.REQUIRES_KRS_BACKUP_KEY | CoinFeature.PAYGO | CoinFeature.UNSPENT_MODEL | CoinFeature.LIGHTNING_MODEL | CoinFeature.ACCOUNT_MODEL | CoinFeature.CHILD_PAYS_FOR_PARENT | CoinFeature.SUPPORTS_TOKENS | CoinFeature.ENTERPRISE_PAYS_FEES | CoinFeature.REQUIRES_RESERVE | CoinFeature.CUSTODY | CoinFeature.TSS | CoinFeature.STAKING | CoinFeature.LIQUID_STAKING | CoinFeature.DEPRECATED | CoinFeature.GENERIC_TOKEN | CoinFeature.CUSTODY_BITGO_TRUST | CoinFeature.CUSTODY_BITGO_NEW_YORK | CoinFeature.CUSTODY_BITGO_GERMANY | CoinFeature.CUSTODY_BITGO_SWITZERLAND | CoinFeature.CUSTODY_BITGO_FRANKFURT | CoinFeature.CUSTODY_BITGO_SISTER_TRUST_ONE | CoinFeature.CUSTODY_BITGO_KOREA | CoinFeature.CUSTODY_BITGO_EUROPE_APS | CoinFeature.CUSTODY_BITGO_MENA_FZE | CoinFeature.CUSTODY_BITGO_CUSTODY_MENA_FZE | CoinFeature.EXPIRING_TRANSACTIONS | CoinFeature.MULTISIG_COLD | CoinFeature.TSS_COLD | CoinFeature.SHA256_WITH_ECDSA_TSS | CoinFeature.COSMOS_LIKE_COINS | CoinFeature.REBUILD_ON_CUSTODY_SIGNING | CoinFeature.INCREASED_TX_REQUEST_REBUILD_LIMIT | CoinFeature.BULK_TRANSACTION | CoinFeature.DISTRIBUTED_CUSTODY | CoinFeature.BULK_STAKING_TRANSACTION | CoinFeature.USES_NON_PACKED_ENCODING_FOR_TXDATA | CoinFeature.MPCV2 | CoinFeature.STUCK_TRANSACTION_MANAGEMENT_TSS | CoinFeature.STUCK_TRANSACTION_MANAGEMENT_ONCHAIN | CoinFeature.ETH_ROLLUP_CHAIN | CoinFeature.EIP1559 | CoinFeature.TSS_ENTERPRISE_PAYS_FEES)[];
27
28
  readonly network: AccountNetwork;
28
29
  constructor(options: AccountConstructorOptions);
29
30
  protected requiredFeatures(): Set<CoinFeature>;
30
31
  protected disallowedFeatures(): Set<CoinFeature>;
31
32
  }
33
+ export interface GasTankAccountConstructorOptions extends AccountConstructorOptions {
34
+ gasTankLowBalanceAlertFactor: number;
35
+ gasTankMinBalanceRecommendationFactor: number;
36
+ }
32
37
  export interface Erc20ConstructorOptions extends AccountConstructorOptions {
33
38
  contractAddress: string;
34
39
  }
@@ -41,15 +46,15 @@ export interface HederaCoinConstructorOptions extends AccountConstructorOptions
41
46
  export interface HederaTokenConstructorOptions extends AccountConstructorOptions {
42
47
  nodeAccountId: string;
43
48
  tokenId: string;
44
- }
45
- export interface AlgoCoinConstructorOptions extends AccountConstructorOptions {
46
- tokenURL: string;
49
+ contractAddress: string;
47
50
  }
48
51
  export interface EosCoinConstructorOptions extends AccountConstructorOptions {
49
52
  contractName: string;
53
+ contractAddress: string;
50
54
  }
51
55
  export interface SolCoinConstructorOptions extends AccountConstructorOptions {
52
56
  tokenAddress: string;
57
+ contractAddress: string;
53
58
  }
54
59
  export interface AdaCoinConstructorOptions extends AccountConstructorOptions {
55
60
  policyId: string;
@@ -59,8 +64,18 @@ export interface XrpCoinConstructorOptions extends AccountConstructorOptions {
59
64
  issuerAddress: string;
60
65
  currencyCode: string;
61
66
  domain: string;
67
+ contractAddress: string;
62
68
  }
63
- declare type FiatCoinName = `fiat${string}` | `tfiat${string}`;
69
+ export interface SuiCoinConstructorOptions extends AccountConstructorOptions {
70
+ packageId: string;
71
+ module: string;
72
+ symbol: string;
73
+ contractAddress: string;
74
+ }
75
+ export interface AptCoinConstructorOptions extends AccountConstructorOptions {
76
+ assetId: string;
77
+ }
78
+ type FiatCoinName = `fiat${string}` | `tfiat${string}`;
64
79
  export interface FiatCoinConstructorOptions extends AccountConstructorOptions {
65
80
  name: FiatCoinName;
66
81
  }
@@ -70,6 +85,11 @@ export interface ContractAddress extends String {
70
85
  export declare class AccountCoinToken extends AccountCoin {
71
86
  constructor(options: AccountConstructorOptions);
72
87
  }
88
+ export declare class GasTankAccountCoin extends AccountCoin {
89
+ gasTankLowBalanceAlertFactor: number;
90
+ gasTankMinBalanceRecommendationFactor: number;
91
+ constructor(options: GasTankAccountConstructorOptions);
92
+ }
73
93
  /**
74
94
  * Some blockchains support tokens which are defined by an address at which they have a smart contract deployed.
75
95
  * Examples are ERC20 tokens, and the equivalent on other chains.
@@ -155,6 +175,7 @@ export declare class HederaCoin extends AccountCoinToken {
155
175
  export declare class HederaToken extends AccountCoinToken {
156
176
  nodeAccountId: string;
157
177
  tokenId: string;
178
+ contractAddress: string;
158
179
  constructor(options: HederaTokenConstructorOptions);
159
180
  }
160
181
  /**
@@ -164,8 +185,7 @@ export declare class HederaToken extends AccountCoinToken {
164
185
  *
165
186
  */
166
187
  export declare class AlgoCoin extends AccountCoinToken {
167
- tokenURL: string;
168
- constructor(options: AlgoCoinConstructorOptions);
188
+ constructor(options: AccountConstructorOptions);
169
189
  }
170
190
  /**
171
191
  * The Eos network supports tokens
@@ -175,6 +195,7 @@ export declare class AlgoCoin extends AccountCoinToken {
175
195
  */
176
196
  export declare class EosCoin extends AccountCoinToken {
177
197
  contractName: string;
198
+ contractAddress: string;
178
199
  constructor(options: EosCoinConstructorOptions);
179
200
  }
180
201
  /**
@@ -185,6 +206,7 @@ export declare class EosCoin extends AccountCoinToken {
185
206
  */
186
207
  export declare class SolCoin extends AccountCoinToken {
187
208
  tokenAddress: string;
209
+ contractAddress: string;
188
210
  constructor(options: SolCoinConstructorOptions);
189
211
  }
190
212
  /**
@@ -211,6 +233,34 @@ export declare class AvaxERC20Token extends ContractAddressDefinedToken {
211
233
  export declare class PolygonERC20Token extends ContractAddressDefinedToken {
212
234
  constructor(options: Erc20ConstructorOptions);
213
235
  }
236
+ /**
237
+ * The Arbitrum Chain network support tokens
238
+ * Arbitrum Chain Tokens are ERC20 tokens
239
+ */
240
+ export declare class ArbethERC20Token extends ContractAddressDefinedToken {
241
+ constructor(options: Erc20ConstructorOptions);
242
+ }
243
+ /**
244
+ * The Optimism Chain network support tokens
245
+ * Optimism Chain Tokens are ERC20 tokens
246
+ */
247
+ export declare class OpethERC20Token extends ContractAddressDefinedToken {
248
+ constructor(options: Erc20ConstructorOptions);
249
+ }
250
+ /**
251
+ * The zkSync network support tokens
252
+ * zkSync Tokens are ERC20 tokens
253
+ */
254
+ export declare class ZkethERC20Token extends ContractAddressDefinedToken {
255
+ constructor(options: Erc20ConstructorOptions);
256
+ }
257
+ /**
258
+ * The Bera Chain network support tokens
259
+ * Bera Chain Tokens are ERC20 tokens
260
+ */
261
+ export declare class BeraERC20Token extends ContractAddressDefinedToken {
262
+ constructor(options: Erc20ConstructorOptions);
263
+ }
214
264
  /**
215
265
  * The Xrp network supports tokens
216
266
  * Xrp tokens are identified by their issuer address
@@ -221,8 +271,26 @@ export declare class XrpCoin extends AccountCoinToken {
221
271
  issuerAddress: string;
222
272
  currencyCode: string;
223
273
  domain: string;
274
+ contractAddress: string;
224
275
  constructor(options: XrpCoinConstructorOptions);
225
276
  }
277
+ export declare class SuiCoin extends AccountCoinToken {
278
+ packageId: string;
279
+ module: string;
280
+ symbol: string;
281
+ contractAddress: string;
282
+ constructor(options: SuiCoinConstructorOptions);
283
+ }
284
+ /**
285
+ * The Apt network supports tokens
286
+ * Apt tokens work similar to native Apt coin, but the token name is determined by
287
+ * the tokenAddress on the chain.
288
+ *
289
+ */
290
+ export declare class AptCoin extends AccountCoinToken {
291
+ assetId: string;
292
+ constructor(options: AptCoinConstructorOptions);
293
+ }
226
294
  /**
227
295
  * Fiat currencies, such as USD, EUR, or YEN.
228
296
  */
@@ -249,6 +317,25 @@ export declare class FiatCoin extends BaseCoin {
249
317
  * @param isToken? Whether or not this account coin is a token of another coin
250
318
  */
251
319
  export declare function account(id: string, name: string, fullName: string, network: AccountNetwork, decimalPlaces: number, asset: UnderlyingAsset, baseUnit: BaseUnit, features?: CoinFeature[], primaryKeyCurve?: KeyCurve, prefix?: string, suffix?: string, isToken?: boolean): Readonly<AccountCoin>;
320
+ /**
321
+ * Factory function for gas tank account coin instances.
322
+ *
323
+ * @param id uuid v4
324
+ * @param name unique identifier of the coin
325
+ * @param fullName Complete human-readable name of the coin
326
+ * @param network Network object for this coin
327
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
328
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
329
+ * @param baseUnit
330
+ * @param features Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
331
+ * @param primaryKeyCurve The elliptic curve for this chain/token
332
+ * @param gasTankLowBalanceAlertFactor Low gas tank balance alert threshold = (feeEstimate x gasTankLowBalanceAlertFactor)
333
+ * @param gasTankMinBalanceRecommendationFactor Min gas tank balance recommendation = (feeEstimate x gasTankMinBalanceRecommendationFactor)
334
+ * @param prefix Optional coin prefix. Defaults to empty string
335
+ * @param suffix Optional coin suffix. Defaults to coin name.
336
+ * @param isToken Whether or not this account coin is a token of another coin
337
+ */
338
+ export declare function gasTankAccount(id: string, name: string, fullName: string, network: AccountNetwork, decimalPlaces: number, asset: UnderlyingAsset, baseUnit: BaseUnit, features?: CoinFeature[], primaryKeyCurve?: KeyCurve, gasTankLowBalanceAlertFactor?: number, gasTankMinBalanceRecommendationFactor?: number, prefix?: string, suffix?: string, isToken?: boolean): Readonly<GasTankAccountCoin>;
252
339
  /**
253
340
  * Factory function for erc20 token instances.
254
341
  *
@@ -305,7 +392,7 @@ export declare function erc721(id: string, name: string, fullName: string, contr
305
392
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
306
393
  * @param prefix? Optional token prefix. Defaults to empty string
307
394
  * @param suffix? Optional token suffix. Defaults to token name.
308
- * @param network? Optional token network. Defaults to Goerli test network.
395
+ * @param network? Optional token network. Defaults to Holesky test network.
309
396
  * @param primaryKeyCurve The elliptic curve for this chain/token
310
397
  */
311
398
  export declare function terc721(id: string, name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc721Coin>;
@@ -349,7 +436,7 @@ export declare function erc1155(id: string, name: string, fullName: string, cont
349
436
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
350
437
  * @param prefix? Optional token prefix. Defaults to empty string
351
438
  * @param suffix? Optional token suffix. Defaults to token name.
352
- * @param network? Optional token network. Defaults to Goerli test network.
439
+ * @param network? Optional token network. Defaults to Holesky test network.
353
440
  * @param primaryKeyCurve The elliptic curve for this chain/token
354
441
  */
355
442
  export declare function terc1155(id: string, name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc1155Coin>;
@@ -511,7 +598,7 @@ export declare function ttronToken(id: string, name: string, fullName: string, d
511
598
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
512
599
  * @param primaryKeyCurve The elliptic curve for this chain/token
513
600
  */
514
- export declare function hederaCoin(id: string, name: string, fullName: string, network: AccountNetwork, decimalPlaces: number, asset: UnderlyingAsset, nodeAccountId?: string, features?: CoinFeature[], prefix?: string, suffix?: string, primaryKeyCurve?: KeyCurve): Readonly<HederaCoin>;
601
+ export declare function hederaCoin(id: string, name: string, fullName: string, network: AccountNetwork, decimalPlaces: number, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, primaryKeyCurve?: KeyCurve): Readonly<HederaCoin>;
515
602
  /**
516
603
  * Factory function for Hedera token instances
517
604
  *
@@ -522,13 +609,14 @@ export declare function hederaCoin(id: string, name: string, fullName: string, n
522
609
  * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
523
610
  * @param nodeAccountId node account Id from which the transaction will be sent
524
611
  * @param tokenId The unique identifier of this token
612
+ * @param contractAddress Contract address of this token, same as tokenId
525
613
  * @param prefix? Optional token prefix. Defaults to empty string
526
614
  * @param suffix? Optional token suffix. Defaults to token name.
527
615
  * @param network? Optional token network. Defaults to Hedera mainnet.
528
616
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
529
617
  * @param primaryKeyCurve The elliptic curve for this chain/token
530
618
  */
531
- export declare function hederaToken(id: string, name: string, fullName: string, network: AccountNetwork, decimalPlaces: number, asset: UnderlyingAsset, nodeAccountId: string | undefined, tokenId: string, features?: CoinFeature[], prefix?: string, suffix?: string, primaryKeyCurve?: KeyCurve): Readonly<HederaToken>;
619
+ export declare function hederaToken(id: string, name: string, fullName: string, network: AccountNetwork, decimalPlaces: number, asset: UnderlyingAsset, tokenId: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, primaryKeyCurve?: KeyCurve): Readonly<HederaToken>;
532
620
  /**
533
621
  * Factory function for ALGO token instances.
534
622
  *
@@ -539,7 +627,6 @@ export declare function hederaToken(id: string, name: string, fullName: string,
539
627
  * @param fullName Complete human-readable name of the token
540
628
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
541
629
  * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
542
- * @param tokenURL Optional asset Url for more informationa about the asset
543
630
  * See https://developer.algorand.org/docs/reference/transactions/#url
544
631
  * @param prefix? Optional token prefix. Defaults to empty string
545
632
  * @param suffix? Optional token suffix. Defaults to token name.
@@ -547,7 +634,7 @@ export declare function hederaToken(id: string, name: string, fullName: string,
547
634
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
548
635
  * @param primaryKeyCurve The elliptic curve for this chain/token
549
636
  */
550
- export declare function algoToken(id: string, name: string, alias: string | undefined, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, tokenURL?: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<AlgoCoin>;
637
+ export declare function algoToken(id: string, name: string, alias: string | undefined, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<AlgoCoin>;
551
638
  /**
552
639
  * Factory function for testnet ALGO token instances.
553
640
  *
@@ -557,14 +644,13 @@ export declare function algoToken(id: string, name: string, alias: string | unde
557
644
  * @param fullName Complete human-readable name of the token
558
645
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
559
646
  * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
560
- * @param tokenURL Optional asset Url for more informationa about the asset
561
647
  * See https://developer.algorand.org/docs/reference/transactions/#url
562
648
  * @param prefix? Optional token prefix. Defaults to empty string
563
649
  * @param suffix? Optional token suffix. Defaults to token name.
564
650
  * @param network? Optional token network. Defaults to Algo testnet.
565
651
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
566
652
  */
567
- export declare function talgoToken(id: string, name: string, alias: string | undefined, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, tokenURL?: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<AlgoCoin>;
653
+ export declare function talgoToken(id: string, name: string, alias: string | undefined, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<AlgoCoin>;
568
654
  /**
569
655
  * Factory function for eos token instances.
570
656
  *
@@ -573,6 +659,7 @@ export declare function talgoToken(id: string, name: string, alias: string | und
573
659
  * @param fullName Complete human-readable name of the token
574
660
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
575
661
  * @param contractName Contract address of this token
662
+ * @param contractAddress Contract address of this token
576
663
  * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
577
664
  * @param prefix? Optional token prefix. Defaults to empty string
578
665
  * @param suffix? Optional token suffix. Defaults to token name.
@@ -580,7 +667,7 @@ export declare function talgoToken(id: string, name: string, alias: string | und
580
667
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
581
668
  * @param primaryKeyCurve The elliptic curve for this chain/token
582
669
  */
583
- export declare function eosToken(id: string, name: string, fullName: string, decimalPlaces: number, contractName: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<EosCoin>;
670
+ export declare function eosToken(id: string, name: string, fullName: string, decimalPlaces: number, contractName: string, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<EosCoin>;
584
671
  /**
585
672
  * Factory function for testnet eos token instances.
586
673
  *
@@ -588,6 +675,7 @@ export declare function eosToken(id: string, name: string, fullName: string, dec
588
675
  * @param name unique identifier of the token
589
676
  * @param fullName Complete human-readable name of the token
590
677
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
678
+ * @param contractName Contract address of this token
591
679
  * @param contractAddress Contract address of this token
592
680
  * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
593
681
  * @param prefix? Optional token prefix. Defaults to empty string
@@ -595,7 +683,7 @@ export declare function eosToken(id: string, name: string, fullName: string, dec
595
683
  * @param network? Optional token network. Defaults to the testnet EOS network.
596
684
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
597
685
  */
598
- export declare function teosToken(id: string, name: string, fullName: string, decimalPlaces: number, contractName: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<EosCoin>;
686
+ export declare function teosToken(id: string, name: string, fullName: string, decimalPlaces: number, contractName: string, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<EosCoin>;
599
687
  /**
600
688
  * Factory function for sol token instances.
601
689
  *
@@ -604,6 +692,7 @@ export declare function teosToken(id: string, name: string, fullName: string, de
604
692
  * @param fullName Complete human-readable name of the token
605
693
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
606
694
  * @param tokenAddress Token address of this token
695
+ * @param contractAddress Contract address of this token
607
696
  * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
608
697
  * @param prefix? Optional token prefix. Defaults to empty string
609
698
  * @param suffix? Optional token suffix. Defaults to token name.
@@ -611,7 +700,7 @@ export declare function teosToken(id: string, name: string, fullName: string, de
611
700
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
612
701
  * @param primaryKeyCurve The elliptic curve for this chain/token
613
702
  */
614
- export declare function solToken(id: string, name: string, fullName: string, decimalPlaces: number, tokenAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<SolCoin>;
703
+ export declare function solToken(id: string, name: string, fullName: string, decimalPlaces: number, tokenAddress: string, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<SolCoin>;
615
704
  /**
616
705
  * Factory function for testnet solana token instances.
617
706
  *
@@ -626,7 +715,7 @@ export declare function solToken(id: string, name: string, fullName: string, dec
626
715
  * @param network? Optional token network. Defaults to the testnet Solana network.
627
716
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
628
717
  */
629
- export declare function tsolToken(id: string, name: string, fullName: string, decimalPlaces: number, tokenAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<SolCoin>;
718
+ export declare function tsolToken(id: string, name: string, fullName: string, decimalPlaces: number, tokenAddress: string, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<SolCoin>;
630
719
  /**
631
720
  * Factory function for ada token instances.
632
721
  *
@@ -707,7 +796,7 @@ export declare function tavaxErc20(id: string, name: string, fullName: string, d
707
796
  */
708
797
  export declare function polygonErc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<PolygonERC20Token>;
709
798
  /**
710
- * Factory function for Mumbai testnet polygonErc20 token instances.
799
+ * Factory function for Amoy testnet polygonErc20 token instances.
711
800
  *
712
801
  * @param id uuid v4
713
802
  * @param name unique identifier of the token
@@ -722,6 +811,134 @@ export declare function polygonErc20(id: string, name: string, fullName: string,
722
811
  * @param primaryKeyCurve The elliptic curve for this chain/token
723
812
  */
724
813
  export declare function tpolygonErc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<PolygonERC20Token>;
814
+ /**
815
+ * Factory function for arbethErc20 token instances.
816
+ *
817
+ * @param id uuid v4
818
+ * @param name unique identifier of the token
819
+ * @param fullName Complete human-readable name of the token
820
+ * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
821
+ * @param contractAddress Contract address of this token
822
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
823
+ * @param prefix? Optional token prefix. Defaults to empty string
824
+ * @param suffix? Optional token suffix. Defaults to token name.
825
+ * @param network? Optional token network. Defaults to Arbitrum main network.
826
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
827
+ * @param primaryKeyCurve The elliptic curve for this chain/token
828
+ */
829
+ export declare function arbethErc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<ArbethERC20Token>;
830
+ /**
831
+ * Factory function for Arbitrum Sepolia testnet arbethErc20 token instances.
832
+ *
833
+ * @param id uuid v4
834
+ * @param name unique identifier of the token
835
+ * @param fullName Complete human-readable name of the token
836
+ * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
837
+ * @param contractAddress Contract address of this token
838
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
839
+ * @param prefix? Optional token prefix. Defaults to empty string
840
+ * @param suffix? Optional token suffix. Defaults to token name.
841
+ * @param network? Optional token network. Defaults to the Arbitrum test network.
842
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
843
+ * @param primaryKeyCurve The elliptic curve for this chain/token
844
+ */
845
+ export declare function tarbethErc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<ArbethERC20Token>;
846
+ /**
847
+ * Factory function for opethErc20 token instances.
848
+ *
849
+ * @param id uuid v4
850
+ * @param name unique identifier of the token
851
+ * @param fullName Complete human-readable name of the token
852
+ * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
853
+ * @param contractAddress Contract address of this token
854
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
855
+ * @param prefix? Optional token prefix. Defaults to empty string
856
+ * @param suffix? Optional token suffix. Defaults to token name.
857
+ * @param network? Optional token network. Defaults to Optimism main network.
858
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
859
+ * @param primaryKeyCurve The elliptic curve for this chain/token
860
+ */
861
+ export declare function opethErc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<OpethERC20Token>;
862
+ /**
863
+ * Factory function for Optimism Sepolia testnet opethErc20 token instances.
864
+ *
865
+ * @param id uuid v4
866
+ * @param name unique identifier of the token
867
+ * @param fullName Complete human-readable name of the token
868
+ * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
869
+ * @param contractAddress Contract address of this token
870
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
871
+ * @param prefix? Optional token prefix. Defaults to empty string
872
+ * @param suffix? Optional token suffix. Defaults to token name.
873
+ * @param network? Optional token network. Defaults to the Optimism test network.
874
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
875
+ * @param primaryKeyCurve The elliptic curve for this chain/token
876
+ */
877
+ export declare function topethErc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<OpethERC20Token>;
878
+ /**
879
+ * Factory function for zkethErc20 token instances.
880
+ *
881
+ * @param id uuid v4
882
+ * @param name unique identifier of the token
883
+ * @param fullName Complete human-readable name of the token
884
+ * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
885
+ * @param contractAddress Contract address of this token
886
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
887
+ * @param prefix? Optional token prefix. Defaults to empty string
888
+ * @param suffix? Optional token suffix. Defaults to token name.
889
+ * @param network? Optional token network. Defaults to zkSync mainnet network.
890
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
891
+ * @param primaryKeyCurve The elliptic curve for this chain/token
892
+ */
893
+ export declare function zkethErc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<ZkethERC20Token>;
894
+ /**
895
+ * Factory function for zkSync Sepolia testnet zkethErc20 token instances.
896
+ *
897
+ * @param id uuid v4
898
+ * @param name unique identifier of the token
899
+ * @param fullName Complete human-readable name of the token
900
+ * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
901
+ * @param contractAddress Contract address of this token
902
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
903
+ * @param prefix? Optional token prefix. Defaults to empty string
904
+ * @param suffix? Optional token suffix. Defaults to token name.
905
+ * @param network? Optional token network. Defaults to the zkSync sepolia test network.
906
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
907
+ * @param primaryKeyCurve The elliptic curve for this chain/token
908
+ */
909
+ export declare function tzkethErc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<ZkethERC20Token>;
910
+ /**
911
+ * Factory function for beraErc20 token instances.
912
+ *
913
+ * @param id uuid v4
914
+ * @param name unique identifier of the token
915
+ * @param fullName Complete human-readable name of the token
916
+ * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
917
+ * @param contractAddress Contract address of this token
918
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
919
+ * @param prefix? Optional token prefix. Defaults to empty string
920
+ * @param suffix? Optional token suffix. Defaults to token name.
921
+ * @param network? Optional token network. Defaults to bera mainnet network.
922
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
923
+ * @param primaryKeyCurve The elliptic curve for this chain/token
924
+ */
925
+ export declare function beraErc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<BeraERC20Token>;
926
+ /**
927
+ * Factory function for zkSync Sepolia testnet beraErc20 token instances.
928
+ *
929
+ * @param id uuid v4
930
+ * @param name unique identifier of the token
931
+ * @param fullName Complete human-readable name of the token
932
+ * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
933
+ * @param contractAddress Contract address of this token
934
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
935
+ * @param prefix? Optional token prefix. Defaults to empty string
936
+ * @param suffix? Optional token suffix. Defaults to token name.
937
+ * @param network? Optional token network. Defaults to the bera test network.
938
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
939
+ * @param primaryKeyCurve The elliptic curve for this chain/token
940
+ */
941
+ export declare function tberaErc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<BeraERC20Token>;
725
942
  /**
726
943
  * Factory function for xrp token instances.
727
944
  *
@@ -731,6 +948,7 @@ export declare function tpolygonErc20(id: string, name: string, fullName: string
731
948
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
732
949
  * @param issuerAddress: The address of the issuer of the token,
733
950
  * @param currencyCode The token symbol. Example: USD, BTC, ETH, etc.
951
+ * @param contractAddress Contract address of this token formed with `issuerAddress::currencyCode`
734
952
  * @param domain? the domain of the issuer of the token,
735
953
  * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
736
954
  * @param prefix? Optional token prefix. Defaults to empty string
@@ -739,7 +957,7 @@ export declare function tpolygonErc20(id: string, name: string, fullName: string
739
957
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
740
958
  * @param primaryKeyCurve The elliptic curve for this chain/token
741
959
  */
742
- export declare function xrpToken(id: string, name: string, fullName: string, decimalPlaces: number, issuerAddress: string, currencyCode: string, domain: string | undefined, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<XrpCoin>;
960
+ export declare function xrpToken(id: string, name: string, fullName: string, decimalPlaces: number, issuerAddress: string, currencyCode: string, contractAddress: string, domain: string | undefined, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<XrpCoin>;
743
961
  /**
744
962
  * Factory function for testnet cardano token instances.
745
963
  *
@@ -749,6 +967,7 @@ export declare function xrpToken(id: string, name: string, fullName: string, dec
749
967
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
750
968
  * @param issuerAddress: The address of the issuer of the token,
751
969
  * @param currencyCode The token symbol. Example: USD, BTC, ETH, etc.
970
+ * @param contractAddress Contract address of this token formed with `issuerAddress::currencyCode`
752
971
  * @param domain? the domain of the issuer of the token,
753
972
  * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
754
973
  * @param prefix? Optional token prefix. Defaults to empty string
@@ -756,7 +975,77 @@ export declare function xrpToken(id: string, name: string, fullName: string, dec
756
975
  * @param network? Optional token network. Defaults to the testnet Cardano network.
757
976
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
758
977
  */
759
- export declare function txrpToken(id: string, name: string, fullName: string, decimalPlaces: number, issuerAddress: string, currencyCode: string, domain: string | undefined, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<XrpCoin>;
978
+ export declare function txrpToken(id: string, name: string, fullName: string, decimalPlaces: number, issuerAddress: string, currencyCode: string, contractAddress: string, domain: string | undefined, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<XrpCoin>;
979
+ /**
980
+ * Factory function for sui token instances.
981
+ *
982
+ * @param id uuid v4
983
+ * @param name unique identifier of the token
984
+ * @param fullName Complete human-readable name of the token
985
+ * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
986
+ * @param packageId PackageId of this token
987
+ * @param module The module of the package with id `packageId`
988
+ * @param symbol Identifies the coin defined in the module `module` of the package with id `packageId`
989
+ * @param contractAddress Contract address of this token formed with `packageId::module::symbol`
990
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
991
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES
992
+ * @param prefix? Optional token prefix. Defaults to empty string
993
+ * @param suffix? Optional token suffix. Defaults to token name.
994
+ * @param network? Optional token network. Defaults to SUI main network.
995
+ * @param primaryKeyCurve The elliptic curve for this chain/token
996
+ */
997
+ export declare function suiToken(id: string, name: string, fullName: string, decimalPlaces: number, packageId: string, module: string, symbol: string, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<SuiCoin>;
998
+ /**
999
+ * Factory function for testnet sui token instances.
1000
+ *
1001
+ * @param id uuid v4
1002
+ * @param name unique identifier of the token
1003
+ * @param fullName Complete human-readable name of the token
1004
+ * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
1005
+ * @param packageId PackageId of this token
1006
+ * @param module The module of the package with id `packageId`
1007
+ * @param symbol Identifies the coin defined in the module `module` of the package with id `packageId`
1008
+ * @param contractAddress Contract address of this token formed with `packageId::module::symbol`
1009
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
1010
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES
1011
+ * @param prefix? Optional token prefix. Defaults to empty string
1012
+ * @param suffix? Optional token suffix. Defaults to token name.
1013
+ * @param network? Optional token network. Defaults to SUI test network.
1014
+ * @param primaryKeyCurve The elliptic curve for this chain/token
1015
+ */
1016
+ export declare function tsuiToken(id: string, name: string, fullName: string, decimalPlaces: number, packageId: string, module: string, symbol: string, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<SuiCoin>;
1017
+ /**
1018
+ * Factory function for apt token instances.
1019
+ *
1020
+ * @param id uuid v4
1021
+ * @param name unique identifier of the token
1022
+ * @param fullName Complete human-readable name of the token
1023
+ * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
1024
+ * @param assetId Asset Id of this token i.e. the unique identifier of the token for all tokens - fungible, non-fungible and legacy
1025
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
1026
+ * @param prefix Optional token prefix. Defaults to empty string
1027
+ * @param suffix Optional token suffix. Defaults to token name.
1028
+ * @param network Optional token network. Defaults to APT main network.
1029
+ * @param features Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
1030
+ * @param primaryKeyCurve The elliptic curve for this chain/token
1031
+ */
1032
+ export declare function aptToken(id: string, name: string, fullName: string, decimalPlaces: number, assetId: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<AptCoin>;
1033
+ /**
1034
+ * Factory function for testnet apt token instances.
1035
+ *
1036
+ * @param id uuid v4
1037
+ * @param name unique identifier of the token
1038
+ * @param fullName Complete human-readable name of the token
1039
+ * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
1040
+ * @param assetId Asset Id of this token i.e. the unique identifier of the token for all tokens - fungible, non-fungible and legacy
1041
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
1042
+ * @param prefix Optional token prefix. Defaults to empty string
1043
+ * @param suffix Optional token suffix. Defaults to token name.
1044
+ * @param network Optional token network. Defaults to the testnet APT network.
1045
+ * @param features Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
1046
+ * @param primaryKeyCurve The elliptic curve for this chain/token
1047
+ */
1048
+ export declare function taptToken(id: string, name: string, fullName: string, decimalPlaces: number, assetId: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<AptCoin>;
760
1049
  /**
761
1050
  * Factory function for fiat coin instances.
762
1051
  *
@@ -1 +1 @@
1
- {"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../src/account.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../src/account.ts"],"names":[],"mappings":"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"}