Skip to content

Commit 0557263

Browse files
Merge pull request #7651 from BitGo/BTC-2650.bump-wasm-utxo
chore(abstract-utxo): bump wasm-utxo package to 1.8.0
2 parents b0d75f4 + 9a00904 commit 0557263

File tree

7 files changed

+215
-69
lines changed

7 files changed

+215
-69
lines changed

modules/abstract-utxo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
"@bitgo/utxo-core": "^1.25.0",
6969
"@bitgo/utxo-lib": "^11.16.1",
7070
"@bitgo/utxo-ord": "^1.22.15",
71-
"@bitgo/wasm-utxo": "1.3.0",
71+
"@bitgo/wasm-utxo": "1.8.0",
7272
"@types/lodash": "^4.14.121",
7373
"@types/superagent": "4.1.15",
7474
"bignumber.js": "^9.0.2",

modules/bitgo/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@
153153
"karma-typescript": "5.5.4",
154154
"keccak": "3.0.3",
155155
"libsodium-wrappers-sumo": "^0.7.9",
156-
"puppeteer": "2.1.1",
156+
"puppeteer": "^23.10.0",
157157
"q": "^1.1.2"
158158
},
159159
"optionalDependencies": {

modules/utxo-bin/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"@bitgo/unspents": "^0.50.10",
3232
"@bitgo/utxo-core": "^1.25.0",
3333
"@bitgo/utxo-lib": "^11.16.1",
34-
"@bitgo/wasm-utxo": "1.3.0",
34+
"@bitgo/wasm-utxo": "1.8.0",
3535
"@noble/curves": "1.8.1",
3636
"archy": "^1.0.0",
3737
"bech32": "^2.0.0",

modules/utxo-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"@bitgo/secp256k1": "^1.7.0",
8282
"@bitgo/unspents": "^0.50.10",
8383
"@bitgo/utxo-lib": "^11.16.1",
84-
"@bitgo/wasm-utxo": "1.3.0",
84+
"@bitgo/wasm-utxo": "1.8.0",
8585
"bip174": "npm:@bitgo-forks/[email protected]",
8686
"bitcoinjs-message": "npm:@bitgo-forks/[email protected]",
8787
"fast-sha256": "^1.3.0"

modules/utxo-staking/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@
6363
"@bitgo/babylonlabs-io-btc-staking-ts": "^3.2.1",
6464
"@bitgo/utxo-core": "^1.25.0",
6565
"@bitgo/utxo-lib": "^11.16.1",
66-
"@bitgo/wasm-utxo": "1.3.0",
66+
"@bitgo/wasm-utxo": "1.8.0",
6767
"bip174": "npm:@bitgo-forks/[email protected]",
6868
"bip322-js": "^2.0.0",
6969
"bitcoinjs-lib": "^6.1.7",

webpack/bitgojs.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ module.exports = {
1515
// use the default version here since we're webpacking ourselves
1616
'@bitgo/sdk-api': path.resolve('../sdk-api/dist/src/index.js'),
1717
async: path.resolve('../../node_modules/async/index.js'),
18+
// Force ESM version of wasm-utxo for browser bundles (has proper wasm import)
19+
'@bitgo/wasm-utxo': path.resolve('../../node_modules/@bitgo/wasm-utxo/dist/esm/js/index.js'),
1820
},
1921
fallback: {
2022
constants: false,

0 commit comments

Comments
 (0)