@bitgo-beta/statics 10.0.1-alpha.8 → 15.1.0

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 (42) hide show
  1. package/CHANGELOG.md +152 -0
  2. package/dist/src/account.d.ts +111 -63
  3. package/dist/src/account.d.ts.map +1 -1
  4. package/dist/src/account.js +167 -99
  5. package/dist/src/ada.d.ts +3 -1
  6. package/dist/src/ada.d.ts.map +1 -1
  7. package/dist/src/ada.js +5 -2
  8. package/dist/src/avaxp.d.ts +3 -1
  9. package/dist/src/avaxp.d.ts.map +1 -1
  10. package/dist/src/avaxp.js +9 -3
  11. package/dist/src/base.d.ts +57 -2
  12. package/dist/src/base.d.ts.map +1 -1
  13. package/dist/src/base.js +80 -3
  14. package/dist/src/coins.d.ts +1 -0
  15. package/dist/src/coins.d.ts.map +1 -1
  16. package/dist/src/coins.js +1368 -1229
  17. package/dist/src/constants.d.ts +2 -0
  18. package/dist/src/constants.d.ts.map +1 -0
  19. package/dist/src/constants.js +5 -0
  20. package/dist/src/errors.d.ts +6 -0
  21. package/dist/src/errors.d.ts.map +1 -1
  22. package/dist/src/errors.js +16 -2
  23. package/dist/src/index.d.ts +1 -1
  24. package/dist/src/index.d.ts.map +1 -1
  25. package/dist/src/index.js +3 -2
  26. package/dist/src/map.d.ts +1 -0
  27. package/dist/src/map.d.ts.map +1 -1
  28. package/dist/src/map.js +8 -3
  29. package/dist/src/networks.d.ts +14 -0
  30. package/dist/src/networks.d.ts.map +1 -1
  31. package/dist/src/networks.js +37 -19
  32. package/dist/src/ofc.d.ts +111 -4
  33. package/dist/src/ofc.d.ts.map +1 -1
  34. package/dist/src/ofc.js +225 -6
  35. package/dist/src/tokenConfig.d.ts +11 -0
  36. package/dist/src/tokenConfig.d.ts.map +1 -1
  37. package/dist/src/tokenConfig.js +23 -2
  38. package/dist/src/utxo.d.ts +3 -1
  39. package/dist/src/utxo.d.ts.map +1 -1
  40. package/dist/src/utxo.js +5 -2
  41. package/dist/tsconfig.tsbuildinfo +73 -46
  42. package/package.json +2 -2
@@ -1,6 +1,7 @@
1
1
  import { BaseCoin, BaseUnit, CoinFeature, KeyCurve, UnderlyingAsset } from './base';
2
2
  import { AccountNetwork, BaseNetwork, EthereumNetwork, TronNetwork } from './networks';
3
3
  export interface AccountConstructorOptions {
4
+ id: string;
4
5
  fullName: string;
5
6
  name: string;
6
7
  alias?: string;
@@ -54,6 +55,11 @@ export interface AdaCoinConstructorOptions extends AccountConstructorOptions {
54
55
  policyId: string;
55
56
  assetName: string;
56
57
  }
58
+ export interface XrpCoinConstructorOptions extends AccountConstructorOptions {
59
+ issuerAddress: string;
60
+ currencyCode: string;
61
+ domain: string;
62
+ }
57
63
  declare type FiatCoinName = `fiat${string}` | `tfiat${string}`;
58
64
  export interface FiatCoinConstructorOptions extends AccountConstructorOptions {
59
65
  name: FiatCoinName;
@@ -191,15 +197,6 @@ export declare class AdaCoin extends AccountCoinToken {
191
197
  assetName: string;
192
198
  constructor(options: AdaCoinConstructorOptions);
193
199
  }
194
- /**
195
- * The Trx network supports tokens
196
- * Trx tokens are identified by their smart contract address
197
- *
198
- */
199
- export declare class TrxCoin extends AccountCoinToken {
200
- contractAddress: string;
201
- constructor(options: Erc20ConstructorOptions);
202
- }
203
200
  /**
204
201
  * The AVAX C Chain network support tokens
205
202
  * AVAX C Chain Tokens are ERC20 coins
@@ -214,6 +211,18 @@ export declare class AvaxERC20Token extends ContractAddressDefinedToken {
214
211
  export declare class PolygonERC20Token extends ContractAddressDefinedToken {
215
212
  constructor(options: Erc20ConstructorOptions);
216
213
  }
214
+ /**
215
+ * The Xrp network supports tokens
216
+ * Xrp tokens are identified by their issuer address
217
+ * Naming format is similar to XLM
218
+ * <network>:<token>-<issuer>
219
+ */
220
+ export declare class XrpCoin extends AccountCoinToken {
221
+ issuerAddress: string;
222
+ currencyCode: string;
223
+ domain: string;
224
+ constructor(options: XrpCoinConstructorOptions);
225
+ }
217
226
  /**
218
227
  * Fiat currencies, such as USD, EUR, or YEN.
219
228
  */
@@ -227,6 +236,7 @@ export declare class FiatCoin extends BaseCoin {
227
236
  /**
228
237
  * Factory function for account coin instances.
229
238
  *
239
+ * @param id uuid v4
230
240
  * @param name unique identifier of the coin
231
241
  * @param fullName Complete human-readable name of the coin
232
242
  * @param network Network object for this coin
@@ -238,10 +248,11 @@ export declare class FiatCoin extends BaseCoin {
238
248
  * @param suffix? Optional coin suffix. Defaults to coin name.
239
249
  * @param isToken? Whether or not this account coin is a token of another coin
240
250
  */
241
- export declare function account(name: string, fullName: string, network: AccountNetwork, decimalPlaces: number, asset: UnderlyingAsset, baseUnit: BaseUnit, features?: CoinFeature[], primaryKeyCurve?: KeyCurve, prefix?: string, suffix?: string, isToken?: boolean): Readonly<AccountCoin>;
251
+ 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>;
242
252
  /**
243
253
  * Factory function for erc20 token instances.
244
254
  *
255
+ * @param id uuid v4
245
256
  * @param name unique identifier of the token
246
257
  * @param fullName Complete human-readable name of the token
247
258
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -253,10 +264,11 @@ export declare function account(name: string, fullName: string, network: Account
253
264
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
254
265
  * @param primaryKeyCurve The elliptic curve for this chain/token
255
266
  */
256
- export declare function erc20(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc20Coin>;
267
+ export declare function erc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc20Coin>;
257
268
  /**
258
269
  * Factory function for testnet erc20 token instances.
259
270
  *
271
+ * @param id uuid v4
260
272
  * @param name unique identifier of the token
261
273
  * @param fullName Complete human-readable name of the token
262
274
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -267,10 +279,11 @@ export declare function erc20(name: string, fullName: string, decimalPlaces: num
267
279
  * @param network? Optional token network. Defaults to the Kovan test network.
268
280
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
269
281
  */
270
- export declare function terc20(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork): Readonly<Erc20Coin>;
282
+ export declare function terc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork): Readonly<Erc20Coin>;
271
283
  /**
272
284
  * Factory function for erc721 token instances.
273
285
  *
286
+ * @param id uuid v4
274
287
  * @param name unique identifier of the token
275
288
  * @param fullName Complete human-readable name of the token
276
289
  * @param contractAddress Contract address of this token
@@ -281,10 +294,11 @@ export declare function terc20(name: string, fullName: string, decimalPlaces: nu
281
294
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
282
295
  * @param primaryKeyCurve The elliptic curve for this chain/token
283
296
  */
284
- export declare function erc721(name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc721Coin>;
297
+ export declare function erc721(id: string, name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc721Coin>;
285
298
  /**
286
299
  * Factory function for testnet erc721 token instances.
287
300
  *
301
+ * @param id uuid v4
288
302
  * @param name unique identifier of the token
289
303
  * @param fullName Complete human-readable name of the token
290
304
  * @param contractAddress Contract address of this token
@@ -294,10 +308,11 @@ export declare function erc721(name: string, fullName: string, contractAddress:
294
308
  * @param network? Optional token network. Defaults to Goerli test network.
295
309
  * @param primaryKeyCurve The elliptic curve for this chain/token
296
310
  */
297
- export declare function terc721(name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc721Coin>;
311
+ export declare function terc721(id: string, name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc721Coin>;
298
312
  /**
299
313
  * Factory function for nonstandard token instances.
300
314
  *
315
+ * @param id uuid v4
301
316
  * @param name unique identifier of the token
302
317
  * @param fullName Complete human-readable name of the token
303
318
  * @param contractAddress Contract address of this token
@@ -308,10 +323,11 @@ export declare function terc721(name: string, fullName: string, contractAddress:
308
323
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
309
324
  * @param primaryKeyCurve The elliptic curve for this chain/token
310
325
  */
311
- export declare function nonstandardToken(name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<ContractAddressDefinedToken>;
326
+ export declare function nonstandardToken(id: string, name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<ContractAddressDefinedToken>;
312
327
  /**
313
328
  * Factory function for erc1155 token instances.
314
329
  *
330
+ * @param id uuid v4
315
331
  * @param name unique identifier of the token
316
332
  * @param fullName Complete human-readable name of the token
317
333
  * @param contractAddress Contract address of this token
@@ -322,10 +338,11 @@ export declare function nonstandardToken(name: string, fullName: string, contrac
322
338
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
323
339
  * @param primaryKeyCurve The elliptic curve for this chain/token
324
340
  */
325
- export declare function erc1155(name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc1155Coin>;
341
+ export declare function erc1155(id: string, name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc1155Coin>;
326
342
  /**
327
343
  * Factory function for testnet erc1155 token instances.
328
344
  *
345
+ * @param id uuid v4
329
346
  * @param name unique identifier of the token
330
347
  * @param fullName Complete human-readable name of the token
331
348
  * @param contractAddress Contract address of this token
@@ -335,10 +352,11 @@ export declare function erc1155(name: string, fullName: string, contractAddress:
335
352
  * @param network? Optional token network. Defaults to Goerli test network.
336
353
  * @param primaryKeyCurve The elliptic curve for this chain/token
337
354
  */
338
- export declare function terc1155(name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc1155Coin>;
355
+ export declare function terc1155(id: string, name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc1155Coin>;
339
356
  /**
340
357
  * Factory function for ERC20-compatible account coin instances.
341
358
  *
359
+ * @param id uuid v4
342
360
  * @param name unique identifier of the token
343
361
  * @param fullName Complete human-readable name of the token
344
362
  * @param network Network object for this coin
@@ -350,10 +368,11 @@ export declare function terc1155(name: string, fullName: string, contractAddress
350
368
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
351
369
  * @param primaryKeyCurve The elliptic curve for this chain/token
352
370
  */
353
- export declare function erc20CompatibleAccountCoin(name: string, fullName: string, network: EthereumNetwork, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, baseUnit: BaseUnit, features?: CoinFeature[], prefix?: string, suffix?: string, primaryKeyCurve?: KeyCurve): Readonly<Erc20CompatibleAccountCoin>;
371
+ export declare function erc20CompatibleAccountCoin(id: string, name: string, fullName: string, network: EthereumNetwork, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, baseUnit: BaseUnit, features?: CoinFeature[], prefix?: string, suffix?: string, primaryKeyCurve?: KeyCurve): Readonly<Erc20CompatibleAccountCoin>;
354
372
  /**
355
373
  * Factory function for celo token instances.
356
374
  *
375
+ * @param id uuid v4
357
376
  * @param name unique identifier of the token
358
377
  * @param fullName Complete human-readable name of the token
359
378
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -365,10 +384,11 @@ export declare function erc20CompatibleAccountCoin(name: string, fullName: strin
365
384
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
366
385
  * @param primaryKeyCurve The elliptic curve for this chain/token
367
386
  */
368
- export declare function celoToken(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<CeloCoin>;
387
+ export declare function celoToken(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<CeloCoin>;
369
388
  /**
370
389
  * Factory function for testnet celo token instances.
371
390
  *
391
+ * @param id uuid v4
372
392
  * @param name unique identifier of the token
373
393
  * @param fullName Complete human-readable name of the token
374
394
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -379,10 +399,11 @@ export declare function celoToken(name: string, fullName: string, decimalPlaces:
379
399
  * @param network? Optional token network. Defaults to the testnet CELO network.
380
400
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
381
401
  */
382
- export declare function tceloToken(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork): Readonly<CeloCoin>;
402
+ export declare function tceloToken(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork): Readonly<CeloCoin>;
383
403
  /**
384
404
  * Factory function for celo token instances.
385
405
  *
406
+ * @param id uuid v4
386
407
  * @param name unique identifier of the token
387
408
  * @param fullName Complete human-readable name of the token
388
409
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -394,10 +415,11 @@ export declare function tceloToken(name: string, fullName: string, decimalPlaces
394
415
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
395
416
  * @param primaryKeyCurve The elliptic curve for this chain/token
396
417
  */
397
- export declare function bscToken(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<BscCoin>;
418
+ export declare function bscToken(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<BscCoin>;
398
419
  /**
399
420
  * Factory function for testnet bsc token instances.
400
421
  *
422
+ * @param id uuid v4
401
423
  * @param name unique identifier of the token
402
424
  * @param fullName Complete human-readable name of the token
403
425
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -408,10 +430,11 @@ export declare function bscToken(name: string, fullName: string, decimalPlaces:
408
430
  * @param network? Optional token network. Defaults to the testnet BSC network.
409
431
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
410
432
  */
411
- export declare function tbscToken(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork): Readonly<BscCoin>;
433
+ export declare function tbscToken(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork): Readonly<BscCoin>;
412
434
  /**
413
435
  * Factory function for Stellar token instances.
414
436
  *
437
+ * @param id uuid v4
415
438
  * @param name unique identifier of the token
416
439
  * @param fullName Complete human-readable name of the token
417
440
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -424,10 +447,11 @@ export declare function tbscToken(name: string, fullName: string, decimalPlaces:
424
447
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
425
448
  * @param primaryKeyCurve The elliptic curve for this chain/token
426
449
  */
427
- export declare function stellarToken(name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, domain?: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<StellarCoin>;
450
+ export declare function stellarToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, domain?: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<StellarCoin>;
428
451
  /**
429
452
  * Factory function for testnet Stellar token instances.
430
453
  *
454
+ * @param id uuid v4
431
455
  * @param name unique identifier of the token
432
456
  * @param fullName Complete human-readable name of the token
433
457
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -439,10 +463,11 @@ export declare function stellarToken(name: string, fullName: string, decimalPlac
439
463
  * @param network? Optional token network. Defaults to Stellar testnet.
440
464
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
441
465
  */
442
- export declare function tstellarToken(name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, domain?: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<StellarCoin>;
466
+ export declare function tstellarToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, domain?: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<StellarCoin>;
443
467
  /**
444
468
  * Factory function for tron token instances.
445
469
  *
470
+ * @param id uuid v4
446
471
  * @param name unique identifier of the token
447
472
  * @param fullName Complete human-readable name of the token
448
473
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -454,10 +479,11 @@ export declare function tstellarToken(name: string, fullName: string, decimalPla
454
479
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
455
480
  * @param primaryKeyCurve The elliptic curve for this chain/token
456
481
  */
457
- export declare function tronToken(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: TronNetwork, primaryKeyCurve?: KeyCurve): Readonly<TronErc20Coin>;
482
+ export declare function tronToken(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: TronNetwork, primaryKeyCurve?: KeyCurve): Readonly<TronErc20Coin>;
458
483
  /**
459
484
  * Factory function for testnet tron token instances.
460
485
  *
486
+ * @param id uuid v4
461
487
  * @param name unique identifier of the token
462
488
  * @param fullName Complete human-readable name of the token
463
489
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -469,10 +495,11 @@ export declare function tronToken(name: string, fullName: string, decimalPlaces:
469
495
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
470
496
  * @param primaryKeyCurve The elliptic curve for this chain/token
471
497
  */
472
- export declare function ttronToken(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: TronNetwork, primaryKeyCurve?: KeyCurve): Readonly<TronErc20Coin>;
498
+ export declare function ttronToken(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: TronNetwork, primaryKeyCurve?: KeyCurve): Readonly<TronErc20Coin>;
473
499
  /**
474
500
  * Factory function for Hedera coin instances
475
501
  *
502
+ * @param id uuid v4
476
503
  * @param name unique identifier of the coin
477
504
  * @param fullName Complete human-readable name of the token
478
505
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -484,10 +511,11 @@ export declare function ttronToken(name: string, fullName: string, decimalPlaces
484
511
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
485
512
  * @param primaryKeyCurve The elliptic curve for this chain/token
486
513
  */
487
- export declare function hederaCoin(name: string, fullName: string, network: AccountNetwork, decimalPlaces: number, asset: UnderlyingAsset, nodeAccountId?: string, features?: CoinFeature[], prefix?: string, suffix?: string, primaryKeyCurve?: KeyCurve): Readonly<HederaCoin>;
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>;
488
515
  /**
489
516
  * Factory function for Hedera token instances
490
517
  *
518
+ * @param id uuid v4
491
519
  * @param name unique identifier of the coin
492
520
  * @param fullName Complete human-readable name of the token
493
521
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -500,11 +528,13 @@ export declare function hederaCoin(name: string, fullName: string, network: Acco
500
528
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
501
529
  * @param primaryKeyCurve The elliptic curve for this chain/token
502
530
  */
503
- export declare function hederaToken(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>;
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>;
504
532
  /**
505
533
  * Factory function for ALGO token instances.
506
534
  *
535
+ * @param id uuid v4
507
536
  * @param name unique identifier of the token
537
+
508
538
  * @param alias (optional) alternative identifier of the token
509
539
  * @param fullName Complete human-readable name of the token
510
540
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -517,10 +547,11 @@ export declare function hederaToken(name: string, fullName: string, network: Acc
517
547
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
518
548
  * @param primaryKeyCurve The elliptic curve for this chain/token
519
549
  */
520
- export declare function algoToken(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>;
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>;
521
551
  /**
522
552
  * Factory function for testnet ALGO token instances.
523
553
  *
554
+ * @param id uuid v4
524
555
  * @param name unique identifier of the token
525
556
  * @param alias (optional) alternative identifier of the token
526
557
  * @param fullName Complete human-readable name of the token
@@ -533,10 +564,11 @@ export declare function algoToken(name: string, alias: string | undefined, fullN
533
564
  * @param network? Optional token network. Defaults to Algo testnet.
534
565
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
535
566
  */
536
- export declare function talgoToken(name: string, alias: string | undefined, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, tokenURL?: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<AlgoCoin>;
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>;
537
568
  /**
538
569
  * Factory function for eos token instances.
539
570
  *
571
+ * @param id uuid v4
540
572
  * @param name unique identifier of the token
541
573
  * @param fullName Complete human-readable name of the token
542
574
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -548,10 +580,11 @@ export declare function talgoToken(name: string, alias: string | undefined, full
548
580
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
549
581
  * @param primaryKeyCurve The elliptic curve for this chain/token
550
582
  */
551
- export declare function eosToken(name: string, fullName: string, decimalPlaces: number, contractName: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<EosCoin>;
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>;
552
584
  /**
553
585
  * Factory function for testnet eos token instances.
554
586
  *
587
+ * @param id uuid v4
555
588
  * @param name unique identifier of the token
556
589
  * @param fullName Complete human-readable name of the token
557
590
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -562,10 +595,11 @@ export declare function eosToken(name: string, fullName: string, decimalPlaces:
562
595
  * @param network? Optional token network. Defaults to the testnet EOS network.
563
596
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
564
597
  */
565
- export declare function teosToken(name: string, fullName: string, decimalPlaces: number, contractName: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<EosCoin>;
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>;
566
599
  /**
567
600
  * Factory function for sol token instances.
568
601
  *
602
+ * @param id uuid v4
569
603
  * @param name unique identifier of the token
570
604
  * @param fullName Complete human-readable name of the token
571
605
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -577,10 +611,11 @@ export declare function teosToken(name: string, fullName: string, decimalPlaces:
577
611
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
578
612
  * @param primaryKeyCurve The elliptic curve for this chain/token
579
613
  */
580
- export declare function solToken(name: string, fullName: string, decimalPlaces: number, tokenAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<SolCoin>;
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>;
581
615
  /**
582
616
  * Factory function for testnet solana token instances.
583
617
  *
618
+ * @param id uuid v4
584
619
  * @param name unique identifier of the token
585
620
  * @param fullName Complete human-readable name of the token
586
621
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -591,10 +626,11 @@ export declare function solToken(name: string, fullName: string, decimalPlaces:
591
626
  * @param network? Optional token network. Defaults to the testnet Solana network.
592
627
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
593
628
  */
594
- export declare function tsolToken(name: string, fullName: string, decimalPlaces: number, tokenAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<SolCoin>;
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>;
595
630
  /**
596
631
  * Factory function for ada token instances.
597
632
  *
633
+ * @param id uuid v4
598
634
  * @param name unique identifier of the token
599
635
  * @param fullName Complete human-readable name of the token
600
636
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -606,10 +642,11 @@ export declare function tsolToken(name: string, fullName: string, decimalPlaces:
606
642
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
607
643
  * @param primaryKeyCurve The elliptic curve for this chain/token
608
644
  */
609
- export declare function adaToken(name: string, fullName: string, decimalPlaces: number, policyId: string, assetName: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<AdaCoin>;
645
+ export declare function adaToken(id: string, name: string, fullName: string, decimalPlaces: number, policyId: string, assetName: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<AdaCoin>;
610
646
  /**
611
647
  * Factory function for testnet cardano token instances.
612
648
  *
649
+ * @param id uuid v4
613
650
  * @param name unique identifier of the token
614
651
  * @param fullName Complete human-readable name of the token
615
652
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -620,39 +657,43 @@ export declare function adaToken(name: string, fullName: string, decimalPlaces:
620
657
  * @param network? Optional token network. Defaults to the testnet Cardano network.
621
658
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
622
659
  */
623
- export declare function tadaToken(name: string, fullName: string, decimalPlaces: number, policyId: string, assetName: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<AdaCoin>;
660
+ export declare function tadaToken(id: string, name: string, fullName: string, decimalPlaces: number, policyId: string, assetName: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<AdaCoin>;
624
661
  /**
625
- * Factory function for trx token instances.
662
+ * Factory function for avaxErc20 token instances.
626
663
  *
664
+ * @param id uuid v4
627
665
  * @param name unique identifier of the token
628
666
  * @param fullName Complete human-readable name of the token
629
667
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
630
- * @param contractAddress smart contract address of the token
668
+ * @param contractAddress Contract address of this token
631
669
  * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
632
670
  * @param prefix? Optional token prefix. Defaults to empty string
633
671
  * @param suffix? Optional token suffix. Defaults to token name.
634
- * @param network? Optional token network. Defaults to Cardano main network.
635
- * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
672
+ * @param network? Optional token network. Defaults to AvalancheC main network.
673
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
636
674
  * @param primaryKeyCurve The elliptic curve for this chain/token
637
675
  */
638
- export declare function trxToken(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<TrxCoin>;
676
+ export declare function avaxErc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<AvaxERC20Token>;
639
677
  /**
640
- * Factory function for testnet trx token instances.
678
+ * Factory function for testnet avaxErc20 token instances.
641
679
  *
680
+ * @param id uuid v4
642
681
  * @param name unique identifier of the token
643
682
  * @param fullName Complete human-readable name of the token
644
683
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
645
- * @param contractAddress smart contract address of the token
684
+ * @param contractAddress Contract address of this token
646
685
  * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
647
686
  * @param prefix? Optional token prefix. Defaults to empty string
648
687
  * @param suffix? Optional token suffix. Defaults to token name.
649
- * @param network? Optional token network. Defaults to the testnet Cardano network.
650
- * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
688
+ * @param network? Optional token network. Defaults to the AvalancheC test network.
689
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
690
+ * @param primaryKeyCurve The elliptic curve for this chain/token
651
691
  */
652
- export declare function ttrxToken(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<TrxCoin>;
692
+ export declare function tavaxErc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<AvaxERC20Token>;
653
693
  /**
654
- * Factory function for avaxErc20 token instances.
694
+ * Factory function for polygonErc20 token instances.
655
695
  *
696
+ * @param id uuid v4
656
697
  * @param name unique identifier of the token
657
698
  * @param fullName Complete human-readable name of the token
658
699
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -660,14 +701,15 @@ export declare function ttrxToken(name: string, fullName: string, decimalPlaces:
660
701
  * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
661
702
  * @param prefix? Optional token prefix. Defaults to empty string
662
703
  * @param suffix? Optional token suffix. Defaults to token name.
663
- * @param network? Optional token network. Defaults to AvalancheC main network.
704
+ * @param network? Optional token network. Defaults to Polygon main network.
664
705
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
665
706
  * @param primaryKeyCurve The elliptic curve for this chain/token
666
707
  */
667
- export declare function avaxErc20(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<AvaxERC20Token>;
708
+ 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>;
668
709
  /**
669
- * Factory function for testnet avaxErc20 token instances.
710
+ * Factory function for Mumbai testnet polygonErc20 token instances.
670
711
  *
712
+ * @param id uuid v4
671
713
  * @param name unique identifier of the token
672
714
  * @param fullName Complete human-readable name of the token
673
715
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -675,45 +717,51 @@ export declare function avaxErc20(name: string, fullName: string, decimalPlaces:
675
717
  * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
676
718
  * @param prefix? Optional token prefix. Defaults to empty string
677
719
  * @param suffix? Optional token suffix. Defaults to token name.
678
- * @param network? Optional token network. Defaults to the AvalancheC test network.
720
+ * @param network? Optional token network. Defaults to the Polygon test network.
679
721
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
680
722
  * @param primaryKeyCurve The elliptic curve for this chain/token
681
723
  */
682
- export declare function tavaxErc20(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<AvaxERC20Token>;
724
+ 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>;
683
725
  /**
684
- * Factory function for polygonErc20 token instances.
726
+ * Factory function for xrp token instances.
685
727
  *
728
+ * @param id uuid v4
686
729
  * @param name unique identifier of the token
687
730
  * @param fullName Complete human-readable name of the token
688
731
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
689
- * @param contractAddress Contract address of this token
732
+ * @param issuerAddress: The address of the issuer of the token,
733
+ * @param currencyCode The token symbol. Example: USD, BTC, ETH, etc.
734
+ * @param domain? the domain of the issuer of the token,
690
735
  * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
691
736
  * @param prefix? Optional token prefix. Defaults to empty string
692
737
  * @param suffix? Optional token suffix. Defaults to token name.
693
- * @param network? Optional token network. Defaults to Polygon main network.
738
+ * @param network? Optional token network. Defaults to Cardano main network.
694
739
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
695
740
  * @param primaryKeyCurve The elliptic curve for this chain/token
696
741
  */
697
- export declare function polygonErc20(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<PolygonERC20Token>;
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>;
698
743
  /**
699
- * Factory function for Mumbai testnet polygonErc20 token instances.
744
+ * Factory function for testnet cardano token instances.
700
745
  *
746
+ * @param id uuid v4
701
747
  * @param name unique identifier of the token
702
748
  * @param fullName Complete human-readable name of the token
703
749
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
704
- * @param contractAddress Contract address of this token
750
+ * @param issuerAddress: The address of the issuer of the token,
751
+ * @param currencyCode The token symbol. Example: USD, BTC, ETH, etc.
752
+ * @param domain? the domain of the issuer of the token,
705
753
  * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
706
754
  * @param prefix? Optional token prefix. Defaults to empty string
707
755
  * @param suffix? Optional token suffix. Defaults to token name.
708
- * @param network? Optional token network. Defaults to the Polygon test network.
756
+ * @param network? Optional token network. Defaults to the testnet Cardano network.
709
757
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
710
- * @param primaryKeyCurve The elliptic curve for this chain/token
711
758
  */
712
- export declare function tpolygonErc20(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<PolygonERC20Token>;
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>;
713
760
  /**
714
761
  * Factory function for fiat coin instances.
715
762
  *
716
- * @param name unique identifier of the coin, should start with 'fiat' or 'tfiat'
763
+ * @param id uuid v4
764
+ * @param name unique identifier of the coin, should start with 'fiat' or 'tfiat' followed by the 3-char ISO-4217 alphabetical code
717
765
  * @param fullName Complete human-readable name of the coin
718
766
  * @param network Network object for this coin
719
767
  * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
@@ -724,6 +772,6 @@ export declare function tpolygonErc20(name: string, fullName: string, decimalPla
724
772
  * @param suffix? Optional coin suffix. Defaults to coin name.
725
773
  * @param isToken? Whether or not this coin is a token of another coin
726
774
  */
727
- export declare function fiat(name: FiatCoinName, fullName: string, network: BaseNetwork, decimalPlaces: number, asset: UnderlyingAsset, features?: CoinFeature[], primaryKeyCurve?: KeyCurve, prefix?: string, suffix?: string, isToken?: boolean): Readonly<FiatCoin>;
775
+ export declare function fiat(id: string, name: FiatCoinName, fullName: string, network: BaseNetwork, decimalPlaces: number, asset: UnderlyingAsset, features?: CoinFeature[], primaryKeyCurve?: KeyCurve, prefix?: string, suffix?: string, isToken?: boolean): Readonly<FiatCoin>;
728
776
  export {};
729
777
  //# sourceMappingURL=account.d.ts.map
@@ -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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"}