@bitgo-beta/statics 10.0.1-alpha.13 → 10.0.1-alpha.131

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 (54) hide show
  1. package/.mocharc.js +1 -1
  2. package/CHANGELOG.md +2086 -0
  3. package/dist/src/account.d.ts +227 -62
  4. package/dist/src/account.d.ts.map +1 -1
  5. package/dist/src/account.js +350 -96
  6. package/dist/src/ada.d.ts +3 -1
  7. package/dist/src/ada.d.ts.map +1 -1
  8. package/dist/src/ada.js +7 -2
  9. package/dist/src/avaxp.d.ts +3 -1
  10. package/dist/src/avaxp.d.ts.map +1 -1
  11. package/dist/src/avaxp.js +12 -3
  12. package/dist/src/base.d.ts +696 -16
  13. package/dist/src/base.d.ts.map +1 -1
  14. package/dist/src/base.js +736 -15
  15. package/dist/src/coins.d.ts.map +1 -1
  16. package/dist/src/coins.js +2181 -1268
  17. package/dist/src/constants.d.ts +2 -0
  18. package/dist/src/constants.d.ts.map +1 -0
  19. package/dist/src/constants.js +5 -0
  20. package/dist/src/errors.d.ts +6 -0
  21. package/dist/src/errors.d.ts.map +1 -1
  22. package/dist/src/errors.js +16 -2
  23. package/dist/src/index.d.ts +1 -1
  24. package/dist/src/index.d.ts.map +1 -1
  25. package/dist/src/index.js +8 -3
  26. package/dist/src/map.d.ts +2 -0
  27. package/dist/src/map.d.ts.map +1 -1
  28. package/dist/src/map.js +26 -3
  29. package/dist/src/networks.d.ts +284 -3
  30. package/dist/src/networks.d.ts.map +1 -1
  31. package/dist/src/networks.js +419 -43
  32. package/dist/src/ofc.d.ts +145 -4
  33. package/dist/src/ofc.d.ts.map +1 -1
  34. package/dist/src/ofc.js +295 -6
  35. package/dist/src/tokenConfig.d.ts +31 -0
  36. package/dist/src/tokenConfig.d.ts.map +1 -1
  37. package/dist/src/tokenConfig.js +86 -3
  38. package/dist/src/utxo.d.ts +6 -2
  39. package/dist/src/utxo.d.ts.map +1 -1
  40. package/dist/src/utxo.js +65 -3
  41. package/dist/tsconfig.tsbuildinfo +1 -2717
  42. package/package.json +2 -2
  43. package/dist/resources/dot/index.d.ts +0 -3
  44. package/dist/resources/dot/index.d.ts.map +0 -1
  45. package/dist/resources/dot/index.js +0 -15
  46. package/dist/resources/dot/mainnet.d.ts +0 -2
  47. package/dist/resources/dot/mainnet.d.ts.map +0 -1
  48. package/dist/resources/dot/mainnet.js +0 -5
  49. package/dist/resources/dot/westend.d.ts +0 -2
  50. package/dist/resources/dot/westend.d.ts.map +0 -1
  51. package/dist/resources/dot/westend.js +0 -5
  52. package/resources/dot/index.ts +0 -2
  53. package/resources/dot/mainnet.ts +0 -2
  54. package/resources/dot/westend.ts +0 -2
package/dist/src/ofc.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  import { BaseCoin, BaseUnit, CoinFeature, CoinKind, KeyCurve, UnderlyingAsset } from './base';
2
2
  import { BaseNetwork, OfcNetwork } from './networks';
3
3
  export interface OfcConstructorOptions {
4
+ id: string;
4
5
  fullName: string;
5
6
  name: string;
6
7
  network: BaseNetwork;
@@ -28,6 +29,7 @@ export declare class OfcCoin extends BaseCoin {
28
29
  /**
29
30
  * Factory function for ofc coin instances.
30
31
  *
32
+ * @param id uuid v4
31
33
  * @param name unique identifier of the coin
32
34
  * @param fullName Complete human-readable name of the coin
33
35
  * @param network Network object for this coin
@@ -40,12 +42,13 @@ export declare class OfcCoin extends BaseCoin {
40
42
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
41
43
  * @param primaryKeyCurve The elliptic curve for this chain/token
42
44
  */
43
- export declare function ofc(name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean,
45
+ export declare function ofc(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean,
44
46
  /** OFC tokens use SECP256K1 under the hood even if the chain doesn't **/
45
47
  primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
46
48
  /**
47
49
  * Factory function for testnet ofc coin instances.
48
50
  *
51
+ * @param id uuid v4
49
52
  * @param name unique identifier of the coin
50
53
  * @param fullName Complete human-readable name of the coin
51
54
  * @param network Network object for this coin
@@ -58,10 +61,11 @@ primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
58
61
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
59
62
  * @param primaryKeyCurve The elliptic curve for this chain/token
60
63
  */
61
- export declare function tofc(name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
64
+ export declare function tofc(id: string, name: string, fullName: string, decimalPlaces: number, asset: UnderlyingAsset, kind?: CoinKind, features?: CoinFeature[], prefix?: string, suffix?: string, network?: OfcNetwork, isToken?: boolean, primaryKeyCurve?: KeyCurve): Readonly<OfcCoin>;
62
65
  /**
63
66
  * Factory function for ofc erc20 coin instances.
64
67
  *
68
+ * @param id uuid v4
65
69
  * @param name unique identifier of the coin
66
70
  * @param fullName Complete human-readable name of the coin
67
71
  * @param network Network object for this coin
@@ -74,10 +78,11 @@ export declare function tofc(name: string, fullName: string, decimalPlaces: numb
74
78
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
75
79
  * @param primaryKeyCurve The elliptic curve for this chain/token
76
80
  */
77
- export declare function ofcerc20(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>;
81
+ export declare function ofcerc20(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>;
78
82
  /**
79
83
  * Factory function for testnet ofc erc20 coin instances.
80
84
  *
85
+ * @param id uuid v4
81
86
  * @param name unique identifier of the coin
82
87
  * @param fullName Complete human-readable name of the coin
83
88
  * @param network Network object for this coin
@@ -90,5 +95,141 @@ export declare function ofcerc20(name: string, fullName: string, decimalPlaces:
90
95
  * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
91
96
  * @param primaryKeyCurve The elliptic curve for this chain/token
92
97
  */
93
- export declare function tofcerc20(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>;
98
+ 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>;
99
+ /**
100
+ * Factory function for ofc stellar token instances.
101
+ *
102
+ * @param id uuid v4
103
+ * @param name unique identifier of the coin
104
+ * @param fullName Complete human-readable name of the coin
105
+ * @param network Network object for this coin
106
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
107
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
108
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
109
+ * @param prefix? Optional coin prefix. Defaults to empty string
110
+ * @param suffix? Optional coin suffix. Defaults to coin name.
111
+ * @param isToken? Whether or not this account coin is a token of another coin
112
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
113
+ * @param primaryKeyCurve The elliptic curve for this chain/token
114
+ */
115
+ export declare function ofcStellarToken(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>;
116
+ /**
117
+ * Factory function for testnet ofc stellar token instances.
118
+ *
119
+ * @param id uuid v4
120
+ * @param name unique identifier of the coin
121
+ * @param fullName Complete human-readable name of the coin
122
+ * @param network Network object for this coin
123
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
124
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
125
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
126
+ * @param prefix? Optional coin prefix. Defaults to empty string
127
+ * @param suffix? Optional coin suffix. Defaults to coin name.
128
+ * @param isToken? Whether or not this account coin is a token of another coin
129
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
130
+ * @param primaryKeyCurve The elliptic curve for this chain/token
131
+ */
132
+ export declare function tofcStellarToken(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>;
133
+ /**
134
+ * Factory function for ofc algo token instances.
135
+ *
136
+ * @param id uuid v4
137
+ * @param name unique identifier of the coin
138
+ * @param fullName Complete human-readable name of the coin
139
+ * @param network Network object for this coin
140
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
141
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
142
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
143
+ * @param prefix? Optional coin prefix. Defaults to empty string
144
+ * @param suffix? Optional coin suffix. Defaults to coin name.
145
+ * @param isToken? Whether or not this account coin is a token of another coin
146
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
147
+ * @param primaryKeyCurve The elliptic curve for this chain/token
148
+ */
149
+ export declare function ofcAlgoToken(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>;
150
+ /**
151
+ * Factory function for testnet ofc algo token instances.
152
+ *
153
+ * @param id uuid v4
154
+ * @param name unique identifier of the coin
155
+ * @param fullName Complete human-readable name of the coin
156
+ * @param network Network object for this coin
157
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
158
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
159
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
160
+ * @param prefix? Optional coin prefix. Defaults to empty string
161
+ * @param suffix? Optional coin suffix. Defaults to coin name.
162
+ * @param isToken? Whether or not this account coin is a token of another coin
163
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
164
+ * @param primaryKeyCurve The elliptic curve for this chain/token
165
+ */
166
+ export declare function tofcAlgoToken(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>;
167
+ /**
168
+ * Factory function for ofc hedera token instances.
169
+ *
170
+ * @param id uuid v4
171
+ * @param name unique identifier of the coin
172
+ * @param fullName Complete human-readable name of the coin
173
+ * @param network Network object for this coin
174
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
175
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
176
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
177
+ * @param prefix? Optional coin prefix. Defaults to empty string
178
+ * @param suffix? Optional coin suffix. Defaults to coin name.
179
+ * @param isToken? Whether or not this account coin is a token of another coin
180
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
181
+ * @param primaryKeyCurve The elliptic curve for this chain/token
182
+ */
183
+ export declare function ofcHederaToken(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>;
184
+ /**
185
+ * Factory function for testnet ofc hedera token instances.
186
+ *
187
+ * @param id uuid v4
188
+ * @param name unique identifier of the coin
189
+ * @param fullName Complete human-readable name of the coin
190
+ * @param network Network object for this coin
191
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
192
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
193
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
194
+ * @param prefix? Optional coin prefix. Defaults to empty string
195
+ * @param suffix? Optional coin suffix. Defaults to coin name.
196
+ * @param isToken? Whether or not this account coin is a token of another coin
197
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
198
+ * @param primaryKeyCurve The elliptic curve for this chain/token
199
+ */
200
+ 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>;
201
+ /**
202
+ * Factory function for ofc arbethErc20 token instances.
203
+ *
204
+ * @param id uuid v4
205
+ * @param name unique identifier of the coin
206
+ * @param fullName Complete human-readable name of the coin
207
+ * @param network Network object for this coin
208
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
209
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
210
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
211
+ * @param prefix? Optional coin prefix. Defaults to empty string
212
+ * @param suffix? Optional coin suffix. Defaults to coin name.
213
+ * @param isToken? Whether or not this account coin is a token of another coin
214
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
215
+ * @param primaryKeyCurve The elliptic curve for this chain/token
216
+ */
217
+ 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>;
218
+ /**
219
+ * Factory function for testnet ofc arbethErc20 token instances.
220
+ *
221
+ * @param id uuid v4
222
+ * @param name unique identifier of the coin
223
+ * @param fullName Complete human-readable name of the coin
224
+ * @param network Network object for this coin
225
+ * @param decimalPlaces Number of decimal places this coin supports (divisibility exponent)
226
+ * @param asset Asset which this coin represents. This is the same for both mainnet and testnet variants of a coin.
227
+ * @param kind Differentiates coins which represent fiat assets from those which represent crypto assets
228
+ * @param prefix? Optional coin prefix. Defaults to empty string
229
+ * @param suffix? Optional coin suffix. Defaults to coin name.
230
+ * @param isToken? Whether or not this account coin is a token of another coin
231
+ * @param features? Features of this coin. Defaults to the DEFAULT_FEATURES defined in `OfcCoin`
232
+ * @param primaryKeyCurve The elliptic curve for this chain/token
233
+ */
234
+ 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>;
94
235
  //# sourceMappingURL=ofc.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"ofc.d.ts","sourceRoot":"","sources":["../../src/ofc.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,WAAW,EAAE,QAAQ,EAAE,QAAQ,EAAE,eAAe,EAAE,MAAM,QAAQ,CAAC;AAC9F,OAAO,EAAE,WAAW,EAAY,UAAU,EAAE,MAAM,YAAY,CAAC;AAE/D,MAAM,WAAW,qBAAqB;IACpC,QAAQ,EAAE,MAAM,CAAC;IACjB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,EAAE,WAAW,CAAC;IACrB,KAAK,EAAE,eAAe,CAAC;IACvB,QAAQ,EAAE,QAAQ,CAAC;IACnB,QAAQ,EAAE,WAAW,EAAE,CAAC;IACxB,aAAa,EAAE,MAAM,CAAC;IACtB,OAAO,EAAE,OAAO,CAAC;IACjB,IAAI,EAAE,QAAQ,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,eAAe,EAAE,QAAQ,CAAC;CAC3B;AAED;;GAEG;AACH,qBAAa,OAAQ,SAAQ,QAAQ;IACnC,gBAAuB,gBAAgB,gBAIrC;IAGF,SAAgB,WAAW,CAAC,EAAE,MAAM,CAAC;gBAEzB,OAAO,EAAE,qBAAqB;IAM1C,SAAS,CAAC,gBAAgB,IAAI,GAAG,CAAC,WAAW,CAAC;IAI9C,SAAS,CAAC,kBAAkB,IAAI,GAAG,CAAC,WAAW,CAAC;CAQjD;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,MAAM,EACZ,QAAQ,EAAE,MAAM,EAChB,aAAa,EAAE,MAAM,EACrB,KAAK,EAAE,eAAe,EACtB,IAAI,GAAE,QAA0B,EAChC,QAAQ,GAAE,WAAW,EAA6B,EAClD,MAAM,SAAK,EACX,MAAM,GAAE,MAA+C,EACvD,OAAO,GAAE,UAA8B,EACvC,OAAO,UAAO;AACd,yEAAyE;AACzE,eAAe,GAAE,QAA6B,qBAkB/C;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,IAAI,CAClB,IAAI,EAAE,MAAM,EACZ,QAAQ,EAAE,MAAM,EAChB,aAAa,EAAE,MAAM,EACrB,KAAK,EAAE,eAAe,EACtB,IAAI,GAAE,QAA0B,EAChC,QAAQ,GAAE,WAAW,EAA6B,EAClD,MAAM,SAAK,EACX,MAAM,GAAE,MAA+C,EACvD,OAAO,GAAE,UAA8B,EACvC,OAAO,UAAO,EACd,eAAe,GAAE,QAA6B,qBAkB/C;AAED;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,QAAQ,CACtB,IAAI,EAAE,MAAM,EACZ,QAAQ,EAAE,MAAM,EAChB,aAAa,EAAE,MAAM,EACrB,KAAK,EAAE,eAAe,EACtB,IAAI,GAAE,QAA0B,EAChC,QAAQ,GAAE,WAAW,EAA6B,EAClD,MAAM,SAAK,EACX,MAAM,GAAE,MAA+C,EACvD,OAAO,GAAE,UAA8B,EACvC,OAAO,UAAO,EACd,WAAW,SAAQ,EACnB,eAAe,GAAE,QAA6B,qBAmB/C;AACD;;;;;;;;;;;;;;GAcG;AACH,wBAAgB,SAAS,CACvB,IAAI,EAAE,MAAM,EACZ,QAAQ,EAAE,MAAM,EAChB,aAAa,EAAE,MAAM,EACrB,KAAK,EAAE,eAAe,EACtB,IAAI,GAAE,QAA0B,EAChC,QAAQ,GAAE,WAAW,EAA6B,EAClD,MAAM,SAAK,EACX,MAAM,GAAE,MAA+C,EACvD,OAAO,GAAE,UAA8B,EACvC,OAAO,UAAO,EACd,WAAW,SAAS,EACpB,eAAe,GAAE,QAA6B,qBAmB/C"}
1
+ {"version":3,"file":"ofc.d.ts","sourceRoot":"","sources":["../../src/ofc.ts"],"names":[],"mappings":"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"}