@bitgo-beta/statics 15.1.1-beta.97 → 15.1.1-beta.970

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 (77) hide show
  1. package/.mocharc.js +1 -1
  2. package/CHANGELOG.md +2896 -0
  3. package/dist/src/account.d.ts +583 -31
  4. package/dist/src/account.d.ts.map +1 -1
  5. package/dist/src/account.js +960 -127
  6. package/dist/src/ada.d.ts.map +1 -1
  7. package/dist/src/ada.js +6 -3
  8. package/dist/src/avaxp.d.ts.map +1 -1
  9. package/dist/src/avaxp.js +7 -3
  10. package/dist/src/base.d.ts +1481 -40
  11. package/dist/src/base.d.ts.map +1 -1
  12. package/dist/src/base.js +1539 -50
  13. package/dist/src/coinFeatures.d.ts +87 -0
  14. package/dist/src/coinFeatures.d.ts.map +1 -0
  15. package/dist/src/coinFeatures.js +557 -0
  16. package/dist/src/coins/avaxTokens.d.ts +2 -0
  17. package/dist/src/coins/avaxTokens.d.ts.map +1 -0
  18. package/dist/src/coins/avaxTokens.js +97 -0
  19. package/dist/src/coins/bscTokens.d.ts +2 -0
  20. package/dist/src/coins/bscTokens.d.ts.map +1 -0
  21. package/dist/src/coins/bscTokens.js +155 -0
  22. package/dist/src/coins/erc20Coins.d.ts +2 -0
  23. package/dist/src/coins/erc20Coins.d.ts.map +1 -0
  24. package/dist/src/coins/erc20Coins.js +1430 -0
  25. package/dist/src/coins/nep141Tokens.d.ts +2 -0
  26. package/dist/src/coins/nep141Tokens.d.ts.map +1 -0
  27. package/dist/src/coins/nep141Tokens.js +14 -0
  28. package/dist/src/coins/ofcCoins.d.ts +2 -0
  29. package/dist/src/coins/ofcCoins.d.ts.map +1 -0
  30. package/dist/src/coins/ofcCoins.js +560 -0
  31. package/dist/src/coins/ofcErc20Coins.d.ts +3 -0
  32. package/dist/src/coins/ofcErc20Coins.d.ts.map +1 -0
  33. package/dist/src/coins/ofcErc20Coins.js +1331 -0
  34. package/dist/src/coins/polygonTokens.d.ts +2 -0
  35. package/dist/src/coins/polygonTokens.d.ts.map +1 -0
  36. package/dist/src/coins/polygonTokens.js +147 -0
  37. package/dist/src/coins/sip10Tokens.d.ts +2 -0
  38. package/dist/src/coins/sip10Tokens.d.ts.map +1 -0
  39. package/dist/src/coins/sip10Tokens.js +25 -0
  40. package/dist/src/coins/solTokens.d.ts +2 -0
  41. package/dist/src/coins/solTokens.d.ts.map +1 -0
  42. package/dist/src/coins/solTokens.js +358 -0
  43. package/dist/src/coins/vetTokens.d.ts +2 -0
  44. package/dist/src/coins/vetTokens.d.ts.map +1 -0
  45. package/dist/src/coins/vetTokens.js +11 -0
  46. package/dist/src/coins.d.ts +10 -1
  47. package/dist/src/coins.d.ts.map +1 -1
  48. package/dist/src/coins.js +675 -1511
  49. package/dist/src/constants.d.ts +1 -0
  50. package/dist/src/constants.d.ts.map +1 -1
  51. package/dist/src/constants.js +3 -2
  52. package/dist/src/index.d.ts +3 -1
  53. package/dist/src/index.d.ts.map +1 -1
  54. package/dist/src/index.js +20 -3
  55. package/dist/src/lightning.d.ts +43 -0
  56. package/dist/src/lightning.d.ts.map +1 -0
  57. package/dist/src/lightning.js +60 -0
  58. package/dist/src/map.d.ts +4 -0
  59. package/dist/src/map.d.ts.map +1 -1
  60. package/dist/src/map.js +95 -19
  61. package/dist/src/networkFeatureMapForTokens.d.ts +3 -0
  62. package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
  63. package/dist/src/networkFeatureMapForTokens.js +29 -0
  64. package/dist/src/networks.d.ts +704 -1
  65. package/dist/src/networks.d.ts.map +1 -1
  66. package/dist/src/networks.js +932 -42
  67. package/dist/src/ofc.d.ts +349 -0
  68. package/dist/src/ofc.d.ts.map +1 -1
  69. package/dist/src/ofc.js +724 -14
  70. package/dist/src/tokenConfig.d.ts +168 -14
  71. package/dist/src/tokenConfig.d.ts.map +1 -1
  72. package/dist/src/tokenConfig.js +659 -238
  73. package/dist/src/utxo.d.ts +3 -1
  74. package/dist/src/utxo.d.ts.map +1 -1
  75. package/dist/src/utxo.js +82 -3
  76. package/dist/tsconfig.tsbuildinfo +1 -1
  77. package/package.json +2 -2
package/dist/src/ofc.d.ts CHANGED
@@ -22,10 +22,30 @@ export interface OfcConstructorOptions {
22
22
  export declare class OfcCoin extends BaseCoin {
23
23
  static readonly DEFAULT_FEATURES: CoinFeature[];
24
24
  readonly addressCoin?: string;
25
+ readonly minimumDenomination: number;
25
26
  constructor(options: OfcConstructorOptions);
26
27
  protected requiredFeatures(): Set<CoinFeature>;
27
28
  protected disallowedFeatures(): Set<CoinFeature>;
28
29
  }
30
+ /**
31
+ * Function to convert AMS inputs into OFC coin instance.
32
+ *
33
+ * @param id uuid v4
34
+ * @param name unique identifier of the coin
35
+ * @param fullName complete human-readable name of the coin
36
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
37
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
38
+ * @param features Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
39
+ * @param prefix Optional coin prefix. Defaults to empty string
40
+ * @param suffix Optional coin suffix. Defaults to coin name.
41
+ * @param network Network object for this coin
42
+ * @param primaryKeyCurve The elliptic curve for this chain/token
43
+ * @param baseUnit base unit of the token
44
+ * @param isToken Whether or not this account coin is a token of another coin
45
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
46
+ * @returns {Readonly<OfcCoin>} OFC coin instance
47
+ */
48
+ export declare function ofcToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, primaryKeyCurve?: KeyCurve, baseUnit?: BaseUnit, isToken?: boolean, kind?: CoinKind): Readonly<OfcCoin>;
29
49
  /**
30
50
  * Factory function for ofc coin instances.
31
51
  *
@@ -96,6 +116,42 @@ export declare function ofcerc20(id: string, name: string, fullName: string, dec
96
116
  * @param primaryKeyCurve The elliptic curve for this chain/token
97
117
  */
98
118
  export declare function tofcerc20(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
119
+ /**
120
+ * Factory function for ofc solana token instances.
121
+ *
122
+ * @param id uuid v4
123
+ * @param name unique identifier of the coin
124
+ * @param fullName Complete human-readable name of the coin
125
+ * @param features
126
+ * @param prefix
127
+ * @param suffix
128
+ * @param network Network object for this coin
129
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
130
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
131
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
132
+ * @param isToken
133
+ * @param addressCoin
134
+ * @param primaryKeyCurve The elliptic curve for this chain/token
135
+ */
136
+ export declare function ofcsolToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, features?: CoinFeature[], kind?: CoinKind, prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
137
+ /**
138
+ * Factory function for testnet ofc solana token instances.
139
+ *
140
+ * @param id uuid v4
141
+ * @param name unique identifier of the coin
142
+ * @param fullName Complete human-readable name of the coin
143
+ * @param features
144
+ * @param prefix
145
+ * @param suffix
146
+ * @param network Network object for this coin
147
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
148
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
149
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
150
+ * @param isToken
151
+ * @param addressCoin
152
+ * @param primaryKeyCurve The elliptic curve for this chain/token
153
+ */
154
+ export declare function tofcsolToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, features?: CoinFeature[], kind?: CoinKind, prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
99
155
  /**
100
156
  * Factory function for ofc stellar token instances.
101
157
  *
@@ -198,4 +254,297 @@ export declare function ofcHederaToken(id: string, name: string, fullName: strin
198
254
  * @param primaryKeyCurve The elliptic curve for this chain/token
199
255
  */
200
256
  export declare function tofcHederaToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
257
+ /**
258
+ * Factory function for ofc arbethErc20 token instances.
259
+ *
260
+ * @param id uuid v4
261
+ * @param name unique identifier of the coin
262
+ * @param fullName Complete human-readable name of the coin
263
+ * @param network Network object for this coin
264
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
265
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
266
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
267
+ * @param prefix? Optional coin prefix. Defaults to empty string
268
+ * @param suffix? Optional coin suffix. Defaults to coin name.
269
+ * @param isToken? Whether or not this account coin is a token of another coin
270
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
271
+ * @param primaryKeyCurve The elliptic curve for this chain/token
272
+ */
273
+ export declare function ofcArbethErc20(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
274
+ /**
275
+ * Factory function for testnet ofc arbethErc20 token instances.
276
+ *
277
+ * @param id uuid v4
278
+ * @param name unique identifier of the coin
279
+ * @param fullName Complete human-readable name of the coin
280
+ * @param network Network object for this coin
281
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
282
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
283
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
284
+ * @param prefix? Optional coin prefix. Defaults to empty string
285
+ * @param suffix? Optional coin suffix. Defaults to coin name.
286
+ * @param isToken? Whether or not this account coin is a token of another coin
287
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
288
+ * @param primaryKeyCurve The elliptic curve for this chain/token
289
+ */
290
+ export declare function tofcArbethErc20(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
291
+ /**
292
+ * Factory function for ofc avaxErc20 token instances.
293
+ *
294
+ * @param id uuid v4
295
+ * @param name unique identifier of the coin
296
+ * @param fullName Complete human-readable name of the coin
297
+ * @param network Network object for this coin
298
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
299
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
300
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
301
+ * @param prefix? Optional coin prefix. Defaults to empty string
302
+ * @param suffix? Optional coin suffix. Defaults to coin name.
303
+ * @param isToken? Whether or not this account coin is a token of another coin
304
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
305
+ * @param primaryKeyCurve The elliptic curve for this chain/token
306
+ */
307
+ export declare function ofcAvaxErc20(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
308
+ /**
309
+ * Factory function for testnet ofc avaxErc20 token instances.
310
+ *
311
+ * @param id uuid v4
312
+ * @param name unique identifier of the coin
313
+ * @param fullName Complete human-readable name of the coin
314
+ * @param network Network object for this coin
315
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
316
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
317
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
318
+ * @param prefix? Optional coin prefix. Defaults to empty string
319
+ * @param suffix? Optional coin suffix. Defaults to coin name.
320
+ * @param isToken? Whether or not this account coin is a token of another coin
321
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
322
+ * @param primaryKeyCurve The elliptic curve for this chain/token
323
+ */
324
+ export declare function tofcAvaxErc20(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
325
+ /**
326
+ * Factory function for ofc polygonErc20 token instances.
327
+ *
328
+ * @param id uuid v4
329
+ * @param name unique identifier of the coin
330
+ * @param fullName Complete human-readable name of the coin
331
+ * @param network Network object for this coin
332
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
333
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
334
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
335
+ * @param prefix? Optional coin prefix. Defaults to empty string
336
+ * @param suffix? Optional coin suffix. Defaults to coin name.
337
+ * @param isToken? Whether or not this account coin is a token of another coin
338
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
339
+ * @param primaryKeyCurve The elliptic curve for this chain/token
340
+ */
341
+ export declare function ofcPolygonErc20(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
342
+ /**
343
+ * Factory function for testnet ofc polygonErc20 token instances.
344
+ *
345
+ * @param id uuid v4
346
+ * @param name unique identifier of the coin
347
+ * @param fullName Complete human-readable name of the coin
348
+ * @param network Network object for this coin
349
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
350
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
351
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
352
+ * @param prefix? Optional coin prefix. Defaults to empty string
353
+ * @param suffix? Optional coin suffix. Defaults to coin name.
354
+ * @param isToken? Whether or not this account coin is a token of another coin
355
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
356
+ * @param primaryKeyCurve The elliptic curve for this chain/token
357
+ */
358
+ export declare function tofcPolygonErc20(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
359
+ /**
360
+ * Factory function for ofc bsc token instances.
361
+ *
362
+ * @param id uuid v4
363
+ * @param name unique identifier of the coin
364
+ * @param fullName Complete human-readable name of the coin
365
+ * @param network Network object for this coin
366
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
367
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
368
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
369
+ * @param prefix? Optional coin prefix. Defaults to empty string
370
+ * @param suffix? Optional coin suffix. Defaults to coin name.
371
+ * @param isToken? Whether or not this account coin is a token of another coin
372
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
373
+ * @param primaryKeyCurve The elliptic curve for this chain/token
374
+ */
375
+ export declare function ofcBscToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
376
+ /**
377
+ * Factory function for testnet ofc bsc token instances.
378
+ *
379
+ * @param id uuid v4
380
+ * @param name unique identifier of the coin
381
+ * @param fullName Complete human-readable name of the coin
382
+ * @param network Network object for this coin
383
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
384
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
385
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
386
+ * @param prefix? Optional coin prefix. Defaults to empty string
387
+ * @param suffix? Optional coin suffix. Defaults to coin name.
388
+ * @param isToken? Whether or not this account coin is a token of another coin
389
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
390
+ * @param primaryKeyCurve The elliptic curve for this chain/token
391
+ */
392
+ export declare function tofcBscToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
393
+ /**
394
+ * Factory function for mainnet ofc xrp instances.
395
+ *
396
+ * @param id uuid v4
397
+ * @param name unique identifier of the coin
398
+ * @param fullName Complete human-readable name of the coin
399
+ * @param network Network object for this coin
400
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
401
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
402
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
403
+ * @param prefix? Optional coin prefix. Defaults to empty string
404
+ * @param suffix? Optional coin suffix. Defaults to coin name.
405
+ * @param isToken? Whether or not this account coin is a token of another coin
406
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
407
+ * @param primaryKeyCurve The elliptic curve for this chain/token
408
+ */
409
+ export declare function ofcXrpToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
410
+ /**
411
+ * Factory function for testnet ofc xrp token instances.
412
+ *
413
+ * @param id uuid v4
414
+ * @param name unique identifier of the coin
415
+ * @param fullName Complete human-readable name of the coin
416
+ * @param network Network object for this coin
417
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
418
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
419
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
420
+ * @param prefix? Optional coin prefix. Defaults to empty string
421
+ * @param suffix? Optional coin suffix. Defaults to coin name.
422
+ * @param isToken? Whether or not this account coin is a token of another coin
423
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
424
+ * @param primaryKeyCurve The elliptic curve for this chain/token
425
+ */
426
+ export declare function tofcXrpToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
427
+ /**
428
+ * Factory function for mainnet ofc stx instances.
429
+ *
430
+ * @param id uuid v4
431
+ * @param name unique identifier of the coin
432
+ * @param fullName Complete human-readable name of the coin
433
+ * @param network Network object for this coin
434
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
435
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
436
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
437
+ * @param prefix Optional coin prefix. Defaults to empty string
438
+ * @param suffix Optional coin suffix. Defaults to coin name.
439
+ * @param isToken Whether or not this account coin is a token of another coin
440
+ * @param features Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
441
+ * @param primaryKeyCurve The elliptic curve for this chain/token
442
+ */
443
+ export declare function ofcStxToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
444
+ /**
445
+ * Factory function for testnet ofc stx instances.
446
+ *
447
+ * @param id uuid v4
448
+ * @param name unique identifier of the coin
449
+ * @param fullName Complete human-readable name of the coin
450
+ * @param network Network object for this coin
451
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
452
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
453
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
454
+ * @param prefix Optional coin prefix. Defaults to empty string
455
+ * @param suffix Optional coin suffix. Defaults to coin name.
456
+ * @param isToken Whether or not this account coin is a token of another coin
457
+ * @param features Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
458
+ * @param primaryKeyCurve The elliptic curve for this chain/token
459
+ */
460
+ export declare function tofcStxToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
461
+ /**
462
+ * Factory function for ofc opetherc20 token instances.
463
+ *
464
+ * @param id uuid v4
465
+ * @param name unique identifier of the coin
466
+ * @param fullName Complete human-readable name of the coin
467
+ * @param network Network object for this coin
468
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
469
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
470
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
471
+ * @param prefix? Optional coin prefix. Defaults to empty string
472
+ * @param suffix? Optional coin suffix. Defaults to coin name.
473
+ * @param isToken? Whether or not this account coin is a token of another coin
474
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
475
+ * @param primaryKeyCurve The elliptic curve for this chain/token
476
+ */
477
+ export declare function ofcOpethErc20(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
478
+ /**
479
+ * Factory function for ofc tron token instances.
480
+ *
481
+ * @param id uuid v4
482
+ * @param name unique identifier of the coin
483
+ * @param fullName Complete human-readable name of the coin
484
+ * @param network Network object for this coin
485
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
486
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
487
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
488
+ * @param prefix? Optional coin prefix. Defaults to empty string
489
+ * @param suffix? Optional coin suffix. Defaults to coin name.
490
+ * @param isToken? Whether or not this account coin is a token of another coin
491
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
492
+ * @param primaryKeyCurve The elliptic curve for this chain/token
493
+ */
494
+ export declare function ofcTronToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
495
+ /**
496
+ * Factory function for ofc tron token instances.
497
+ *
498
+ * @param id uuid v4
499
+ * @param name unique identifier of the coin
500
+ * @param fullName Complete human-readable name of the coin
501
+ * @param network Network object for this coin
502
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
503
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
504
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
505
+ * @param prefix? Optional coin prefix. Defaults to empty string
506
+ * @param suffix? Optional coin suffix. Defaults to coin name.
507
+ * @param isToken? Whether or not this account coin is a token of another coin
508
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
509
+ * @param primaryKeyCurve The elliptic curve for this chain/token
510
+ */
511
+ export declare function tofcTronToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
512
+ /**
513
+ * Factory function for ofc aptos token instances.
514
+ *
515
+ * @param id uuid v4
516
+ * @param name unique identifier of the coin
517
+ * @param fullName Complete human-readable name of the coin
518
+ * @param features
519
+ * @param prefix
520
+ * @param suffix
521
+ * @param network Network object for this coin
522
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
523
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
524
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
525
+ * @param isToken
526
+ * @param addressCoin
527
+ * @param primaryKeyCurve The elliptic curve for this chain/token
528
+ */
529
+ export declare function ofcaptToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, features?: CoinFeature[], // TSS_ENTERPRISE_PAYS_FEE is a mandatory field for APTOS being a TSS & having Gas tank as fee payer
530
+ kind?: CoinKind, prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
531
+ /**
532
+ * Factory function for testnet ofc aptos token instances.
533
+ *
534
+ * @param id uuid v4
535
+ * @param name unique identifier of the coin
536
+ * @param fullName Complete human-readable name of the coin
537
+ * @param features
538
+ * @param prefix
539
+ * @param suffix
540
+ * @param network Network object for this coin
541
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
542
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
543
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
544
+ * @param isToken
545
+ * @param addressCoin
546
+ * @param primaryKeyCurve The elliptic curve for this chain/token
547
+ */
548
+ export declare function tofcaptToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, features?: CoinFeature[], // TSS_ENTERPRISE_PAYS_FEE is a mandatory field for APTOS being a TSS & having Gas tank as fee payer
549
+ kind?: CoinKind, prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
201
550
  //# sourceMappingURL=ofc.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ofc.d.ts","sourceRoot":"","sources":["../../src/ofc.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ofc.d.ts","sourceRoot":"","sources":["../../src/ofc.ts"],"names":[],"mappings":"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"}