@bitgo-beta/statics 15.1.1-beta.167 → 15.1.1-beta.1670

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 (117) hide show
  1. package/dist/src/account.d.ts +1049 -75
  2. package/dist/src/account.d.ts.map +1 -1
  3. package/dist/src/account.js +1662 -170
  4. package/dist/src/ada.d.ts.map +1 -1
  5. package/dist/src/ada.js +7 -3
  6. package/dist/src/allCoinsAndTokens.d.ts +2 -0
  7. package/dist/src/allCoinsAndTokens.d.ts.map +1 -0
  8. package/dist/src/allCoinsAndTokens.js +1422 -0
  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 +2258 -53
  12. package/dist/src/base.d.ts.map +1 -1
  13. package/dist/src/base.js +2353 -63
  14. package/dist/src/canton.d.ts +34 -0
  15. package/dist/src/canton.d.ts.map +1 -0
  16. package/dist/src/canton.js +51 -0
  17. package/dist/src/coinFeatures.d.ts +113 -0
  18. package/dist/src/coinFeatures.d.ts.map +1 -0
  19. package/dist/src/coinFeatures.js +733 -0
  20. package/dist/src/coins/adaTokens.d.ts +2 -0
  21. package/dist/src/coins/adaTokens.d.ts.map +1 -0
  22. package/dist/src/coins/adaTokens.js +22 -0
  23. package/dist/src/coins/avaxTokens.d.ts +2 -0
  24. package/dist/src/coins/avaxTokens.d.ts.map +1 -0
  25. package/dist/src/coins/avaxTokens.js +128 -0
  26. package/dist/src/coins/botOfcTokens.d.ts +2 -0
  27. package/dist/src/coins/botOfcTokens.d.ts.map +1 -0
  28. package/dist/src/coins/botOfcTokens.js +5 -0
  29. package/dist/src/coins/botTokens.d.ts +3 -0
  30. package/dist/src/coins/botTokens.d.ts.map +1 -0
  31. package/dist/src/coins/botTokens.js +43 -0
  32. package/dist/src/coins/bscTokens.d.ts +2 -0
  33. package/dist/src/coins/bscTokens.d.ts.map +1 -0
  34. package/dist/src/coins/bscTokens.js +204 -0
  35. package/dist/src/coins/cantonTokens.d.ts +2 -0
  36. package/dist/src/coins/cantonTokens.d.ts.map +1 -0
  37. package/dist/src/coins/cantonTokens.js +16 -0
  38. package/dist/src/coins/cosmosTokens.d.ts +2 -0
  39. package/dist/src/coins/cosmosTokens.d.ts.map +1 -0
  40. package/dist/src/coins/cosmosTokens.js +14 -0
  41. package/dist/src/coins/erc20Coins.d.ts +2 -0
  42. package/dist/src/coins/erc20Coins.d.ts.map +1 -0
  43. package/dist/src/coins/erc20Coins.js +2016 -0
  44. package/dist/src/coins/generateERC20.d.ts +35 -0
  45. package/dist/src/coins/generateERC20.d.ts.map +1 -0
  46. package/dist/src/coins/generateERC20.js +46 -0
  47. package/dist/src/coins/jettonTokens.d.ts +2 -0
  48. package/dist/src/coins/jettonTokens.d.ts.map +1 -0
  49. package/dist/src/coins/jettonTokens.js +19 -0
  50. package/dist/src/coins/nep141Tokens.d.ts +2 -0
  51. package/dist/src/coins/nep141Tokens.d.ts.map +1 -0
  52. package/dist/src/coins/nep141Tokens.js +17 -0
  53. package/dist/src/coins/ofcCoins.d.ts +2 -0
  54. package/dist/src/coins/ofcCoins.d.ts.map +1 -0
  55. package/dist/src/coins/ofcCoins.js +944 -0
  56. package/dist/src/coins/ofcErc20Coins.d.ts +4 -0
  57. package/dist/src/coins/ofcErc20Coins.d.ts.map +1 -0
  58. package/dist/src/coins/ofcErc20Coins.js +1767 -0
  59. package/dist/src/coins/polygonTokens.d.ts +2 -0
  60. package/dist/src/coins/polygonTokens.d.ts.map +1 -0
  61. package/dist/src/coins/polygonTokens.js +165 -0
  62. package/dist/src/coins/polyxTokens.d.ts +2 -0
  63. package/dist/src/coins/polyxTokens.d.ts.map +1 -0
  64. package/dist/src/coins/polyxTokens.js +22 -0
  65. package/dist/src/coins/sip10Tokens.d.ts +2 -0
  66. package/dist/src/coins/sip10Tokens.d.ts.map +1 -0
  67. package/dist/src/coins/sip10Tokens.js +25 -0
  68. package/dist/src/coins/solTokens.d.ts +3 -0
  69. package/dist/src/coins/solTokens.d.ts.map +1 -0
  70. package/dist/src/coins/solTokens.js +454 -0
  71. package/dist/src/coins/vetTokens.d.ts +2 -0
  72. package/dist/src/coins/vetTokens.d.ts.map +1 -0
  73. package/dist/src/coins/vetTokens.js +11 -0
  74. package/dist/src/coins.d.ts +11 -1
  75. package/dist/src/coins.d.ts.map +1 -1
  76. package/dist/src/coins.js +410 -1690
  77. package/dist/src/constants.d.ts +1 -0
  78. package/dist/src/constants.d.ts.map +1 -1
  79. package/dist/src/constants.js +3 -2
  80. package/dist/src/errors.d.ts +3 -0
  81. package/dist/src/errors.d.ts.map +1 -1
  82. package/dist/src/errors.js +9 -2
  83. package/dist/src/flrp.d.ts +40 -0
  84. package/dist/src/flrp.d.ts.map +1 -0
  85. package/dist/src/flrp.js +65 -0
  86. package/dist/src/hypeevm.d.ts +28 -0
  87. package/dist/src/hypeevm.d.ts.map +1 -0
  88. package/dist/src/hypeevm.js +60 -0
  89. package/dist/src/index.d.ts +4 -1
  90. package/dist/src/index.d.ts.map +1 -1
  91. package/dist/src/index.js +32 -3
  92. package/dist/src/lightning.d.ts +43 -0
  93. package/dist/src/lightning.d.ts.map +1 -0
  94. package/dist/src/lightning.js +60 -0
  95. package/dist/src/map.d.ts +16 -0
  96. package/dist/src/map.d.ts.map +1 -1
  97. package/dist/src/map.js +194 -17
  98. package/dist/src/networkFeatureMapForTokens.d.ts +3 -0
  99. package/dist/src/networkFeatureMapForTokens.d.ts.map +1 -0
  100. package/dist/src/networkFeatureMapForTokens.js +31 -0
  101. package/dist/src/networks.d.ts +1753 -33
  102. package/dist/src/networks.d.ts.map +1 -1
  103. package/dist/src/networks.js +2167 -103
  104. package/dist/src/ofc.d.ts +663 -3
  105. package/dist/src/ofc.d.ts.map +1 -1
  106. package/dist/src/ofc.js +1573 -28
  107. package/dist/src/tokenConfig.d.ts +641 -108
  108. package/dist/src/tokenConfig.d.ts.map +1 -1
  109. package/dist/src/tokenConfig.js +1011 -220
  110. package/dist/src/utxo.d.ts +3 -1
  111. package/dist/src/utxo.d.ts.map +1 -1
  112. package/dist/src/utxo.js +84 -3
  113. package/dist/tsconfig.tsbuildinfo +1 -1
  114. package/package.json +6 -3
  115. package/.mocharc.js +0 -10
  116. package/.prettierignore +0 -2
  117. package/CHANGELOG.md +0 -913
package/dist/src/ofc.d.ts CHANGED
@@ -16,16 +16,42 @@ export interface OfcConstructorOptions {
16
16
  addressCoin?: string;
17
17
  primaryKeyCurve: KeyCurve;
18
18
  }
19
+ /**
20
+ * Get filtered features for a coin based on its suffix
21
+ * @param suffix The coin suffix to look up
22
+ * @returns Filtered array of CoinFeatures excluding the ones in the exclude list
23
+ */
24
+ export declare function getFilteredFeatures(suffix: string): CoinFeature[];
19
25
  /**
20
26
  * OFC (off chain) coins. These are virtual coins used to represent off chain assets on the BitGo platform.
21
27
  */
22
28
  export declare class OfcCoin extends BaseCoin {
23
29
  static readonly DEFAULT_FEATURES: CoinFeature[];
24
30
  readonly addressCoin?: string;
31
+ readonly minimumDenomination: number;
25
32
  constructor(options: OfcConstructorOptions);
26
33
  protected requiredFeatures(): Set<CoinFeature>;
27
34
  protected disallowedFeatures(): Set<CoinFeature>;
28
35
  }
36
+ /**
37
+ * Function to convert AMS inputs into OFC coin instance.
38
+ *
39
+ * @param id uuid v4
40
+ * @param name unique identifier of the coin
41
+ * @param fullName complete human-readable name of the coin
42
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
43
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
44
+ * @param features Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
45
+ * @param prefix Optional coin prefix. Defaults to empty string
46
+ * @param suffix Optional coin suffix. Defaults to coin name.
47
+ * @param network Network object for this coin
48
+ * @param primaryKeyCurve The elliptic curve for this chain/token
49
+ * @param baseUnit base unit of the token
50
+ * @param isToken Whether or not this account coin is a token of another coin
51
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
52
+ * @returns {Readonly<OfcCoin>} OFC coin instance
53
+ */
54
+ 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, addressCoin?: string): Readonly<OfcCoin>;
29
55
  /**
30
56
  * Factory function for ofc coin instances.
31
57
  *
@@ -68,12 +94,11 @@ export declare function tofc(id: string, name: string, fullName: string, decimal
68
94
  * @param id uuid v4
69
95
  * @param name unique identifier of the coin
70
96
  * @param fullName Complete human-readable name of the coin
71
- * @param network Network object for this coin
72
97
  * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
73
98
  * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
74
- * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
75
- * @param prefix? Optional coin prefix. Defaults to empty string
99
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets * @param prefix? Optional coin prefix. Defaults to empty string
76
100
  * @param suffix? Optional coin suffix. Defaults to coin name.
101
+ * @param network Network object for this coin
77
102
  * @param isToken? Whether or not this account coin is a token of another coin
78
103
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
79
104
  * @param primaryKeyCurve The elliptic curve for this chain/token
@@ -96,6 +121,42 @@ export declare function ofcerc20(id: string, name: string, fullName: string, dec
96
121
  * @param primaryKeyCurve The elliptic curve for this chain/token
97
122
  */
98
123
  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>;
124
+ /**
125
+ * Factory function for ofc solana token instances.
126
+ *
127
+ * @param id uuid v4
128
+ * @param name unique identifier of the coin
129
+ * @param fullName Complete human-readable name of the coin
130
+ * @param features
131
+ * @param prefix
132
+ * @param suffix
133
+ * @param network Network object for this coin
134
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
135
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
136
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
137
+ * @param isToken
138
+ * @param addressCoin
139
+ * @param primaryKeyCurve The elliptic curve for this chain/token
140
+ */
141
+ 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>;
142
+ /**
143
+ * Factory function for testnet ofc solana token instances.
144
+ *
145
+ * @param id uuid v4
146
+ * @param name unique identifier of the coin
147
+ * @param fullName Complete human-readable name of the coin
148
+ * @param features
149
+ * @param prefix
150
+ * @param suffix
151
+ * @param network Network object for this coin
152
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
153
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
154
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
155
+ * @param isToken
156
+ * @param addressCoin
157
+ * @param primaryKeyCurve The elliptic curve for this chain/token
158
+ */
159
+ 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
160
  /**
100
161
  * Factory function for ofc stellar token instances.
101
162
  *
@@ -198,4 +259,603 @@ export declare function ofcHederaToken(id: string, name: string, fullName: strin
198
259
  * @param primaryKeyCurve The elliptic curve for this chain/token
199
260
  */
200
261
  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>;
262
+ /**
263
+ * Factory function for ofc arbethErc20 token instances.
264
+ *
265
+ * @param id uuid v4
266
+ * @param name unique identifier of the coin
267
+ * @param fullName Complete human-readable name of the coin
268
+ * @param network Network object for this coin
269
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
270
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
271
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
272
+ * @param prefix? Optional coin prefix. Defaults to empty string
273
+ * @param suffix? Optional coin suffix. Defaults to coin name.
274
+ * @param isToken? Whether or not this account coin is a token of another coin
275
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
276
+ * @param primaryKeyCurve The elliptic curve for this chain/token
277
+ */
278
+ 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>;
279
+ /**
280
+ * Factory function for testnet ofc arbethErc20 token instances.
281
+ *
282
+ * @param id uuid v4
283
+ * @param name unique identifier of the coin
284
+ * @param fullName Complete human-readable name of the coin
285
+ * @param network Network object for this coin
286
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
287
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
288
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
289
+ * @param prefix? Optional coin prefix. Defaults to empty string
290
+ * @param suffix? Optional coin suffix. Defaults to coin name.
291
+ * @param isToken? Whether or not this account coin is a token of another coin
292
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
293
+ * @param primaryKeyCurve The elliptic curve for this chain/token
294
+ */
295
+ 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>;
296
+ /**
297
+ * Factory function for ofc avaxErc20 token instances.
298
+ *
299
+ * @param id uuid v4
300
+ * @param name unique identifier of the coin
301
+ * @param fullName Complete human-readable name of the coin
302
+ * @param network Network object for this coin
303
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
304
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
305
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
306
+ * @param prefix? Optional coin prefix. Defaults to empty string
307
+ * @param suffix? Optional coin suffix. Defaults to coin name.
308
+ * @param isToken? Whether or not this account coin is a token of another coin
309
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
310
+ * @param primaryKeyCurve The elliptic curve for this chain/token
311
+ */
312
+ 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>;
313
+ /**
314
+ * Factory function for testnet ofc avaxErc20 token instances.
315
+ *
316
+ * @param id uuid v4
317
+ * @param name unique identifier of the coin
318
+ * @param fullName Complete human-readable name of the coin
319
+ * @param network Network object for this coin
320
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
321
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
322
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
323
+ * @param prefix? Optional coin prefix. Defaults to empty string
324
+ * @param suffix? Optional coin suffix. Defaults to coin name.
325
+ * @param isToken? Whether or not this account coin is a token of another coin
326
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
327
+ * @param primaryKeyCurve The elliptic curve for this chain/token
328
+ */
329
+ 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>;
330
+ /**
331
+ * Factory function for ofc polygonErc20 token instances.
332
+ *
333
+ * @param id uuid v4
334
+ * @param name unique identifier of the coin
335
+ * @param fullName Complete human-readable name of the coin
336
+ * @param network Network object for this coin
337
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
338
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
339
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
340
+ * @param prefix? Optional coin prefix. Defaults to empty string
341
+ * @param suffix? Optional coin suffix. Defaults to coin name.
342
+ * @param isToken? Whether or not this account coin is a token of another coin
343
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
344
+ * @param primaryKeyCurve The elliptic curve for this chain/token
345
+ */
346
+ 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>;
347
+ /**
348
+ * Factory function for testnet ofc polygonErc20 token instances.
349
+ *
350
+ * @param id uuid v4
351
+ * @param name unique identifier of the coin
352
+ * @param fullName Complete human-readable name of the coin
353
+ * @param network Network object for this coin
354
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
355
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
356
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
357
+ * @param prefix? Optional coin prefix. Defaults to empty string
358
+ * @param suffix? Optional coin suffix. Defaults to coin name.
359
+ * @param isToken? Whether or not this account coin is a token of another coin
360
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
361
+ * @param primaryKeyCurve The elliptic curve for this chain/token
362
+ */
363
+ 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>;
364
+ /**
365
+ * Factory function for ofc bsc token instances.
366
+ *
367
+ * @param id uuid v4
368
+ * @param name unique identifier of the coin
369
+ * @param fullName Complete human-readable name of the coin
370
+ * @param network Network object for this coin
371
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
372
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
373
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
374
+ * @param prefix? Optional coin prefix. Defaults to empty string
375
+ * @param suffix? Optional coin suffix. Defaults to coin name.
376
+ * @param isToken? Whether or not this account coin is a token of another coin
377
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
378
+ * @param primaryKeyCurve The elliptic curve for this chain/token
379
+ */
380
+ 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>;
381
+ /**
382
+ * Factory function for testnet ofc bsc token instances.
383
+ *
384
+ * @param id uuid v4
385
+ * @param name unique identifier of the coin
386
+ * @param fullName Complete human-readable name of the coin
387
+ * @param network Network object for this coin
388
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
389
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
390
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
391
+ * @param prefix? Optional coin prefix. Defaults to empty string
392
+ * @param suffix? Optional coin suffix. Defaults to coin name.
393
+ * @param isToken? Whether or not this account coin is a token of another coin
394
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
395
+ * @param primaryKeyCurve The elliptic curve for this chain/token
396
+ */
397
+ 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>;
398
+ /**
399
+ * Factory function for mainnet ofc xrp instances.
400
+ *
401
+ * @param id uuid v4
402
+ * @param name unique identifier of the coin
403
+ * @param fullName Complete human-readable name of the coin
404
+ * @param network Network object for this coin
405
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
406
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
407
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
408
+ * @param prefix? Optional coin prefix. Defaults to empty string
409
+ * @param suffix? Optional coin suffix. Defaults to coin name.
410
+ * @param isToken? Whether or not this account coin is a token of another coin
411
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
412
+ * @param primaryKeyCurve The elliptic curve for this chain/token
413
+ */
414
+ 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>;
415
+ /**
416
+ * Factory function for testnet ofc xrp token instances.
417
+ *
418
+ * @param id uuid v4
419
+ * @param name unique identifier of the coin
420
+ * @param fullName Complete human-readable name of the coin
421
+ * @param network Network object for this coin
422
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
423
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
424
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
425
+ * @param prefix? Optional coin prefix. Defaults to empty string
426
+ * @param suffix? Optional coin suffix. Defaults to coin name.
427
+ * @param isToken? Whether or not this account coin is a token of another coin
428
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
429
+ * @param primaryKeyCurve The elliptic curve for this chain/token
430
+ */
431
+ 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>;
432
+ /**
433
+ * Factory function for mainnet ofc stx instances.
434
+ *
435
+ * @param id uuid v4
436
+ * @param name unique identifier of the coin
437
+ * @param fullName Complete human-readable name of the coin
438
+ * @param network Network object for this coin
439
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
440
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
441
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
442
+ * @param prefix Optional coin prefix. Defaults to empty string
443
+ * @param suffix Optional coin suffix. Defaults to coin name.
444
+ * @param isToken Whether or not this account coin is a token of another coin
445
+ * @param features Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
446
+ * @param primaryKeyCurve The elliptic curve for this chain/token
447
+ */
448
+ 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>;
449
+ /**
450
+ * Factory function for testnet ofc stx instances.
451
+ *
452
+ * @param id uuid v4
453
+ * @param name unique identifier of the coin
454
+ * @param fullName Complete human-readable name of the coin
455
+ * @param network Network object for this coin
456
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
457
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
458
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
459
+ * @param prefix Optional coin prefix. Defaults to empty string
460
+ * @param suffix Optional coin suffix. Defaults to coin name.
461
+ * @param isToken Whether or not this account coin is a token of another coin
462
+ * @param features Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
463
+ * @param primaryKeyCurve The elliptic curve for this chain/token
464
+ */
465
+ 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>;
466
+ /**
467
+ * Factory function for ofc opetherc20 token instances.
468
+ *
469
+ * @param id uuid v4
470
+ * @param name unique identifier of the coin
471
+ * @param fullName Complete human-readable name of the coin
472
+ * @param network Network object for this coin
473
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
474
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
475
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
476
+ * @param prefix? Optional coin prefix. Defaults to empty string
477
+ * @param suffix? Optional coin suffix. Defaults to coin name.
478
+ * @param isToken? Whether or not this account coin is a token of another coin
479
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
480
+ * @param primaryKeyCurve The elliptic curve for this chain/token
481
+ */
482
+ 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>;
483
+ /**
484
+ * Factory function for ofc tron token instances.
485
+ *
486
+ * @param id uuid v4
487
+ * @param name unique identifier of the coin
488
+ * @param fullName Complete human-readable name of the coin
489
+ * @param network Network object for this coin
490
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
491
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
492
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
493
+ * @param prefix? Optional coin prefix. Defaults to empty string
494
+ * @param suffix? Optional coin suffix. Defaults to coin name.
495
+ * @param isToken? Whether or not this account coin is a token of another coin
496
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
497
+ * @param primaryKeyCurve The elliptic curve for this chain/token
498
+ */
499
+ 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>;
500
+ /**
501
+ * Factory function for ofc tron token instances.
502
+ *
503
+ * @param id uuid v4
504
+ * @param name unique identifier of the coin
505
+ * @param fullName Complete human-readable name of the coin
506
+ * @param network Network object for this coin
507
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
508
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
509
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
510
+ * @param prefix? Optional coin prefix. Defaults to empty string
511
+ * @param suffix? Optional coin suffix. Defaults to coin name.
512
+ * @param isToken? Whether or not this account coin is a token of another coin
513
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
514
+ * @param primaryKeyCurve The elliptic curve for this chain/token
515
+ */
516
+ 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>;
517
+ /**
518
+ * Factory function for ofc aptos token instances.
519
+ *
520
+ * @param id uuid v4
521
+ * @param name unique identifier of the coin
522
+ * @param fullName Complete human-readable name of the coin
523
+ * @param features
524
+ * @param prefix
525
+ * @param suffix
526
+ * @param network Network object for this coin
527
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
528
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
529
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
530
+ * @param isToken
531
+ * @param addressCoin
532
+ * @param primaryKeyCurve The elliptic curve for this chain/token
533
+ */
534
+ 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
535
+ kind?: CoinKind, prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
536
+ /**
537
+ * Factory function for testnet ofc aptos token instances.
538
+ *
539
+ * @param id uuid v4
540
+ * @param name unique identifier of the coin
541
+ * @param fullName Complete human-readable name of the coin
542
+ * @param features
543
+ * @param prefix
544
+ * @param suffix
545
+ * @param network Network object for this coin
546
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
547
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
548
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
549
+ * @param isToken
550
+ * @param addressCoin
551
+ * @param primaryKeyCurve The elliptic curve for this chain/token
552
+ */
553
+ 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
554
+ kind?: CoinKind, prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, addressCoin?: string, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
555
+ /**
556
+ * Factory function for ofc nep141 token instances.
557
+ *
558
+ * @param id uuid v4
559
+ * @param name unique identifier of the coin
560
+ * @param fullName Complete human-readable name of the coin
561
+ * @param features
562
+ * @param prefix
563
+ * @param suffix
564
+ * @param network Network object for this coin
565
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
566
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
567
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
568
+ * @param isToken
569
+ * @param addressCoin
570
+ * @param primaryKeyCurve The elliptic curve for this chain/token
571
+ */
572
+ export declare function ofcnep141Token(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>;
573
+ /**
574
+ * Factory function for tofc nep141 token instances.
575
+ *
576
+ * @param id uuid v4
577
+ * @param name unique identifier of the coin
578
+ * @param fullName Complete human-readable name of the coin
579
+ * @param features
580
+ * @param prefix
581
+ * @param suffix
582
+ * @param network Network object for this coin
583
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
584
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
585
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
586
+ * @param isToken
587
+ * @param addressCoin
588
+ * @param primaryKeyCurve The elliptic curve for this chain/token
589
+ */
590
+ export declare function tofcnep141Token(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>;
591
+ /**
592
+ * Factory function for ofc WorldErc20 token instances.
593
+ *
594
+ * @param id uuid v4
595
+ * @param name unique identifier of the coin
596
+ * @param fullName Complete human-readable name of the coin
597
+ * @param network Network object for this coin
598
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
599
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
600
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
601
+ * @param prefix? Optional coin prefix. Defaults to empty string
602
+ * @param suffix? Optional coin suffix. Defaults to coin name.
603
+ * @param isToken? Whether or not this account coin is a token of another coin
604
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
605
+ * @param primaryKeyCurve The elliptic curve for this chain/token
606
+ */
607
+ export declare function ofcWorldErc20(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>;
608
+ /**
609
+ * Factory function for testnet ofc WorldErc20 token instances.
610
+ *
611
+ * @param id uuid v4
612
+ * @param name unique identifier of the coin
613
+ * @param fullName Complete human-readable name of the coin
614
+ * @param network Network object for this coin
615
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
616
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
617
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
618
+ * @param prefix? Optional coin prefix. Defaults to empty string
619
+ * @param suffix? Optional coin suffix. Defaults to coin name.
620
+ * @param isToken? Whether or not this account coin is a token of another coin
621
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
622
+ * @param primaryKeyCurve The elliptic curve for this chain/token
623
+ */
624
+ export declare function tofcWorldErc20(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>;
625
+ /**
626
+ * Factory function for ofc CoredaoErc20 token instances.
627
+ *
628
+ * @param id uuid v4
629
+ * @param name unique identifier of the coin
630
+ * @param fullName Complete human-readable name of the coin
631
+ * @param network Network object for this coin
632
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
633
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
634
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
635
+ * @param prefix? Optional coin prefix. Defaults to empty string
636
+ * @param suffix? Optional coin suffix. Defaults to coin name.
637
+ * @param isToken? Whether or not this account coin is a token of another coin
638
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
639
+ * @param primaryKeyCurve The elliptic curve for this chain/token
640
+ */
641
+ export declare function ofcCoredaoErc20(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>;
642
+ /**
643
+ * Factory function for testnet ofc CoredaoErc20 token instances.
644
+ *
645
+ * @param id uuid v4
646
+ * @param name unique identifier of the coin
647
+ * @param fullName Complete human-readable name of the coin
648
+ * @param network Network object for this coin
649
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
650
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
651
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
652
+ * @param prefix? Optional coin prefix. Defaults to empty string
653
+ * @param suffix? Optional coin suffix. Defaults to coin name.
654
+ * @param isToken? Whether or not this account coin is a token of another coin
655
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
656
+ * @param primaryKeyCurve The elliptic curve for this chain/token
657
+ */
658
+ export declare function tofcCoredaoErc20(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>;
659
+ /**
660
+ * Factory function for ofc vet token instances.
661
+ *
662
+ * @param id uuid v4
663
+ * @param name unique identifier of the coin
664
+ * @param fullName Complete human-readable name of the coin
665
+ * @param network Network object for this coin
666
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
667
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
668
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
669
+ * @param prefix? Optional coin prefix. Defaults to empty string
670
+ * @param suffix? Optional coin suffix. Defaults to coin name.
671
+ * @param isToken? Whether or not this account coin is a token of another coin
672
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
673
+ * @param primaryKeyCurve The elliptic curve for this chain/token
674
+ */
675
+ export declare function ofcVetToken(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>;
676
+ /**
677
+ * Factory function for testnet ofc vet token instances.
678
+ *
679
+ * @param id uuid v4
680
+ * @param name unique identifier of the coin
681
+ * @param fullName Complete human-readable name of the coin
682
+ * @param network Network object for this coin
683
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
684
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
685
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
686
+ * @param prefix? Optional coin prefix. Defaults to empty string
687
+ * @param suffix? Optional coin suffix. Defaults to coin name.
688
+ * @param isToken? Whether or not this account coin is a token of another coin
689
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
690
+ * @param primaryKeyCurve The elliptic curve for this chain/token
691
+ */
692
+ export declare function tofcVetToken(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>;
693
+ /**
694
+ * Factory function for ofc hash token instances.
695
+ *
696
+ * @param id uuid v4
697
+ * @param name unique identifier of the coin
698
+ * @param fullName Complete human-readable name of the coin
699
+ * @param network Network object for this coin
700
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
701
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
702
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
703
+ * @param prefix? Optional coin prefix. Defaults to empty string
704
+ * @param suffix? Optional coin suffix. Defaults to coin name.
705
+ * @param isToken? Whether or not this account coin is a token of another coin
706
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
707
+ * @param primaryKeyCurve The elliptic curve for this chain/token
708
+ */
709
+ export declare function ofcHashToken(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>;
710
+ /**
711
+ * Factory function for testnet ofc hash token instances.
712
+ *
713
+ * @param id uuid v4
714
+ * @param name unique identifier of the coin
715
+ * @param fullName Complete human-readable name of the coin
716
+ * @param network Network object for this coin
717
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
718
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
719
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
720
+ * @param prefix? Optional coin prefix. Defaults to empty string
721
+ * @param suffix? Optional coin suffix. Defaults to coin name.
722
+ * @param isToken? Whether or not this account coin is a token of another coin
723
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
724
+ * @param primaryKeyCurve The elliptic curve for this chain/token
725
+ */
726
+ export declare function tofcHashToken(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>;
727
+ /**
728
+ * Factory function for ofc ton token instances.
729
+ *
730
+ * @param id uuid v4
731
+ * @param name unique identifier of the coin
732
+ * @param fullName Complete human-readable name of the coin
733
+ * @param network Network object for this coin
734
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
735
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
736
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
737
+ * @param prefix? Optional coin prefix. Defaults to empty string
738
+ * @param suffix? Optional coin suffix. Defaults to coin name.
739
+ * @param isToken? Whether or not this account coin is a token of another coin
740
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
741
+ * @param primaryKeyCurve The elliptic curve for this chain/token
742
+ */
743
+ export declare function ofcTonToken(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>;
744
+ /**
745
+ * Factory function for testnet ofc ton token instances.
746
+ *
747
+ * @param id uuid v4
748
+ * @param name unique identifier of the coin
749
+ * @param fullName Complete human-readable name of the coin
750
+ * @param network Network object for this coin
751
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
752
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
753
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
754
+ * @param prefix? Optional coin prefix. Defaults to empty string
755
+ * @param suffix? Optional coin suffix. Defaults to coin name.
756
+ * @param isToken? Whether or not this account coin is a token of another coin
757
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
758
+ * @param primaryKeyCurve The elliptic curve for this chain/token
759
+ */
760
+ export declare function tofcTonToken(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>;
761
+ /**
762
+ * Factory function for testnet ofc ton token instances.
763
+ *
764
+ * @param id uuid v4
765
+ * @param name unique identifier of the coin
766
+ * @param fullName Complete human-readable name of the coin
767
+ * @param network Network object for this coin
768
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
769
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
770
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
771
+ * @param prefix? Optional coin prefix. Defaults to empty string
772
+ * @param suffix? Optional coin suffix. Defaults to coin name.
773
+ * @param isToken? Whether or not this account coin is a token of another coin
774
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
775
+ * @param primaryKeyCurve The elliptic curve for this chain/token
776
+ */
777
+ export declare function ofcSuiToken(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>;
778
+ /**
779
+ * Factory function for testnet ofc ton token instances.
780
+ *
781
+ * @param id uuid v4
782
+ * @param name unique identifier of the coin
783
+ * @param fullName Complete human-readable name of the coin
784
+ * @param network Network object for this coin
785
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
786
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
787
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
788
+ * @param prefix? Optional coin prefix. Defaults to empty string
789
+ * @param suffix? Optional coin suffix. Defaults to coin name.
790
+ * @param isToken? Whether or not this account coin is a token of another coin
791
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
792
+ * @param primaryKeyCurve The elliptic curve for this chain/token
793
+ */
794
+ export declare function tofcSuiToken(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>;
795
+ /**
796
+ * Factory function for ofc tempo token instances.
797
+ *
798
+ * @param id uuid v4
799
+ * @param name unique identifier of the coin
800
+ * @param fullName Complete human-readable name of the coin
801
+ * @param network Network object for this coin
802
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
803
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
804
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
805
+ * @param prefix? Optional coin prefix. Defaults to empty string
806
+ * @param suffix? Optional coin suffix. Defaults to coin name.
807
+ * @param isToken? Whether or not this account coin is a token of another coin
808
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
809
+ * @param primaryKeyCurve The elliptic curve for this chain/token
810
+ */
811
+ export declare function ofcTempoToken(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>;
812
+ /**
813
+ * Factory function for testnet ofc tempo token instances.
814
+ *
815
+ * @param id uuid v4
816
+ * @param name unique identifier of the coin
817
+ * @param fullName Complete human-readable name of the coin
818
+ * @param network Network object for this coin
819
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
820
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
821
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
822
+ * @param prefix? Optional coin prefix. Defaults to empty string
823
+ * @param suffix? Optional coin suffix. Defaults to coin name.
824
+ * @param isToken? Whether or not this account coin is a token of another coin
825
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
826
+ * @param primaryKeyCurve The elliptic curve for this chain/token
827
+ */
828
+ export declare function tofcTempoToken(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>;
829
+ /**
830
+ * Factory function for ofc ada token instances.
831
+ *
832
+ * @param id uuid v4
833
+ * @param name unique identifier of the coin
834
+ * @param fullName Complete human-readable name of the coin
835
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
836
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
837
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
838
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
839
+ * @param prefix? Optional coin prefix. Defaults to empty string
840
+ * @param suffix? Optional coin suffix. Defaults to coin name.
841
+ * @param isToken? Whether or not this account coin is a token of another coin
842
+ * @param primaryKeyCurve The elliptic curve for this chain/token
843
+ */
844
+ export declare function ofcAdaToken(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>;
845
+ /**
846
+ * Factory function for testnet ofc ada token instances.
847
+ *
848
+ * @param id uuid v4
849
+ * @param name unique identifier of the coin
850
+ * @param fullName Complete human-readable name of the coin
851
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
852
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
853
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
854
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
855
+ * @param prefix? Optional coin prefix. Defaults to empty string
856
+ * @param suffix? Optional coin suffix. Defaults to coin name.
857
+ * @param isToken? Whether or not this account coin is a token of another coin
858
+ * @param primaryKeyCurve The elliptic curve for this chain/token
859
+ */
860
+ export declare function tofcAdaToken(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>;
201
861
  //# sourceMappingURL=ofc.d.ts.map