@bitgo-beta/statics 10.0.1-alpha.21 → 10.0.1-alpha.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,29 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [14.4.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@14.3.0...@bitgo/statics@14.4.0) (2023-02-17)
7
+
8
+ ### Features
9
+
10
+ - **statics:** add ofc erc20 tokens ([d05e69f](https://github.com/BitGo/BitGoJS/commit/d05e69fb6d47dc629286b2815ecd9435e3854db0))
11
+ - **statics:** enable getting asset by id ([b96fbaf](https://github.com/BitGo/BitGoJS/commit/b96fbaf36f676400ed2ec2fa66d2a3931aabdf42))
12
+
13
+ # [14.3.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@14.0.0...@bitgo/statics@14.3.0) (2023-02-16)
14
+
15
+ ### Features
16
+
17
+ - **statics:** add a unique id to every asset ([f96e4d3](https://github.com/BitGo/BitGoJS/commit/f96e4d3bb5515ca52a78387c5c75811abd39c802))
18
+ - **statics:** add custody coin features for avaxc ([d67a9d9](https://github.com/BitGo/BitGoJS/commit/d67a9d932f30d48853ad7e4c20388b60ae269529))
19
+ - **statics:** add ofc algorand usdc token ([9450360](https://github.com/BitGo/BitGoJS/commit/9450360e828253ee633acaae8cc0ec57d386a7dc))
20
+ - **statics:** add ofc hedera usdc token ([67f1c5d](https://github.com/BitGo/BitGoJS/commit/67f1c5da5b92f228e02451071bacdcbe482c06fd))
21
+
22
+ # [14.2.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@14.0.0...@bitgo/statics@14.2.0) (2023-02-08)
23
+
24
+ ### Features
25
+
26
+ - **statics:** add custody coin features for avaxc ([d67a9d9](https://github.com/BitGo/BitGoJS/commit/d67a9d932f30d48853ad7e4c20388b60ae269529))
27
+ - **statics:** add ofc algorand usdc token ([9450360](https://github.com/BitGo/BitGoJS/commit/9450360e828253ee633acaae8cc0ec57d386a7dc))
28
+
6
29
  # [14.1.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@14.0.0...@bitgo/statics@14.1.0) (2023-01-30)
7
30
 
8
31
  ### Features
@@ -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;
@@ -218,6 +219,7 @@ export declare class FiatCoin extends BaseCoin {
218
219
  /**
219
220
  * Factory function for account coin instances.
220
221
  *
222
+ * @param id uuid v4
221
223
  * @param name unique identifier of the coin
222
224
  * @param fullName Complete human-readable name of the coin
223
225
  * @param network Network object for this coin
@@ -229,10 +231,11 @@ export declare class FiatCoin extends BaseCoin {
229
231
  * @param suffix? Optional coin suffix. Defaults to coin name.
230
232
  * @param isToken? Whether or not this account coin is a token of another coin
231
233
  */
232
- 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>;
234
+ 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>;
233
235
  /**
234
236
  * Factory function for erc20 token instances.
235
237
  *
238
+ * @param id uuid v4
236
239
  * @param name unique identifier of the token
237
240
  * @param fullName Complete human-readable name of the token
238
241
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -244,10 +247,11 @@ export declare function account(name: string, fullName: string, network: Account
244
247
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
245
248
  * @param primaryKeyCurve The elliptic curve for this chain/token
246
249
  */
247
- 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>;
250
+ 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>;
248
251
  /**
249
252
  * Factory function for testnet erc20 token instances.
250
253
  *
254
+ * @param id uuid v4
251
255
  * @param name unique identifier of the token
252
256
  * @param fullName Complete human-readable name of the token
253
257
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -258,10 +262,11 @@ export declare function erc20(name: string, fullName: string, decimalPlaces: num
258
262
  * @param network? Optional token network. Defaults to the Kovan test network.
259
263
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
260
264
  */
261
- export declare function terc20(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork): Readonly<Erc20Coin>;
265
+ 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>;
262
266
  /**
263
267
  * Factory function for erc721 token instances.
264
268
  *
269
+ * @param id uuid v4
265
270
  * @param name unique identifier of the token
266
271
  * @param fullName Complete human-readable name of the token
267
272
  * @param contractAddress Contract address of this token
@@ -272,10 +277,11 @@ export declare function terc20(name: string, fullName: string, decimalPlaces: nu
272
277
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
273
278
  * @param primaryKeyCurve The elliptic curve for this chain/token
274
279
  */
275
- export declare function erc721(name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc721Coin>;
280
+ export declare function erc721(id: string, name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc721Coin>;
276
281
  /**
277
282
  * Factory function for testnet erc721 token instances.
278
283
  *
284
+ * @param id uuid v4
279
285
  * @param name unique identifier of the token
280
286
  * @param fullName Complete human-readable name of the token
281
287
  * @param contractAddress Contract address of this token
@@ -285,10 +291,11 @@ export declare function erc721(name: string, fullName: string, contractAddress:
285
291
  * @param network? Optional token network. Defaults to Goerli test network.
286
292
  * @param primaryKeyCurve The elliptic curve for this chain/token
287
293
  */
288
- export declare function terc721(name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc721Coin>;
294
+ export declare function terc721(id: string, name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc721Coin>;
289
295
  /**
290
296
  * Factory function for nonstandard token instances.
291
297
  *
298
+ * @param id uuid v4
292
299
  * @param name unique identifier of the token
293
300
  * @param fullName Complete human-readable name of the token
294
301
  * @param contractAddress Contract address of this token
@@ -299,10 +306,11 @@ export declare function terc721(name: string, fullName: string, contractAddress:
299
306
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
300
307
  * @param primaryKeyCurve The elliptic curve for this chain/token
301
308
  */
302
- export declare function nonstandardToken(name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<ContractAddressDefinedToken>;
309
+ export declare function nonstandardToken(id: string, name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<ContractAddressDefinedToken>;
303
310
  /**
304
311
  * Factory function for erc1155 token instances.
305
312
  *
313
+ * @param id uuid v4
306
314
  * @param name unique identifier of the token
307
315
  * @param fullName Complete human-readable name of the token
308
316
  * @param contractAddress Contract address of this token
@@ -313,10 +321,11 @@ export declare function nonstandardToken(name: string, fullName: string, contrac
313
321
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
314
322
  * @param primaryKeyCurve The elliptic curve for this chain/token
315
323
  */
316
- export declare function erc1155(name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc1155Coin>;
324
+ export declare function erc1155(id: string, name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc1155Coin>;
317
325
  /**
318
326
  * Factory function for testnet erc1155 token instances.
319
327
  *
328
+ * @param id uuid v4
320
329
  * @param name unique identifier of the token
321
330
  * @param fullName Complete human-readable name of the token
322
331
  * @param contractAddress Contract address of this token
@@ -326,10 +335,11 @@ export declare function erc1155(name: string, fullName: string, contractAddress:
326
335
  * @param network? Optional token network. Defaults to Goerli test network.
327
336
  * @param primaryKeyCurve The elliptic curve for this chain/token
328
337
  */
329
- export declare function terc1155(name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc1155Coin>;
338
+ export declare function terc1155(id: string, name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc1155Coin>;
330
339
  /**
331
340
  * Factory function for ERC20-compatible account coin instances.
332
341
  *
342
+ * @param id uuid v4
333
343
  * @param name unique identifier of the token
334
344
  * @param fullName Complete human-readable name of the token
335
345
  * @param network Network object for this coin
@@ -341,10 +351,11 @@ export declare function terc1155(name: string, fullName: string, contractAddress
341
351
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
342
352
  * @param primaryKeyCurve The elliptic curve for this chain/token
343
353
  */
344
- 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>;
354
+ 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>;
345
355
  /**
346
356
  * Factory function for celo token instances.
347
357
  *
358
+ * @param id uuid v4
348
359
  * @param name unique identifier of the token
349
360
  * @param fullName Complete human-readable name of the token
350
361
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -356,10 +367,11 @@ export declare function erc20CompatibleAccountCoin(name: string, fullName: strin
356
367
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
357
368
  * @param primaryKeyCurve The elliptic curve for this chain/token
358
369
  */
359
- 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>;
370
+ 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>;
360
371
  /**
361
372
  * Factory function for testnet celo token instances.
362
373
  *
374
+ * @param id uuid v4
363
375
  * @param name unique identifier of the token
364
376
  * @param fullName Complete human-readable name of the token
365
377
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -370,10 +382,11 @@ export declare function celoToken(name: string, fullName: string, decimalPlaces:
370
382
  * @param network? Optional token network. Defaults to the testnet CELO network.
371
383
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
372
384
  */
373
- export declare function tceloToken(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork): Readonly<CeloCoin>;
385
+ 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>;
374
386
  /**
375
387
  * Factory function for celo token instances.
376
388
  *
389
+ * @param id uuid v4
377
390
  * @param name unique identifier of the token
378
391
  * @param fullName Complete human-readable name of the token
379
392
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -385,10 +398,11 @@ export declare function tceloToken(name: string, fullName: string, decimalPlaces
385
398
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
386
399
  * @param primaryKeyCurve The elliptic curve for this chain/token
387
400
  */
388
- 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>;
401
+ 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>;
389
402
  /**
390
403
  * Factory function for testnet bsc token instances.
391
404
  *
405
+ * @param id uuid v4
392
406
  * @param name unique identifier of the token
393
407
  * @param fullName Complete human-readable name of the token
394
408
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -399,10 +413,11 @@ export declare function bscToken(name: string, fullName: string, decimalPlaces:
399
413
  * @param network? Optional token network. Defaults to the testnet BSC network.
400
414
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
401
415
  */
402
- export declare function tbscToken(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork): Readonly<BscCoin>;
416
+ 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>;
403
417
  /**
404
418
  * Factory function for Stellar token instances.
405
419
  *
420
+ * @param id uuid v4
406
421
  * @param name unique identifier of the token
407
422
  * @param fullName Complete human-readable name of the token
408
423
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -415,10 +430,11 @@ export declare function tbscToken(name: string, fullName: string, decimalPlaces:
415
430
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
416
431
  * @param primaryKeyCurve The elliptic curve for this chain/token
417
432
  */
418
- 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>;
433
+ 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>;
419
434
  /**
420
435
  * Factory function for testnet Stellar token instances.
421
436
  *
437
+ * @param id uuid v4
422
438
  * @param name unique identifier of the token
423
439
  * @param fullName Complete human-readable name of the token
424
440
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -430,10 +446,11 @@ export declare function stellarToken(name: string, fullName: string, decimalPlac
430
446
  * @param network? Optional token network. Defaults to Stellar testnet.
431
447
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
432
448
  */
433
- export declare function tstellarToken(name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, domain?: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<StellarCoin>;
449
+ 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>;
434
450
  /**
435
451
  * Factory function for tron token instances.
436
452
  *
453
+ * @param id uuid v4
437
454
  * @param name unique identifier of the token
438
455
  * @param fullName Complete human-readable name of the token
439
456
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -445,10 +462,11 @@ export declare function tstellarToken(name: string, fullName: string, decimalPla
445
462
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
446
463
  * @param primaryKeyCurve The elliptic curve for this chain/token
447
464
  */
448
- 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>;
465
+ 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>;
449
466
  /**
450
467
  * Factory function for testnet tron token instances.
451
468
  *
469
+ * @param id uuid v4
452
470
  * @param name unique identifier of the token
453
471
  * @param fullName Complete human-readable name of the token
454
472
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -460,10 +478,11 @@ export declare function tronToken(name: string, fullName: string, decimalPlaces:
460
478
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
461
479
  * @param primaryKeyCurve The elliptic curve for this chain/token
462
480
  */
463
- 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>;
481
+ 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>;
464
482
  /**
465
483
  * Factory function for Hedera coin instances
466
484
  *
485
+ * @param id uuid v4
467
486
  * @param name unique identifier of the coin
468
487
  * @param fullName Complete human-readable name of the token
469
488
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -475,10 +494,11 @@ export declare function ttronToken(name: string, fullName: string, decimalPlaces
475
494
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
476
495
  * @param primaryKeyCurve The elliptic curve for this chain/token
477
496
  */
478
- 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>;
497
+ 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>;
479
498
  /**
480
499
  * Factory function for Hedera token instances
481
500
  *
501
+ * @param id uuid v4
482
502
  * @param name unique identifier of the coin
483
503
  * @param fullName Complete human-readable name of the token
484
504
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -491,11 +511,13 @@ export declare function hederaCoin(name: string, fullName: string, network: Acco
491
511
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
492
512
  * @param primaryKeyCurve The elliptic curve for this chain/token
493
513
  */
494
- 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>;
514
+ 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>;
495
515
  /**
496
516
  * Factory function for ALGO token instances.
497
517
  *
518
+ * @param id uuid v4
498
519
  * @param name unique identifier of the token
520
+
499
521
  * @param alias (optional) alternative identifier of the token
500
522
  * @param fullName Complete human-readable name of the token
501
523
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -508,10 +530,11 @@ export declare function hederaToken(name: string, fullName: string, network: Acc
508
530
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
509
531
  * @param primaryKeyCurve The elliptic curve for this chain/token
510
532
  */
511
- 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>;
533
+ 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>;
512
534
  /**
513
535
  * Factory function for testnet ALGO token instances.
514
536
  *
537
+ * @param id uuid v4
515
538
  * @param name unique identifier of the token
516
539
  * @param alias (optional) alternative identifier of the token
517
540
  * @param fullName Complete human-readable name of the token
@@ -524,10 +547,11 @@ export declare function algoToken(name: string, alias: string | undefined, fullN
524
547
  * @param network? Optional token network. Defaults to Algo testnet.
525
548
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
526
549
  */
527
- 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>;
550
+ 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>;
528
551
  /**
529
552
  * Factory function for eos token instances.
530
553
  *
554
+ * @param id uuid v4
531
555
  * @param name unique identifier of the token
532
556
  * @param fullName Complete human-readable name of the token
533
557
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -539,10 +563,11 @@ export declare function talgoToken(name: string, alias: string | undefined, full
539
563
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
540
564
  * @param primaryKeyCurve The elliptic curve for this chain/token
541
565
  */
542
- 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>;
566
+ 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>;
543
567
  /**
544
568
  * Factory function for testnet eos token instances.
545
569
  *
570
+ * @param id uuid v4
546
571
  * @param name unique identifier of the token
547
572
  * @param fullName Complete human-readable name of the token
548
573
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -553,10 +578,11 @@ export declare function eosToken(name: string, fullName: string, decimalPlaces:
553
578
  * @param network? Optional token network. Defaults to the testnet EOS network.
554
579
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
555
580
  */
556
- export declare function teosToken(name: string, fullName: string, decimalPlaces: number, contractName: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<EosCoin>;
581
+ 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>;
557
582
  /**
558
583
  * Factory function for sol token instances.
559
584
  *
585
+ * @param id uuid v4
560
586
  * @param name unique identifier of the token
561
587
  * @param fullName Complete human-readable name of the token
562
588
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -568,10 +594,11 @@ export declare function teosToken(name: string, fullName: string, decimalPlaces:
568
594
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
569
595
  * @param primaryKeyCurve The elliptic curve for this chain/token
570
596
  */
571
- 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>;
597
+ 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>;
572
598
  /**
573
599
  * Factory function for testnet solana token instances.
574
600
  *
601
+ * @param id uuid v4
575
602
  * @param name unique identifier of the token
576
603
  * @param fullName Complete human-readable name of the token
577
604
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -582,10 +609,11 @@ export declare function solToken(name: string, fullName: string, decimalPlaces:
582
609
  * @param network? Optional token network. Defaults to the testnet Solana network.
583
610
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
584
611
  */
585
- export declare function tsolToken(name: string, fullName: string, decimalPlaces: number, tokenAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<SolCoin>;
612
+ 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>;
586
613
  /**
587
614
  * Factory function for ada token instances.
588
615
  *
616
+ * @param id uuid v4
589
617
  * @param name unique identifier of the token
590
618
  * @param fullName Complete human-readable name of the token
591
619
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -597,10 +625,11 @@ export declare function tsolToken(name: string, fullName: string, decimalPlaces:
597
625
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
598
626
  * @param primaryKeyCurve The elliptic curve for this chain/token
599
627
  */
600
- 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>;
628
+ 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>;
601
629
  /**
602
630
  * Factory function for testnet cardano token instances.
603
631
  *
632
+ * @param id uuid v4
604
633
  * @param name unique identifier of the token
605
634
  * @param fullName Complete human-readable name of the token
606
635
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -611,10 +640,11 @@ export declare function adaToken(name: string, fullName: string, decimalPlaces:
611
640
  * @param network? Optional token network. Defaults to the testnet Cardano network.
612
641
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
613
642
  */
614
- 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>;
643
+ 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>;
615
644
  /**
616
645
  * Factory function for avaxErc20 token instances.
617
646
  *
647
+ * @param id uuid v4
618
648
  * @param name unique identifier of the token
619
649
  * @param fullName Complete human-readable name of the token
620
650
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -626,10 +656,11 @@ export declare function tadaToken(name: string, fullName: string, decimalPlaces:
626
656
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
627
657
  * @param primaryKeyCurve The elliptic curve for this chain/token
628
658
  */
629
- 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>;
659
+ 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>;
630
660
  /**
631
661
  * Factory function for testnet avaxErc20 token instances.
632
662
  *
663
+ * @param id uuid v4
633
664
  * @param name unique identifier of the token
634
665
  * @param fullName Complete human-readable name of the token
635
666
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -641,10 +672,11 @@ export declare function avaxErc20(name: string, fullName: string, decimalPlaces:
641
672
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
642
673
  * @param primaryKeyCurve The elliptic curve for this chain/token
643
674
  */
644
- 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>;
675
+ 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>;
645
676
  /**
646
677
  * Factory function for polygonErc20 token instances.
647
678
  *
679
+ * @param id uuid v4
648
680
  * @param name unique identifier of the token
649
681
  * @param fullName Complete human-readable name of the token
650
682
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -656,10 +688,11 @@ export declare function tavaxErc20(name: string, fullName: string, decimalPlaces
656
688
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
657
689
  * @param primaryKeyCurve The elliptic curve for this chain/token
658
690
  */
659
- 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>;
691
+ 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>;
660
692
  /**
661
693
  * Factory function for Mumbai testnet polygonErc20 token instances.
662
694
  *
695
+ * @param id uuid v4
663
696
  * @param name unique identifier of the token
664
697
  * @param fullName Complete human-readable name of the token
665
698
  * @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
@@ -671,10 +704,11 @@ export declare function polygonErc20(name: string, fullName: string, decimalPlac
671
704
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
672
705
  * @param primaryKeyCurve The elliptic curve for this chain/token
673
706
  */
674
- 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>;
707
+ 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>;
675
708
  /**
676
709
  * Factory function for fiat coin instances.
677
710
  *
711
+ * @param id uuid v4
678
712
  * @param name unique identifier of the coin, should start with 'fiat' or 'tfiat' followed by the 3-char ISO-4217 alphabetical code
679
713
  * @param fullName Complete human-readable name of the coin
680
714
  * @param network Network object for this coin
@@ -686,6 +720,6 @@ export declare function tpolygonErc20(name: string, fullName: string, decimalPla
686
720
  * @param suffix? Optional coin suffix. Defaults to coin name.
687
721
  * @param isToken? Whether or not this coin is a token of another coin
688
722
  */
689
- 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>;
723
+ 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>;
690
724
  export {};
691
725
  //# 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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"}