@bitgo/statics 6.17.0 → 6.18.0-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -28
- package/dist/src/account.d.ts +54 -24
- package/dist/src/account.d.ts.map +1 -1
- package/dist/src/account.js +71 -41
- package/dist/src/avaxp.d.ts +38 -0
- package/dist/src/avaxp.d.ts.map +1 -0
- package/dist/src/avaxp.js +51 -0
- package/dist/src/base.d.ts +49 -11
- package/dist/src/base.d.ts.map +1 -1
- package/dist/src/base.js +53 -9
- package/dist/src/coins.d.ts.map +1 -1
- package/dist/src/coins.js +75 -21
- package/dist/src/index.d.ts +1 -1
- package/dist/src/index.d.ts.map +1 -1
- package/dist/src/index.js +2 -3
- package/dist/src/networks.d.ts +93 -6
- package/dist/src/networks.d.ts.map +1 -1
- package/dist/src/networks.js +87 -9
- package/dist/tsconfig.tsbuildinfo +707 -42
- package/package.json +6 -13
package/CHANGELOG.md
CHANGED
|
@@ -5,56 +5,32 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
|
|
|
5
5
|
|
|
6
6
|
# [6.17.0-rc.22](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.17.0-rc.21...@bitgo/statics@6.17.0-rc.22) (2022-04-19)
|
|
7
7
|
|
|
8
|
-
|
|
9
8
|
### Features
|
|
10
9
|
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
10
|
+
- **statics:** add april tokens ERC20 and algo token ([a0cb164](https://github.com/BitGo/BitGoJS/commit/a0cb164d01872abc47925df97ddf43c35b58c7f1))
|
|
16
11
|
|
|
17
12
|
# [6.17.0-rc.21](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.17.0-rc.20...@bitgo/statics@6.17.0-rc.21) (2022-04-19)
|
|
18
13
|
|
|
19
14
|
**Note:** Version bump only for package @bitgo/statics
|
|
20
15
|
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
16
|
# [6.17.0-rc.19](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.17.0-rc.18...@bitgo/statics@6.17.0-rc.19) (2022-04-12)
|
|
26
17
|
|
|
27
18
|
**Note:** Version bump only for package @bitgo/statics
|
|
28
19
|
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
20
|
# [6.17.0-rc.18](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.17.0-rc.15...@bitgo/statics@6.17.0-rc.18) (2022-04-08)
|
|
34
21
|
|
|
35
|
-
|
|
36
22
|
### Features
|
|
37
23
|
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
24
|
+
- **statics:** update contract nym erc20 token ([84cd360](https://github.com/BitGo/BitGoJS/commit/84cd3609a9c5533635082d22bd42eb96ff1642fc))
|
|
43
25
|
|
|
44
26
|
# [6.17.0-rc.17](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.17.0-rc.15...@bitgo/statics@6.17.0-rc.17) (2022-04-06)
|
|
45
27
|
|
|
46
|
-
|
|
47
28
|
### Features
|
|
48
29
|
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
30
|
+
- **statics:** update contract nym erc20 token ([84cd360](https://github.com/BitGo/BitGoJS/commit/84cd3609a9c5533635082d22bd42eb96ff1642fc))
|
|
54
31
|
|
|
55
32
|
# [6.17.0-rc.16](https://github.com/BitGo/BitGoJS/compare/@bitgo/statics@6.17.0-rc.15...@bitgo/statics@6.17.0-rc.16) (2022-04-05)
|
|
56
33
|
|
|
57
|
-
|
|
58
34
|
### Features
|
|
59
35
|
|
|
60
|
-
|
|
36
|
+
- **statics:** update contract nym erc20 token ([84cd360](https://github.com/BitGo/BitGoJS/commit/84cd3609a9c5533635082d22bd42eb96ff1642fc))
|
package/dist/src/account.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseCoin, CoinFeature, KeyCurve, UnderlyingAsset } from './base';
|
|
1
|
+
import { BaseCoin, CoinFeature, CoinKind, KeyCurve, UnderlyingAsset } from './base';
|
|
2
2
|
import { AccountNetwork, BaseNetwork, EthereumNetwork, TronNetwork } from './networks';
|
|
3
3
|
export interface AccountConstructorOptions {
|
|
4
4
|
fullName: string;
|
|
@@ -36,6 +36,10 @@ export interface StellarCoinConstructorOptions extends AccountConstructorOptions
|
|
|
36
36
|
export interface HederaCoinConstructorOptions extends AccountConstructorOptions {
|
|
37
37
|
nodeAccountId: string;
|
|
38
38
|
}
|
|
39
|
+
export interface HederaTokenConstructorOptions extends AccountConstructorOptions {
|
|
40
|
+
nodeAccountId: string;
|
|
41
|
+
tokenId: string;
|
|
42
|
+
}
|
|
39
43
|
export interface AlgoCoinConstructorOptions extends AccountConstructorOptions {
|
|
40
44
|
tokenURL: string;
|
|
41
45
|
}
|
|
@@ -45,6 +49,11 @@ export interface EosCoinConstructorOptions extends AccountConstructorOptions {
|
|
|
45
49
|
export interface SolCoinConstructorOptions extends AccountConstructorOptions {
|
|
46
50
|
tokenAddress: string;
|
|
47
51
|
}
|
|
52
|
+
declare type FiatCoinName = `fiat${string}` | `tfiat${string}`;
|
|
53
|
+
export interface FiatCoinConstructorOptions extends AccountConstructorOptions {
|
|
54
|
+
name: FiatCoinName;
|
|
55
|
+
kind: CoinKind;
|
|
56
|
+
}
|
|
48
57
|
export interface ContractAddress extends String {
|
|
49
58
|
__contractaddress_phantom__: never;
|
|
50
59
|
}
|
|
@@ -116,11 +125,23 @@ export declare class StellarCoin extends AccountCoinToken {
|
|
|
116
125
|
* The Hedera coin needs a client set with the node account Id.
|
|
117
126
|
* It's an account based coin that needs the node account ID
|
|
118
127
|
* where the transaction will be sent.
|
|
128
|
+
*
|
|
119
129
|
*/
|
|
120
130
|
export declare class HederaCoin extends AccountCoinToken {
|
|
121
131
|
nodeAccountId: string;
|
|
122
132
|
constructor(options: HederaCoinConstructorOptions);
|
|
123
133
|
}
|
|
134
|
+
/**
|
|
135
|
+
* The Hedera network supports tokens.
|
|
136
|
+
* Hedera tokens work similar to native Hedera coin,
|
|
137
|
+
* but the token is determined by the tokenId on the node
|
|
138
|
+
*
|
|
139
|
+
*/
|
|
140
|
+
export declare class HederaToken extends AccountCoinToken {
|
|
141
|
+
nodeAccountId: string;
|
|
142
|
+
tokenId: string;
|
|
143
|
+
constructor(options: HederaTokenConstructorOptions);
|
|
144
|
+
}
|
|
124
145
|
/**
|
|
125
146
|
* The Algo network supports tokens (assets)
|
|
126
147
|
* Algo tokens work similar to native ALGO coin, but the token name is determined by
|
|
@@ -159,12 +180,12 @@ export declare class AvaxERC20Token extends ContractAddressDefinedToken {
|
|
|
159
180
|
constructor(options: Erc20ConstructorOptions);
|
|
160
181
|
}
|
|
161
182
|
/**
|
|
162
|
-
*
|
|
183
|
+
* Fiat currencies, such as USD, EUR, or YEN.
|
|
163
184
|
*/
|
|
164
|
-
export declare class
|
|
185
|
+
export declare class FiatCoin extends BaseCoin {
|
|
165
186
|
static readonly DEFAULT_FEATURES: CoinFeature[];
|
|
166
187
|
readonly network: BaseNetwork;
|
|
167
|
-
constructor(options:
|
|
188
|
+
constructor(options: FiatCoinConstructorOptions);
|
|
168
189
|
protected requiredFeatures(): Set<CoinFeature>;
|
|
169
190
|
protected disallowedFeatures(): Set<CoinFeature>;
|
|
170
191
|
}
|
|
@@ -176,11 +197,11 @@ export declare class FiatToken extends BaseCoin {
|
|
|
176
197
|
* @param network Network object for this coin
|
|
177
198
|
* @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
|
|
178
199
|
* @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
|
|
200
|
+
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
201
|
+
* @param primaryKeyCurve? The elliptic curve for this chain/token
|
|
179
202
|
* @param prefix? Optional coin prefix. Defaults to empty string
|
|
180
203
|
* @param suffix? Optional coin suffix. Defaults to coin name.
|
|
181
204
|
* @param isToken? Whether or not this account coin is a token of another coin
|
|
182
|
-
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
183
|
-
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
184
205
|
*/
|
|
185
206
|
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>;
|
|
186
207
|
/**
|
|
@@ -386,6 +407,22 @@ export declare function ttronToken(name: string, fullName: string, decimalPlaces
|
|
|
386
407
|
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
387
408
|
*/
|
|
388
409
|
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>;
|
|
410
|
+
/**
|
|
411
|
+
* Factory function for Hedera token instances
|
|
412
|
+
*
|
|
413
|
+
* @param name unique identifier of the coin
|
|
414
|
+
* @param fullName Complete human-readable name of the token
|
|
415
|
+
* @param decimalPlaces Number of decimal places this token supports (divisibility exponent)
|
|
416
|
+
* @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
|
|
417
|
+
* @param nodeAccountId node account Id from which the transaction will be sent
|
|
418
|
+
* @param tokenId The unique identifier of this token
|
|
419
|
+
* @param prefix? Optional token prefix. Defaults to empty string
|
|
420
|
+
* @param suffix? Optional token suffix. Defaults to token name.
|
|
421
|
+
* @param network? Optional token network. Defaults to Hedera mainnet.
|
|
422
|
+
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `AccountCoin`
|
|
423
|
+
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
424
|
+
*/
|
|
425
|
+
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>;
|
|
389
426
|
/**
|
|
390
427
|
* Factory function for ALGO token instances.
|
|
391
428
|
*
|
|
@@ -508,27 +545,20 @@ export declare function avaxErc20(name: string, fullName: string, decimalPlaces:
|
|
|
508
545
|
*/
|
|
509
546
|
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>;
|
|
510
547
|
/**
|
|
511
|
-
* Factory function for
|
|
548
|
+
* Factory function for fiat coin instances.
|
|
512
549
|
*
|
|
513
|
-
* @param name unique identifier of the
|
|
514
|
-
* @param fullName Complete human-readable name of the
|
|
515
|
-
* @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
|
|
516
|
-
* @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
|
|
550
|
+
* @param name unique identifier of the coin, should start with 'fiat' or 'tfiat'
|
|
551
|
+
* @param fullName Complete human-readable name of the coin
|
|
517
552
|
* @param network Network object for this coin
|
|
553
|
+
* @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
|
|
554
|
+
* @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
|
|
555
|
+
* @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `FiatCoin`
|
|
556
|
+
* @param primaryKeyCurve? The elliptic curve for this chain/token
|
|
518
557
|
* @param prefix? Optional coin prefix. Defaults to empty string
|
|
519
558
|
* @param suffix? Optional coin suffix. Defaults to coin name.
|
|
520
|
-
* @param
|
|
521
|
-
* @param
|
|
522
|
-
* @param primaryKeyCurve The elliptic curve for this chain/token
|
|
523
|
-
*/
|
|
524
|
-
export declare function fiatToken(name: string, fullName: string, asset: UnderlyingAsset, decimalPlaces: number, network?: BaseNetwork, prefix?: string, suffix?: string, features?: CoinFeature[], isToken?: boolean, primaryKeyCurve?: KeyCurve): Readonly<FiatToken>;
|
|
525
|
-
/**
|
|
526
|
-
* Factory function for testnet FIAT currency instances.
|
|
527
|
-
*
|
|
528
|
-
* @param name unique identifier of the currency
|
|
529
|
-
* @param fullName Complete human-readable name of the currency
|
|
530
|
-
* @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a currency.
|
|
531
|
-
* @param decimalPlaces Number of decimal places this currency supports (divisibility exponent)
|
|
559
|
+
* @param isToken? Whether or not this coin is a token of another coin
|
|
560
|
+
* @param kind? Differentiates coins which represent fiat assets from those which represent crypto assets
|
|
532
561
|
*/
|
|
533
|
-
export declare function
|
|
562
|
+
export declare function fiat(name: FiatCoinName, fullName: string, network: BaseNetwork, decimalPlaces: number, asset: UnderlyingAsset, features?: CoinFeature[], primaryKeyCurve?: KeyCurve, prefix?: string, suffix?: string, isToken?: boolean, kind?: CoinKind): Readonly<FiatCoin>;
|
|
563
|
+
export {};
|
|
534
564
|
//# sourceMappingURL=account.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../src/account.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,WAAW,
|
|
1
|
+
{"version":3,"file":"account.d.ts","sourceRoot":"","sources":["../../src/account.ts"],"names":[],"mappings":"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"}
|