@bitgo/abstract-utxo 1.1.2-rc.5 → 1.2.0-hotfix.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 +22 -0
- package/dist/src/abstractUtxoCoin.d.ts +1 -1
- package/dist/tsconfig.tsbuildinfo +686 -548
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,28 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [1.2.0-hotfix.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@1.2.0-rc.0...@bitgo/abstract-utxo@1.2.0-hotfix.0) (2022-08-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Reverts
|
|
10
|
+
|
|
11
|
+
* Revert "feat(abstract-utxo): add support for bigints from new utxo-lib" ([3d452cf](https://github.com/BitGo/BitGoJS/commit/3d452cfed2a783cd8d5b9fe718b4ceca1d14e5a8))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [1.2.0-rc.0](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@1.1.2-rc.5...@bitgo/abstract-utxo@1.2.0-rc.0) (2022-08-10)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **abstract-utxo:** add support for bigints from new utxo-lib ([8e5bbe5](https://github.com/BitGo/BitGoJS/commit/8e5bbe5e158254d34abb87f6d000e5afd9bb6b9d))
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
6
28
|
## [1.1.2-rc.3](https://github.com/BitGo/BitGoJS/compare/@bitgo/abstract-utxo@1.1.2-rc.2...@bitgo/abstract-utxo@1.1.2-rc.3) (2022-08-02)
|
|
7
29
|
|
|
8
30
|
**Note:** Version bump only for package @bitgo/abstract-utxo
|
|
@@ -209,7 +209,7 @@ export declare abstract class AbstractUtxoCoin extends BaseCoin {
|
|
|
209
209
|
static inferAddressType(addressDetails: {
|
|
210
210
|
chain: number;
|
|
211
211
|
}): ScriptType2Of3 | null;
|
|
212
|
-
createTransactionFromHex(hex: string): utxolib.bitgo.UtxoTransaction
|
|
212
|
+
createTransactionFromHex(hex: string): utxolib.bitgo.UtxoTransaction;
|
|
213
213
|
/**
|
|
214
214
|
* Extract and fill transaction details such as internal/change spend, external spend (explicit vs. implicit), etc.
|
|
215
215
|
* @param params
|