@bitgo-beta/statics 7.0.1-beta.21 → 7.0.1-beta.211
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 +267 -0
- package/dist/resources/dot/westend.d.ts +1 -1
- package/dist/resources/dot/westend.d.ts.map +1 -1
- package/dist/resources/dot/westend.js +2 -2
- package/dist/src/account.d.ts +134 -33
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +230 -51
- package/dist/src/ada.d.ts +3 -1
- package/dist/src/ada.d.ts.map +1 -1
- package/dist/src/ada.js +6 -2
- package/dist/src/avaxp.d.ts +3 -1
- package/dist/src/avaxp.d.ts.map +1 -1
- package/dist/src/avaxp.js +10 -3
- package/dist/src/base.d.ts +305 -8
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +349 -10
- package/dist/src/coins.d.ts +1 -0
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +1379 -975
- package/dist/src/constants.d.ts +2 -0
- package/dist/src/constants.d.ts.map +1 -0
- package/dist/src/constants.js +5 -0
- package/dist/src/errors.d.ts +6 -0
- package/dist/src/errors.d.ts.map +1 -1
- package/dist/src/errors.js +16 -2
- package/dist/src/index.d.ts +1 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +3 -2
- package/dist/src/map.d.ts +1 -0
- package/dist/src/map.d.ts.map +1 -1
- package/dist/src/map.js +8 -3
- package/dist/src/networks.d.ts +32 -14
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +56 -33
- package/dist/src/ofc.d.ts +113 -5
- package/dist/src/ofc.d.ts.map +1 -1
- package/dist/src/ofc.js +229 -6
- package/dist/src/tokenConfig.d.ts +18 -0
- package/dist/src/tokenConfig.d.ts.map +1 -1
- package/dist/src/tokenConfig.js +43 -2
- package/dist/src/utxo.d.ts +5 -2
- package/dist/src/utxo.d.ts.map +1 -1
- package/dist/src/utxo.js +6 -2
- package/dist/tsconfig.tsbuildinfo +539 -452
- package/package.json +2 -2
- package/resources/dot/westend.ts +1 -1
package/dist/src/account.d.ts
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
import { BaseCoin, CoinFeature, KeyCurve, UnderlyingAsset } from './base';
|
|
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;
|
|
7
8
|
network: AccountNetwork;
|
|
8
9
|
asset: UnderlyingAsset;
|
|
10
|
+
baseUnit: BaseUnit;
|
|
9
11
|
features: CoinFeature[];
|
|
10
12
|
decimalPlaces: number;
|
|
11
13
|
isToken: boolean;
|
|
@@ -53,6 +55,11 @@ export interface AdaCoinConstructorOptions extends AccountConstructorOptions {
|
|
|
53
55
|
policyId: string;
|
|
54
56
|
assetName: string;
|
|
55
57
|
}
|
|
58
|
+
export interface XrpCoinConstructorOptions extends AccountConstructorOptions {
|
|
59
|
+
issuerAddress: string;
|
|
60
|
+
currencyCode: string;
|
|
61
|
+
domain: string;
|
|
62
|
+
}
|
|
56
63
|
declare type FiatCoinName = `fiat${string}` | `tfiat${string}`;
|
|
57
64
|
export interface FiatCoinConstructorOptions extends AccountConstructorOptions {
|
|
58
65
|
name: FiatCoinName;
|
|
@@ -204,6 +211,18 @@ export declare class AvaxERC20Token extends ContractAddressDefinedToken {
|
|
|
204
211
|
export declare class PolygonERC20Token extends ContractAddressDefinedToken {
|
|
205
212
|
constructor(options: Erc20ConstructorOptions);
|
|
206
213
|
}
|
|
214
|
+
/**
|
|
215
|
+
* The Xrp network supports tokens
|
|
216
|
+
* Xrp tokens are identified by their issuer address
|
|
217
|
+
* Naming format is similar to XLM
|
|
218
|
+
* <network>:<token>-<issuer>
|
|
219
|
+
*/
|
|
220
|
+
export declare class XrpCoin extends AccountCoinToken {
|
|
221
|
+
issuerAddress: string;
|
|
222
|
+
currencyCode: string;
|
|
223
|
+
domain: string;
|
|
224
|
+
constructor(options: XrpCoinConstructorOptions);
|
|
225
|
+
}
|
|
207
226
|
/**
|
|
208
227
|
* Fiat currencies, such as USD, EUR, or YEN.
|
|
209
228
|
*/
|
|
@@ -217,6 +236,7 @@ export declare class FiatCoin extends BaseCoin {
|
|
|
217
236
|
/**
|
|
218
237
|
* Factory function for account coin instances.
|
|
219
238
|
*
|
|
239
|
+
* @param id uuid v4
|
|
220
240
|
* @param name unique identifier of the coin
|
|
221
241
|
* @param fullName Complete human-readable name of the coin
|
|
222
242
|
* @param network Network object for this coin
|
|
@@ -228,10 +248,11 @@ export declare class FiatCoin extends BaseCoin {
|
|
|
228
248
|
* @param suffix? Optional coin suffix. Defaults to coin name.
|
|
229
249
|
* @param isToken? Whether or not this account coin is a token of another coin
|
|
230
250
|
*/
|
|
231
|
-
export declare function account(name: string, fullName: string, network: AccountNetwork, decimalPlaces: number, asset: UnderlyingAsset, features?: CoinFeature[], primaryKeyCurve?: KeyCurve, prefix?: string, suffix?: string, isToken?: boolean): Readonly<AccountCoin>;
|
|
251
|
+
export declare function account(id: string, name: string, fullName: string, network: AccountNetwork, decimalPlaces: number, asset: UnderlyingAsset, baseUnit: BaseUnit, features?: CoinFeature[], primaryKeyCurve?: KeyCurve, prefix?: string, suffix?: string, isToken?: boolean): Readonly<AccountCoin>;
|
|
232
252
|
/**
|
|
233
253
|
* Factory function for erc20 token instances.
|
|
234
254
|
*
|
|
255
|
+
* @param id uuid v4
|
|
235
256
|
* @param name unique identifier of the token
|
|
236
257
|
* @param fullName Complete human-readable name of the token
|
|
237
258
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -243,10 +264,11 @@ export declare function account(name: string, fullName: string, network: Account
|
|
|
243
264
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
244
265
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
245
266
|
*/
|
|
246
|
-
export declare function erc20(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc20Coin>;
|
|
267
|
+
export declare function erc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc20Coin>;
|
|
247
268
|
/**
|
|
248
269
|
* Factory function for testnet erc20 token instances.
|
|
249
270
|
*
|
|
271
|
+
* @param id uuid v4
|
|
250
272
|
* @param name unique identifier of the token
|
|
251
273
|
* @param fullName Complete human-readable name of the token
|
|
252
274
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -257,10 +279,11 @@ export declare function erc20(name: string, fullName: string, decimalPlaces: num
|
|
|
257
279
|
* @param network? Optional token network. Defaults to the Kovan test network.
|
|
258
280
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
259
281
|
*/
|
|
260
|
-
export declare function terc20(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork): Readonly<Erc20Coin>;
|
|
282
|
+
export declare function terc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork): Readonly<Erc20Coin>;
|
|
261
283
|
/**
|
|
262
284
|
* Factory function for erc721 token instances.
|
|
263
285
|
*
|
|
286
|
+
* @param id uuid v4
|
|
264
287
|
* @param name unique identifier of the token
|
|
265
288
|
* @param fullName Complete human-readable name of the token
|
|
266
289
|
* @param contractAddress Contract address of this token
|
|
@@ -271,10 +294,11 @@ export declare function terc20(name: string, fullName: string, decimalPlaces: nu
|
|
|
271
294
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
272
295
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
273
296
|
*/
|
|
274
|
-
export declare function erc721(name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc721Coin>;
|
|
297
|
+
export declare function erc721(id: string, name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc721Coin>;
|
|
275
298
|
/**
|
|
276
299
|
* Factory function for testnet erc721 token instances.
|
|
277
300
|
*
|
|
301
|
+
* @param id uuid v4
|
|
278
302
|
* @param name unique identifier of the token
|
|
279
303
|
* @param fullName Complete human-readable name of the token
|
|
280
304
|
* @param contractAddress Contract address of this token
|
|
@@ -284,10 +308,26 @@ export declare function erc721(name: string, fullName: string, contractAddress:
|
|
|
284
308
|
* @param network? Optional token network. Defaults to Goerli test network.
|
|
285
309
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
286
310
|
*/
|
|
287
|
-
export declare function terc721(name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc721Coin>;
|
|
311
|
+
export declare function terc721(id: string, name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc721Coin>;
|
|
312
|
+
/**
|
|
313
|
+
* Factory function for nonstandard token instances.
|
|
314
|
+
*
|
|
315
|
+
* @param id uuid v4
|
|
316
|
+
* @param name unique identifier of the token
|
|
317
|
+
* @param fullName Complete human-readable name of the token
|
|
318
|
+
* @param contractAddress Contract address of this token
|
|
319
|
+
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
320
|
+
* @param prefix? Optional token prefix. Defaults to empty string
|
|
321
|
+
* @param suffix? Optional token suffix. Defaults to token name.
|
|
322
|
+
* @param network? Optional token network. Defaults to Ethereum main network.
|
|
323
|
+
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
324
|
+
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
325
|
+
*/
|
|
326
|
+
export declare function nonstandardToken(id: string, name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<ContractAddressDefinedToken>;
|
|
288
327
|
/**
|
|
289
328
|
* Factory function for erc1155 token instances.
|
|
290
329
|
*
|
|
330
|
+
* @param id uuid v4
|
|
291
331
|
* @param name unique identifier of the token
|
|
292
332
|
* @param fullName Complete human-readable name of the token
|
|
293
333
|
* @param contractAddress Contract address of this token
|
|
@@ -298,10 +338,11 @@ export declare function terc721(name: string, fullName: string, contractAddress:
|
|
|
298
338
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
299
339
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
300
340
|
*/
|
|
301
|
-
export declare function erc1155(name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc1155Coin>;
|
|
341
|
+
export declare function erc1155(id: string, name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc1155Coin>;
|
|
302
342
|
/**
|
|
303
343
|
* Factory function for testnet erc1155 token instances.
|
|
304
344
|
*
|
|
345
|
+
* @param id uuid v4
|
|
305
346
|
* @param name unique identifier of the token
|
|
306
347
|
* @param fullName Complete human-readable name of the token
|
|
307
348
|
* @param contractAddress Contract address of this token
|
|
@@ -311,10 +352,11 @@ export declare function erc1155(name: string, fullName: string, contractAddress:
|
|
|
311
352
|
* @param network? Optional token network. Defaults to Goerli test network.
|
|
312
353
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
313
354
|
*/
|
|
314
|
-
export declare function terc1155(name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc1155Coin>;
|
|
355
|
+
export declare function terc1155(id: string, name: string, fullName: string, contractAddress: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<Erc1155Coin>;
|
|
315
356
|
/**
|
|
316
357
|
* Factory function for ERC20-compatible account coin instances.
|
|
317
358
|
*
|
|
359
|
+
* @param id uuid v4
|
|
318
360
|
* @param name unique identifier of the token
|
|
319
361
|
* @param fullName Complete human-readable name of the token
|
|
320
362
|
* @param network Network object for this coin
|
|
@@ -326,10 +368,11 @@ export declare function terc1155(name: string, fullName: string, contractAddress
|
|
|
326
368
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
327
369
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
328
370
|
*/
|
|
329
|
-
export declare function erc20CompatibleAccountCoin(name: string, fullName: string, network: EthereumNetwork, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, primaryKeyCurve?: KeyCurve): Readonly<Erc20CompatibleAccountCoin>;
|
|
371
|
+
export declare function erc20CompatibleAccountCoin(id: string, name: string, fullName: string, network: EthereumNetwork, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, baseUnit: BaseUnit, features?: CoinFeature[], prefix?: string, suffix?: string, primaryKeyCurve?: KeyCurve): Readonly<Erc20CompatibleAccountCoin>;
|
|
330
372
|
/**
|
|
331
373
|
* Factory function for celo token instances.
|
|
332
374
|
*
|
|
375
|
+
* @param id uuid v4
|
|
333
376
|
* @param name unique identifier of the token
|
|
334
377
|
* @param fullName Complete human-readable name of the token
|
|
335
378
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -341,10 +384,11 @@ export declare function erc20CompatibleAccountCoin(name: string, fullName: strin
|
|
|
341
384
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
342
385
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
343
386
|
*/
|
|
344
|
-
export declare function celoToken(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<CeloCoin>;
|
|
387
|
+
export declare function celoToken(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<CeloCoin>;
|
|
345
388
|
/**
|
|
346
389
|
* Factory function for testnet celo token instances.
|
|
347
390
|
*
|
|
391
|
+
* @param id uuid v4
|
|
348
392
|
* @param name unique identifier of the token
|
|
349
393
|
* @param fullName Complete human-readable name of the token
|
|
350
394
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -355,10 +399,11 @@ export declare function celoToken(name: string, fullName: string, decimalPlaces:
|
|
|
355
399
|
* @param network? Optional token network. Defaults to the testnet CELO network.
|
|
356
400
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
357
401
|
*/
|
|
358
|
-
export declare function tceloToken(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork): Readonly<CeloCoin>;
|
|
402
|
+
export declare function tceloToken(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork): Readonly<CeloCoin>;
|
|
359
403
|
/**
|
|
360
404
|
* Factory function for celo token instances.
|
|
361
405
|
*
|
|
406
|
+
* @param id uuid v4
|
|
362
407
|
* @param name unique identifier of the token
|
|
363
408
|
* @param fullName Complete human-readable name of the token
|
|
364
409
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -370,10 +415,11 @@ export declare function tceloToken(name: string, fullName: string, decimalPlaces
|
|
|
370
415
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
371
416
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
372
417
|
*/
|
|
373
|
-
export declare function bscToken(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<BscCoin>;
|
|
418
|
+
export declare function bscToken(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork, primaryKeyCurve?: KeyCurve): Readonly<BscCoin>;
|
|
374
419
|
/**
|
|
375
420
|
* Factory function for testnet bsc token instances.
|
|
376
421
|
*
|
|
422
|
+
* @param id uuid v4
|
|
377
423
|
* @param name unique identifier of the token
|
|
378
424
|
* @param fullName Complete human-readable name of the token
|
|
379
425
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -384,10 +430,11 @@ export declare function bscToken(name: string, fullName: string, decimalPlaces:
|
|
|
384
430
|
* @param network? Optional token network. Defaults to the testnet BSC network.
|
|
385
431
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
386
432
|
*/
|
|
387
|
-
export declare function tbscToken(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork): Readonly<BscCoin>;
|
|
433
|
+
export declare function tbscToken(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: EthereumNetwork): Readonly<BscCoin>;
|
|
388
434
|
/**
|
|
389
435
|
* Factory function for Stellar token instances.
|
|
390
436
|
*
|
|
437
|
+
* @param id uuid v4
|
|
391
438
|
* @param name unique identifier of the token
|
|
392
439
|
* @param fullName Complete human-readable name of the token
|
|
393
440
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -400,10 +447,11 @@ export declare function tbscToken(name: string, fullName: string, decimalPlaces:
|
|
|
400
447
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
401
448
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
402
449
|
*/
|
|
403
|
-
export declare function stellarToken(name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, domain?: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<StellarCoin>;
|
|
450
|
+
export declare function stellarToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, domain?: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<StellarCoin>;
|
|
404
451
|
/**
|
|
405
452
|
* Factory function for testnet Stellar token instances.
|
|
406
453
|
*
|
|
454
|
+
* @param id uuid v4
|
|
407
455
|
* @param name unique identifier of the token
|
|
408
456
|
* @param fullName Complete human-readable name of the token
|
|
409
457
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -415,10 +463,11 @@ export declare function stellarToken(name: string, fullName: string, decimalPlac
|
|
|
415
463
|
* @param network? Optional token network. Defaults to Stellar testnet.
|
|
416
464
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
417
465
|
*/
|
|
418
|
-
export declare function tstellarToken(name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, domain?: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<StellarCoin>;
|
|
466
|
+
export declare function tstellarToken(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, domain?: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<StellarCoin>;
|
|
419
467
|
/**
|
|
420
468
|
* Factory function for tron token instances.
|
|
421
469
|
*
|
|
470
|
+
* @param id uuid v4
|
|
422
471
|
* @param name unique identifier of the token
|
|
423
472
|
* @param fullName Complete human-readable name of the token
|
|
424
473
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -430,10 +479,11 @@ export declare function tstellarToken(name: string, fullName: string, decimalPla
|
|
|
430
479
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
431
480
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
432
481
|
*/
|
|
433
|
-
export declare function tronToken(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: TronNetwork, primaryKeyCurve?: KeyCurve): Readonly<TronErc20Coin>;
|
|
482
|
+
export declare function tronToken(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: TronNetwork, primaryKeyCurve?: KeyCurve): Readonly<TronErc20Coin>;
|
|
434
483
|
/**
|
|
435
484
|
* Factory function for testnet tron token instances.
|
|
436
485
|
*
|
|
486
|
+
* @param id uuid v4
|
|
437
487
|
* @param name unique identifier of the token
|
|
438
488
|
* @param fullName Complete human-readable name of the token
|
|
439
489
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -445,10 +495,11 @@ export declare function tronToken(name: string, fullName: string, decimalPlaces:
|
|
|
445
495
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
446
496
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
447
497
|
*/
|
|
448
|
-
export declare function ttronToken(name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: TronNetwork, primaryKeyCurve?: KeyCurve): Readonly<TronErc20Coin>;
|
|
498
|
+
export declare function ttronToken(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: TronNetwork, primaryKeyCurve?: KeyCurve): Readonly<TronErc20Coin>;
|
|
449
499
|
/**
|
|
450
500
|
* Factory function for Hedera coin instances
|
|
451
501
|
*
|
|
502
|
+
* @param id uuid v4
|
|
452
503
|
* @param name unique identifier of the coin
|
|
453
504
|
* @param fullName Complete human-readable name of the token
|
|
454
505
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -460,10 +511,11 @@ export declare function ttronToken(name: string, fullName: string, decimalPlaces
|
|
|
460
511
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
461
512
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
462
513
|
*/
|
|
463
|
-
export declare function hederaCoin(name: string, fullName: string, network: AccountNetwork, decimalPlaces: number, asset: UnderlyingAsset, nodeAccountId?: string, features?: CoinFeature[], prefix?: string, suffix?: string, primaryKeyCurve?: KeyCurve): Readonly<HederaCoin>;
|
|
514
|
+
export declare function hederaCoin(id: string, name: string, fullName: string, network: AccountNetwork, decimalPlaces: number, asset: UnderlyingAsset, nodeAccountId?: string, features?: CoinFeature[], prefix?: string, suffix?: string, primaryKeyCurve?: KeyCurve): Readonly<HederaCoin>;
|
|
464
515
|
/**
|
|
465
516
|
* Factory function for Hedera token instances
|
|
466
517
|
*
|
|
518
|
+
* @param id uuid v4
|
|
467
519
|
* @param name unique identifier of the coin
|
|
468
520
|
* @param fullName Complete human-readable name of the token
|
|
469
521
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -476,11 +528,13 @@ export declare function hederaCoin(name: string, fullName: string, network: Acco
|
|
|
476
528
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
477
529
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
478
530
|
*/
|
|
479
|
-
export declare function hederaToken(name: string, fullName: string, network: AccountNetwork, decimalPlaces: number, asset: UnderlyingAsset, nodeAccountId: string | undefined, tokenId: string, features?: CoinFeature[], prefix?: string, suffix?: string, primaryKeyCurve?: KeyCurve): Readonly<HederaToken>;
|
|
531
|
+
export declare function hederaToken(id: string, name: string, fullName: string, network: AccountNetwork, decimalPlaces: number, asset: UnderlyingAsset, nodeAccountId: string | undefined, tokenId: string, features?: CoinFeature[], prefix?: string, suffix?: string, primaryKeyCurve?: KeyCurve): Readonly<HederaToken>;
|
|
480
532
|
/**
|
|
481
533
|
* Factory function for ALGO token instances.
|
|
482
534
|
*
|
|
535
|
+
* @param id uuid v4
|
|
483
536
|
* @param name unique identifier of the token
|
|
537
|
+
|
|
484
538
|
* @param alias (optional) alternative identifier of the token
|
|
485
539
|
* @param fullName Complete human-readable name of the token
|
|
486
540
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -493,10 +547,11 @@ export declare function hederaToken(name: string, fullName: string, network: Acc
|
|
|
493
547
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
494
548
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
495
549
|
*/
|
|
496
|
-
export declare function algoToken(name: string, alias: string | undefined, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, tokenURL?: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<AlgoCoin>;
|
|
550
|
+
export declare function algoToken(id: string, name: string, alias: string | undefined, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, tokenURL?: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<AlgoCoin>;
|
|
497
551
|
/**
|
|
498
552
|
* Factory function for testnet ALGO token instances.
|
|
499
553
|
*
|
|
554
|
+
* @param id uuid v4
|
|
500
555
|
* @param name unique identifier of the token
|
|
501
556
|
* @param alias (optional) alternative identifier of the token
|
|
502
557
|
* @param fullName Complete human-readable name of the token
|
|
@@ -509,10 +564,11 @@ export declare function algoToken(name: string, alias: string | undefined, fullN
|
|
|
509
564
|
* @param network? Optional token network. Defaults to Algo testnet.
|
|
510
565
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
511
566
|
*/
|
|
512
|
-
export declare function talgoToken(name: string, alias: string | undefined, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, tokenURL?: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<AlgoCoin>;
|
|
567
|
+
export declare function talgoToken(id: string, name: string, alias: string | undefined, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, tokenURL?: string, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<AlgoCoin>;
|
|
513
568
|
/**
|
|
514
569
|
* Factory function for eos token instances.
|
|
515
570
|
*
|
|
571
|
+
* @param id uuid v4
|
|
516
572
|
* @param name unique identifier of the token
|
|
517
573
|
* @param fullName Complete human-readable name of the token
|
|
518
574
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -524,10 +580,11 @@ export declare function talgoToken(name: string, alias: string | undefined, full
|
|
|
524
580
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
525
581
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
526
582
|
*/
|
|
527
|
-
export declare function eosToken(name: string, fullName: string, decimalPlaces: number, contractName: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<EosCoin>;
|
|
583
|
+
export declare function eosToken(id: string, name: string, fullName: string, decimalPlaces: number, contractName: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<EosCoin>;
|
|
528
584
|
/**
|
|
529
585
|
* Factory function for testnet eos token instances.
|
|
530
586
|
*
|
|
587
|
+
* @param id uuid v4
|
|
531
588
|
* @param name unique identifier of the token
|
|
532
589
|
* @param fullName Complete human-readable name of the token
|
|
533
590
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -538,10 +595,11 @@ export declare function eosToken(name: string, fullName: string, decimalPlaces:
|
|
|
538
595
|
* @param network? Optional token network. Defaults to the testnet EOS network.
|
|
539
596
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
540
597
|
*/
|
|
541
|
-
export declare function teosToken(name: string, fullName: string, decimalPlaces: number, contractName: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<EosCoin>;
|
|
598
|
+
export declare function teosToken(id: string, name: string, fullName: string, decimalPlaces: number, contractName: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<EosCoin>;
|
|
542
599
|
/**
|
|
543
600
|
* Factory function for sol token instances.
|
|
544
601
|
*
|
|
602
|
+
* @param id uuid v4
|
|
545
603
|
* @param name unique identifier of the token
|
|
546
604
|
* @param fullName Complete human-readable name of the token
|
|
547
605
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -553,10 +611,11 @@ export declare function teosToken(name: string, fullName: string, decimalPlaces:
|
|
|
553
611
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
|
|
554
612
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
555
613
|
*/
|
|
556
|
-
export declare function solToken(name: string, fullName: string, decimalPlaces: number, tokenAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<SolCoin>;
|
|
614
|
+
export declare function solToken(id: string, name: string, fullName: string, decimalPlaces: number, tokenAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<SolCoin>;
|
|
557
615
|
/**
|
|
558
616
|
* Factory function for testnet solana token instances.
|
|
559
617
|
*
|
|
618
|
+
* @param id uuid v4
|
|
560
619
|
* @param name unique identifier of the token
|
|
561
620
|
* @param fullName Complete human-readable name of the token
|
|
562
621
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -567,10 +626,11 @@ export declare function solToken(name: string, fullName: string, decimalPlaces:
|
|
|
567
626
|
* @param network? Optional token network. Defaults to the testnet Solana network.
|
|
568
627
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
|
|
569
628
|
*/
|
|
570
|
-
export declare function tsolToken(name: string, fullName: string, decimalPlaces: number, tokenAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<SolCoin>;
|
|
629
|
+
export declare function tsolToken(id: string, name: string, fullName: string, decimalPlaces: number, tokenAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<SolCoin>;
|
|
571
630
|
/**
|
|
572
631
|
* Factory function for ada token instances.
|
|
573
632
|
*
|
|
633
|
+
* @param id uuid v4
|
|
574
634
|
* @param name unique identifier of the token
|
|
575
635
|
* @param fullName Complete human-readable name of the token
|
|
576
636
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -582,10 +642,11 @@ export declare function tsolToken(name: string, fullName: string, decimalPlaces:
|
|
|
582
642
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
|
|
583
643
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
584
644
|
*/
|
|
585
|
-
export declare function adaToken(name: string, fullName: string, decimalPlaces: number, policyId: string, assetName: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<AdaCoin>;
|
|
645
|
+
export declare function adaToken(id: string, name: string, fullName: string, decimalPlaces: number, policyId: string, assetName: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<AdaCoin>;
|
|
586
646
|
/**
|
|
587
647
|
* Factory function for testnet cardano token instances.
|
|
588
648
|
*
|
|
649
|
+
* @param id uuid v4
|
|
589
650
|
* @param name unique identifier of the token
|
|
590
651
|
* @param fullName Complete human-readable name of the token
|
|
591
652
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -596,10 +657,11 @@ export declare function adaToken(name: string, fullName: string, decimalPlaces:
|
|
|
596
657
|
* @param network? Optional token network. Defaults to the testnet Cardano network.
|
|
597
658
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES and REQUIRES_RESERVE defined in `AccountCoin`
|
|
598
659
|
*/
|
|
599
|
-
export declare function tadaToken(name: string, fullName: string, decimalPlaces: number, policyId: string, assetName: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<AdaCoin>;
|
|
660
|
+
export declare function tadaToken(id: string, name: string, fullName: string, decimalPlaces: number, policyId: string, assetName: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<AdaCoin>;
|
|
600
661
|
/**
|
|
601
662
|
* Factory function for avaxErc20 token instances.
|
|
602
663
|
*
|
|
664
|
+
* @param id uuid v4
|
|
603
665
|
* @param name unique identifier of the token
|
|
604
666
|
* @param fullName Complete human-readable name of the token
|
|
605
667
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -611,10 +673,11 @@ export declare function tadaToken(name: string, fullName: string, decimalPlaces:
|
|
|
611
673
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
612
674
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
613
675
|
*/
|
|
614
|
-
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>;
|
|
676
|
+
export declare function avaxErc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<AvaxERC20Token>;
|
|
615
677
|
/**
|
|
616
678
|
* Factory function for testnet avaxErc20 token instances.
|
|
617
679
|
*
|
|
680
|
+
* @param id uuid v4
|
|
618
681
|
* @param name unique identifier of the token
|
|
619
682
|
* @param fullName Complete human-readable name of the token
|
|
620
683
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -626,10 +689,11 @@ export declare function avaxErc20(name: string, fullName: string, decimalPlaces:
|
|
|
626
689
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
627
690
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
628
691
|
*/
|
|
629
|
-
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>;
|
|
692
|
+
export declare function tavaxErc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<AvaxERC20Token>;
|
|
630
693
|
/**
|
|
631
694
|
* Factory function for polygonErc20 token instances.
|
|
632
695
|
*
|
|
696
|
+
* @param id uuid v4
|
|
633
697
|
* @param name unique identifier of the token
|
|
634
698
|
* @param fullName Complete human-readable name of the token
|
|
635
699
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -641,10 +705,11 @@ export declare function tavaxErc20(name: string, fullName: string, decimalPlaces
|
|
|
641
705
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
642
706
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
643
707
|
*/
|
|
644
|
-
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>;
|
|
708
|
+
export declare function polygonErc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<PolygonERC20Token>;
|
|
645
709
|
/**
|
|
646
710
|
* Factory function for Mumbai testnet polygonErc20 token instances.
|
|
647
711
|
*
|
|
712
|
+
* @param id uuid v4
|
|
648
713
|
* @param name unique identifier of the token
|
|
649
714
|
* @param fullName Complete human-readable name of the token
|
|
650
715
|
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
@@ -656,11 +721,47 @@ export declare function polygonErc20(name: string, fullName: string, decimalPlac
|
|
|
656
721
|
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
657
722
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
658
723
|
*/
|
|
659
|
-
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>;
|
|
724
|
+
export declare function tpolygonErc20(id: string, name: string, fullName: string, decimalPlaces: number, contractAddress: string, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<PolygonERC20Token>;
|
|
725
|
+
/**
|
|
726
|
+
* Factory function for xrp token instances.
|
|
727
|
+
*
|
|
728
|
+
* @param id uuid v4
|
|
729
|
+
* @param name unique identifier of the token
|
|
730
|
+
* @param fullName Complete human-readable name of the token
|
|
731
|
+
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
732
|
+
* @param issuerAddress: The address of the issuer of the token,
|
|
733
|
+
* @param currencyCode The token symbol. Example: USD, BTC, ETH, etc.
|
|
734
|
+
* @param domain? the domain of the issuer of the token,
|
|
735
|
+
* @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
|
|
736
|
+
* @param prefix? Optional token prefix. Defaults to empty string
|
|
737
|
+
* @param suffix? Optional token suffix. Defaults to token name.
|
|
738
|
+
* @param network? Optional token network. Defaults to Cardano main network.
|
|
739
|
+
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
740
|
+
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
741
|
+
*/
|
|
742
|
+
export declare function xrpToken(id: string, name: string, fullName: string, decimalPlaces: number, issuerAddress: string, currencyCode: string, domain: string | undefined, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork, primaryKeyCurve?: KeyCurve): Readonly<XrpCoin>;
|
|
743
|
+
/**
|
|
744
|
+
* Factory function for testnet cardano token instances.
|
|
745
|
+
*
|
|
746
|
+
* @param id uuid v4
|
|
747
|
+
* @param name unique identifier of the token
|
|
748
|
+
* @param fullName Complete human-readable name of the token
|
|
749
|
+
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
750
|
+
* @param issuerAddress: The address of the issuer of the token,
|
|
751
|
+
* @param currencyCode The token symbol. Example: USD, BTC, ETH, etc.
|
|
752
|
+
* @param domain? the domain of the issuer of the token,
|
|
753
|
+
* @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
|
|
754
|
+
* @param prefix? Optional token prefix. Defaults to empty string
|
|
755
|
+
* @param suffix? Optional token suffix. Defaults to token name.
|
|
756
|
+
* @param network? Optional token network. Defaults to the testnet Cardano network.
|
|
757
|
+
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
758
|
+
*/
|
|
759
|
+
export declare function txrpToken(id: string, name: string, fullName: string, decimalPlaces: number, issuerAddress: string, currencyCode: string, domain: string | undefined, asset: UnderlyingAsset, features?: CoinFeature[], prefix?: string, suffix?: string, network?: AccountNetwork): Readonly<XrpCoin>;
|
|
660
760
|
/**
|
|
661
761
|
* Factory function for fiat coin instances.
|
|
662
762
|
*
|
|
663
|
-
* @param
|
|
763
|
+
* @param id uuid v4
|
|
764
|
+
* @param name unique identifier of the coin, should start with 'fiat' or 'tfiat' followed by the 3-char ISO-4217 alphabetical code
|
|
664
765
|
* @param fullName Complete human-readable name of the coin
|
|
665
766
|
* @param network Network object for this coin
|
|
666
767
|
* @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
|
|
@@ -671,6 +772,6 @@ export declare function tpolygonErc20(name: string, fullName: string, decimalPla
|
|
|
671
772
|
* @param suffix? Optional coin suffix. Defaults to coin name.
|
|
672
773
|
* @param isToken? Whether or not this coin is a token of another coin
|
|
673
774
|
*/
|
|
674
|
-
export declare function fiat(name: FiatCoinName, fullName: string, network: BaseNetwork, decimalPlaces: number, asset: UnderlyingAsset, features?: CoinFeature[], primaryKeyCurve?: KeyCurve, prefix?: string, suffix?: string, isToken?: boolean): Readonly<FiatCoin>;
|
|
775
|
+
export declare function fiat(id: string, name: FiatCoinName, fullName: string, network: BaseNetwork, decimalPlaces: number, asset: UnderlyingAsset, features?: CoinFeature[], primaryKeyCurve?: KeyCurve, prefix?: string, suffix?: string, isToken?: boolean): Readonly<FiatCoin>;
|
|
675
776
|
export {};
|
|
676
777
|
//# sourceMappingURL=account.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../src/account.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../src/account.ts"],"names":[],"mappings":"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"}
|