From 0d16c0c488ba2a838482378b1b4ccb0a718941d8 Mon Sep 17 00:00:00 2001 From: gomes <17035424+gomesalexandre@users.noreply.github.com> Date: Thu, 11 Dec 2025 20:47:27 +0300 Subject: [PATCH 01/14] fix: svg imports MIME type error Remove ?url suffix from SVG imports to fix module script MIME type error --- .../TradeInput/components/SwapperIcon/SwapperIcon.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/MultiHopTrade/components/TradeInput/components/SwapperIcon/SwapperIcon.tsx b/src/components/MultiHopTrade/components/TradeInput/components/SwapperIcon/SwapperIcon.tsx index fe714512ba9..a0b2dcf1f81 100644 --- a/src/components/MultiHopTrade/components/TradeInput/components/SwapperIcon/SwapperIcon.tsx +++ b/src/components/MultiHopTrade/components/TradeInput/components/SwapperIcon/SwapperIcon.tsx @@ -9,11 +9,11 @@ import ButterSwapIcon from './butterswap.png' import CetusIcon from './cetus-icon.jpg' import ChainflipIcon from './chainflip-icon.png' import CowIcon from './cow-icon.png' -import JupiterIcon from './jupiter-icon.svg?url' +import JupiterIcon from './jupiter-icon.svg' import MayachainIcon from './maya_logo.png' import NearIntentsIcon from './near-intents-icon.png' import PortalsIcon from './portals-icon.png' -import RelayIcon from './relay-icon.svg?url' +import RelayIcon from './relay-icon.svg' import SunioIcon from './sunio-icon.png' import THORChainIcon from './thorchain-icon.png' From f57ca79d37edc786dd4900bc1ba98e514eb0f869 Mon Sep 17 00:00:00 2001 From: gomes <17035424+gomesalexandre@users.noreply.github.com> Date: Thu, 11 Dec 2025 20:47:40 +0300 Subject: [PATCH 02/14] feat: use @shapeshiftoss/bitcoinjs-lib for Ledger Zcash Update hdwallet packages to 1.62.29-bitgo-removal.0 which removes the @bitgo/utxo-lib dependency and uses @shapeshiftoss/bitcoinjs-lib for Zcash Ledger signing instead. This unifies the Native and Ledger Zcash implementations to both use the ShapeShift fork of bitcoinjs-lib which has native ZIP-244 support. --- .yarnrc.yml | 2 +- package.json | 36 +-- packages/chain-adapters/package.json | 4 +- packages/swapper/package.json | 2 +- yarn.lock | 446 ++++++++++----------------- 5 files changed, 180 insertions(+), 310 deletions(-) diff --git a/.yarnrc.yml b/.yarnrc.yml index d0a93f2e410..443b520ba5d 100644 --- a/.yarnrc.yml +++ b/.yarnrc.yml @@ -2,7 +2,7 @@ nodeLinker: node-modules npmAuthToken: "${NPM_AUTH-fallback}" -npmRegistryServer: "http://localhost:4873" +npmRegistryServer: "http://127.0.0.1:4873" plugins: - path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs diff --git a/package.json b/package.json index bf2161b80fa..822b16a8fc7 100644 --- a/package.json +++ b/package.json @@ -100,24 +100,24 @@ "@shapeshiftoss/chain-adapters": "workspace:^", "@shapeshiftoss/contracts": "workspace:^", "@shapeshiftoss/errors": "workspace:^", - "@shapeshiftoss/hdwallet-coinbase": "1.62.28", - "@shapeshiftoss/hdwallet-core": "1.62.28", - "@shapeshiftoss/hdwallet-gridplus": "1.62.28", - "@shapeshiftoss/hdwallet-keepkey": "1.62.28", - "@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.28", - "@shapeshiftoss/hdwallet-keplr": "1.62.28", - "@shapeshiftoss/hdwallet-ledger": "1.62.28", - "@shapeshiftoss/hdwallet-ledger-webhid": "1.62.28", - "@shapeshiftoss/hdwallet-ledger-webusb": "1.62.28", - "@shapeshiftoss/hdwallet-metamask-multichain": "1.62.28", - "@shapeshiftoss/hdwallet-native": "1.62.28", - "@shapeshiftoss/hdwallet-native-vault": "1.62.28", - "@shapeshiftoss/hdwallet-phantom": "1.62.28", - "@shapeshiftoss/hdwallet-trezor": "1.62.28", - "@shapeshiftoss/hdwallet-trezor-connect": "1.62.28", - "@shapeshiftoss/hdwallet-vultisig": "1.62.28", - "@shapeshiftoss/hdwallet-walletconnect": "1.62.28", - "@shapeshiftoss/hdwallet-walletconnectv2": "1.62.28", + "@shapeshiftoss/hdwallet-coinbase": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-gridplus": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-keepkey": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-keplr": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-ledger": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-ledger-webhid": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-ledger-webusb": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-metamask-multichain": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-native": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-native-vault": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-phantom": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-trezor": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-trezor-connect": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-vultisig": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-walletconnect": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-walletconnectv2": "1.62.29-bitgo-removal.0", "@shapeshiftoss/swapper": "workspace:^", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", diff --git a/packages/chain-adapters/package.json b/packages/chain-adapters/package.json index 5ceff024c73..cb75a4cb72d 100644 --- a/packages/chain-adapters/package.json +++ b/packages/chain-adapters/package.json @@ -31,8 +31,8 @@ "dependencies": { "@mysten/sui": "1.45.0", "@shapeshiftoss/caip": "workspace:^", - "@shapeshiftoss/hdwallet-core": "1.62.28", - "@shapeshiftoss/hdwallet-ledger": "1.62.28", + "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-ledger": "1.62.29-bitgo-removal.0", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", diff --git a/packages/swapper/package.json b/packages/swapper/package.json index 514e04dc413..daaa98b70dd 100644 --- a/packages/swapper/package.json +++ b/packages/swapper/package.json @@ -39,7 +39,7 @@ "@shapeshiftoss/caip": "workspace:^", "@shapeshiftoss/chain-adapters": "workspace:^", "@shapeshiftoss/contracts": "workspace:^", - "@shapeshiftoss/hdwallet-core": "1.62.28", + "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.0", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", diff --git a/yarn.lock b/yarn.lock index ea666b1af19..528f81e5b05 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4090,59 +4090,6 @@ __metadata: languageName: node linkType: hard -"@bitgo/blake2b-wasm@npm:^3.2.3": - version: 3.2.3 - resolution: "@bitgo/blake2b-wasm@npm:3.2.3" - dependencies: - nanoassert: ^1.0.0 - checksum: f398ea78559486095bfa898fd4fd5d0a8f022ffbcd31732854cec9118967f695a009339a3b4bf2cef62a2a38b8d93d4781769b3516b15fb3b11a4f12177a1f21 - languageName: node - linkType: hard - -"@bitgo/blake2b@npm:^3.2.4": - version: 3.2.4 - resolution: "@bitgo/blake2b@npm:3.2.4" - dependencies: - "@bitgo/blake2b-wasm": ^3.2.3 - nanoassert: ^2.0.0 - checksum: 6ee6575873eb4af42de387dd698bac835a739eee6aefe642606a978bf79f75be7abb0a619bdbf2789dfa1cf2ef36083a4e3bf23ff5c8f701a04222c5304bbae4 - languageName: node - linkType: hard - -"@bitgo/secp256k1@npm:^1.7.0": - version: 1.7.0 - resolution: "@bitgo/secp256k1@npm:1.7.0" - dependencies: - "@brandonblack/musig": ^0.0.1-alpha.0 - "@noble/secp256k1": 1.6.3 - bip32: ^3.0.1 - create-hash: ^1.2.0 - create-hmac: ^1.1.7 - ecpair: "npm:@bitgo/ecpair@2.1.0-rc.0" - checksum: 3cca08733c2228887111a1486430deaa5bd619bfc2defb0ef28c2f26d33b95f30604ce306c386a1efa0c097ee35212bb401bbee06db4c59e03149b658f7244a9 - languageName: node - linkType: hard - -"@bitgo/utxo-lib@npm:^11.18.0": - version: 11.18.0 - resolution: "@bitgo/utxo-lib@npm:11.18.0" - dependencies: - "@bitgo/blake2b": ^3.2.4 - "@bitgo/secp256k1": ^1.7.0 - "@brandonblack/musig": ^0.0.1-alpha.0 - bech32: ^2.0.0 - bip174: "npm:@bitgo-forks/bip174@3.1.0-master.4" - bitcoin-ops: ^1.3.0 - bitcoinjs-lib: "npm:@bitgo-forks/bitcoinjs-lib@7.1.0-master.11" - bs58check: ^2.1.2 - cashaddress: ^1.1.0 - fastpriorityqueue: ^0.7.1 - typeforce: ^1.11.3 - varuint-bitcoin: ^1.1.2 - checksum: 4641a6dc8a342a828ec3a3dff420e79fd4ddf5ea47051cc66844155038323451ebe1b5e145289cd36e64eca70bbec0f35703be8461f3dca6d1ac7cce028210f3 - languageName: node - linkType: hard - "@bithighlander/bitcoin-cash-js-lib@npm:5.2.1": version: 5.2.1 resolution: "@bithighlander/bitcoin-cash-js-lib@npm:5.2.1" @@ -4191,13 +4138,6 @@ __metadata: languageName: node linkType: hard -"@brandonblack/musig@npm:^0.0.1-alpha.0": - version: 0.0.1-alpha.1 - resolution: "@brandonblack/musig@npm:0.0.1-alpha.1" - checksum: 3e116b30716481bf3d28d2a229bf9d93b3c6753f8c3d833c573db167656f135bfcb76d3c63a8c9c44d9cec6d6cafe56c420b4e647a9307ce69a31eb51ca11724 - languageName: node - linkType: hard - "@cetusprotocol/aggregator-sdk@npm:^1.4.2": version: 1.4.2 resolution: "@cetusprotocol/aggregator-sdk@npm:1.4.2" @@ -9405,13 +9345,6 @@ __metadata: languageName: node linkType: hard -"@noble/secp256k1@npm:1.6.3": - version: 1.6.3 - resolution: "@noble/secp256k1@npm:1.6.3" - checksum: 16eb3242533e645deb64444c771515f66bdc2ee0759894efd42fdeed4ab226ed29827aaaf6caa27d3d95b831452fd4246aa1007cd688aa462ad48fc084ab76e6 - languageName: node - linkType: hard - "@noble/secp256k1@npm:^1.5.5, @noble/secp256k1@npm:^1.7.1": version: 1.7.1 resolution: "@noble/secp256k1@npm:1.7.1" @@ -11165,8 +11098,8 @@ __metadata: dependencies: "@mysten/sui": 1.45.0 "@shapeshiftoss/caip": "workspace:^" - "@shapeshiftoss/hdwallet-core": 1.62.28 - "@shapeshiftoss/hdwallet-ledger": 1.62.28 + "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-ledger": 1.62.29-bitgo-removal.0 "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" "@shapeshiftoss/utils": "workspace:^" @@ -11229,15 +11162,15 @@ __metadata: languageName: unknown linkType: soft -"@shapeshiftoss/hdwallet-coinbase@npm:1.62.28": - version: 1.62.28 - resolution: "@shapeshiftoss/hdwallet-coinbase@npm:1.62.28" +"@shapeshiftoss/hdwallet-coinbase@npm:1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-coinbase@npm:1.62.29-bitgo-removal.0" dependencies: "@coinbase/wallet-sdk": ^3.6.6 - "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 eth-rpc-errors: ^4.0.3 lodash: ^4.17.21 - checksum: ab3c60fbd7f74316ca65a0d0c78c6118690be58244de5603b461fda88e8060b7568fed4a47069d7fb087fe529c8b986259cc501d4904c8d9f6155410e990b7e2 + checksum: f95827c64443bc8529f5ea699f9fb0f9294307047a6db413b4cf250c9982be4c26966874c38b9d29de6394491e1a9eb83ab3d3504f29554a180d1a97e4f642db languageName: node linkType: hard @@ -11259,6 +11192,24 @@ __metadata: languageName: node linkType: hard +"@shapeshiftoss/hdwallet-core@npm:1.62.29-bitgo-removal.0, @shapeshiftoss/hdwallet-core@npm:^1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-core@npm:1.62.29-bitgo-removal.0" + dependencies: + "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 + "@shapeshiftoss/proto-tx-builder": 0.10.0 + "@solana/web3.js": 1.95.8 + bs58check: ^4.0.0 + eip-712: ^1.0.0 + ethers: 5.7.2 + eventemitter2: ^5.0.1 + lodash: ^4.17.21 + rxjs: ^6.4.0 + type-assertions: ^1.1.0 + checksum: 083c0684165e9cdccb0b683a72e7df60b38ed7b42bce1b48478dc3e7db7cd6080cddb225364e64f8048f5cd39313bf2ebfe282808ef12528250c515879bca214 + languageName: node + linkType: hard + "@shapeshiftoss/hdwallet-core@npm:latest": version: 1.62.27 resolution: "@shapeshiftoss/hdwallet-core@npm:1.62.27" @@ -11277,39 +11228,39 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-gridplus@npm:1.62.28": - version: 1.62.28 - resolution: "@shapeshiftoss/hdwallet-gridplus@npm:1.62.28" +"@shapeshiftoss/hdwallet-gridplus@npm:1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-gridplus@npm:1.62.29-bitgo-removal.0" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@ethereumjs/common": 4.4.0 "@ethereumjs/rlp": 5.0.2 "@ethereumjs/tx": 5.4.0 "@metamask/eth-sig-util": ^7.0.0 - "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 bech32: ^1.1.4 bs58: ^5.0.0 bs58check: ^4.0.0 crypto-js: ^4.2.0 gridplus-sdk: ^3.2.0 lodash: ^4.17.21 - checksum: 6384ec1426915df4b4f559a58113519f858afa407ead15e9d003f5793cf34322fd78116b571650bcc50346d84aaaa069f6b7186a32ee687714ac2ba170701a5e + checksum: 5a24fbc0c86bd02ca43e2a1f20bb752e1eec69d831105cbaad0b505a83705bd992d5532e756a5ad9ffbc7ea38e7f335848781796b58bf9629bba7f735c679eef languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.28": - version: 1.62.28 - resolution: "@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.28" +"@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29-bitgo-removal.0" dependencies: - "@shapeshiftoss/hdwallet-core": 1.62.28 - "@shapeshiftoss/hdwallet-keepkey": 1.62.28 - checksum: 82e7230c4eb2302b5071445dc9efffdb47182cc66c9d19a3b5c232052cce1ad01e3fc97945e84b9ff02284f00fd65c2622c2e01918519de42591f460a9f557c7 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-keepkey": ^1.62.29-bitgo-removal.0 + checksum: 17cbee712b443bfa4bd7cd808ec99dfb8a8768459217dc802190346abfd1cb54bf0b7ccd2fb2620abebf1f94cd49ec1ec9cf61b181e60a9fd422db2b64973fcc languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keepkey@npm:1.62.28": - version: 1.62.28 - resolution: "@shapeshiftoss/hdwallet-keepkey@npm:1.62.28" +"@shapeshiftoss/hdwallet-keepkey@npm:1.62.29-bitgo-removal.0, @shapeshiftoss/hdwallet-keepkey@npm:^1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-keepkey@npm:1.62.29-bitgo-removal.0" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@ethereumjs/common": 3.2.0 @@ -11317,7 +11268,7 @@ __metadata: "@keepkey/device-protocol": 7.13.4 "@metamask/eth-sig-util": ^7.0.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 "@shapeshiftoss/proto-tx-builder": 0.10.0 bignumber.js: ^9.0.1 bnb-javascript-sdk-nobroadcast: 2.16.15 @@ -11330,44 +11281,44 @@ __metadata: lodash: ^4.17.21 p-lazy: ^3.1.0 semver: ^7.3.8 - checksum: 88f737e8e53df0659e2bfded6198536623bd6798204c058915c57f28e36e36033d4d93050d3ec6196719d477615df8e4d259d5805801ddcee62372818b0135ca + checksum: 66c7a6981081eb3f3f52e126e56079d7cfd19c1eb758a628c44371b2de01b16f556703c47bdbbacd1799c172de6c001f111ed58d2518368016e51e041f7facbc languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keplr@npm:1.62.28": - version: 1.62.28 - resolution: "@shapeshiftoss/hdwallet-keplr@npm:1.62.28" +"@shapeshiftoss/hdwallet-keplr@npm:1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-keplr@npm:1.62.29-bitgo-removal.0" dependencies: "@cosmjs/amino": ^0.28.13 "@cosmjs/stargate": ^0.28.13 "@shapeshiftoss/caip": 8.15.0 - "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 "@shapeshiftoss/proto-tx-builder": 0.10.0 "@shapeshiftoss/types": 3.1.3 base64-js: ^1.5.1 lodash: ^4.17.21 - checksum: 06404a7ce0f0f152564209b1f965d53d51e5296b445f33357b1d72f9362a287c7c7a4223b7a092b7bf6e1aa99a660df800d00686510d2b382159999b913c63c2 + checksum: e78b9c1b37bb054fcfd709d6db75f3fefb3716fc28151bb37a2df3bfe48abdea6fb9584dfdd32cf401c9b1edf8917c6bca4d15c1deac0380c437430baf55b2b2 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.28": - version: 1.62.28 - resolution: "@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.28" +"@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29-bitgo-removal.0" dependencies: "@ledgerhq/hw-app-btc": 10.13.0 "@ledgerhq/hw-app-eth": 7.0.0 "@ledgerhq/hw-transport": 6.31.13 "@ledgerhq/hw-transport-webhid": 6.30.6 - "@shapeshiftoss/hdwallet-core": 1.62.28 - "@shapeshiftoss/hdwallet-ledger": 1.62.28 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-ledger": ^1.62.29-bitgo-removal.0 "@types/w3c-web-hid": ^1.0.2 - checksum: 888af25fd11ed7e56a9f6be997d0c542945428e271c8f21a5aa9f9df366829f72306fb4f46ed55a9f5c0510906df8c99da1367209e327be8fc566052998fad2d + checksum: 9ad77f686a71bdcf29cacb565d4a243f2a391dc9225532b213f7bd1101e80ddd0d842dfed616bfa68e6d7f44c97638c068f0d9c40cf6f1af9061d103f292e3b1 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.28": - version: 1.62.28 - resolution: "@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.28" +"@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29-bitgo-removal.0" dependencies: "@ledgerhq/hw-app-btc": 10.13.0 "@ledgerhq/hw-app-cosmos": 6.32.9 @@ -11375,19 +11326,18 @@ __metadata: "@ledgerhq/hw-app-solana": 7.6.0 "@ledgerhq/hw-transport": 6.31.13 "@ledgerhq/hw-transport-webusb": 6.29.13 - "@shapeshiftoss/hdwallet-core": 1.62.28 - "@shapeshiftoss/hdwallet-ledger": 1.62.28 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-ledger": ^1.62.29-bitgo-removal.0 "@types/w3c-web-usb": ^1.0.4 p-queue: ^7.4.1 - checksum: 7cc44a99f84c0f83784afb612148cbcb5544160afc6166ac7f03ddb04520670d9bfaae1cdb7c68d1761d4c9b7c7ab5e7e22e23097094d7a56835fd0299b4a03a + checksum: 53b59e0c3441167e0760fddbd32176139a7303876bc6d3ec1b639e9dca38b969b745b9d9de96a936418a3ee4f2acdde140929aabcae03cc326027b2f50e2f6b7 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger@npm:1.62.28": - version: 1.62.28 - resolution: "@shapeshiftoss/hdwallet-ledger@npm:1.62.28" +"@shapeshiftoss/hdwallet-ledger@npm:1.62.29-bitgo-removal.0, @shapeshiftoss/hdwallet-ledger@npm:^1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-ledger@npm:1.62.29-bitgo-removal.0" dependencies: - "@bitgo/utxo-lib": ^11.18.0 "@ethereumjs/common": 3.2.0 "@ethereumjs/tx": 4.2.0 "@ledgerhq/device-core": 0.6.9 @@ -11400,7 +11350,7 @@ __metadata: "@ledgerhq/logs": 6.13.0 "@mysten/ledgerjs-hw-app-sui": ^0.7.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bchaddrjs: ^0.4.4 @@ -11410,33 +11360,33 @@ __metadata: ethereumjs-util: ^6.1.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: 482e26ba4a2f94b6b1c7a2ec3fb47a2e75a49a199e462eb8ebbe784fcd791f3237b2a0bf4d473ccb07a27b4baffe22f3f5cb080449e92826a53fb668f7108591 + checksum: e2b1524c9ae2ef392da360b02b0b36b1390a11ecd6701d83886afdfd9b36127c7efd048a15bb4d8d1e7ac3c9d55bbc342e8b42047883b6a1c35bd68d1dac0b03 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.28": - version: 1.62.28 - resolution: "@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.28" +"@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29-bitgo-removal.0" dependencies: "@metamask/detect-provider": ^1.2.0 "@metamask/onboarding": ^1.0.1 "@shapeshiftoss/common-api": ^9.3.0 - "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 "@shapeshiftoss/metamask-snaps-adapter": ^1.0.12 "@shapeshiftoss/metamask-snaps-types": ^1.0.12 eth-rpc-errors: ^4.0.3 lodash: ^4.17.21 mipd: ^0.0.7 - checksum: 86ac33b6265d4cf35c90879a98ace320f1e2e10adc5561dfdc3a3580ee082c1c3537c8b5ca4341d3b5828e77b0cac7c03e49fd2dbd70bf6cdd4f451001f3438e + checksum: 76c2ff6165734c57c1f2a753c37baef7382f571c4bd922b3706b86f56ad5b2c95a86c8e7a67e0399a7aacbae3f87f1b38adb2baf0076e3cda10e0320a81fe5a5 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-native-vault@npm:1.62.28": - version: 1.62.28 - resolution: "@shapeshiftoss/hdwallet-native-vault@npm:1.62.28" +"@shapeshiftoss/hdwallet-native-vault@npm:1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-native-vault@npm:1.62.29-bitgo-removal.0" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 - "@shapeshiftoss/hdwallet-native": 1.62.28 + "@shapeshiftoss/hdwallet-native": ^1.62.29-bitgo-removal.0 bip39: ^3.0.4 hash-wasm: ^4.11.0 idb-keyval: ^6.0.3 @@ -11444,11 +11394,44 @@ __metadata: p-lazy: ^3.1.0 type-assertions: ^1.1.0 uuid: ^8.3.2 - checksum: 8cfe8d66a7270f7e1c119be118ffec148ad1249eebf288f4715a6acd37a4a6324aedbfe14614937c4d542f3a9c7c5b13f51ceec21d644d852811c97424272a63 + checksum: 912b357d3a2f65276ae17fd0409908b0b05637f0af02d95113a1187fcec0d34e7dad961826f969fd71f604dfa5ad2cad67cd74302eb94d42798a96e193a2863d + languageName: node + linkType: hard + +"@shapeshiftoss/hdwallet-native@npm:1.62.29-bitgo-removal.0, @shapeshiftoss/hdwallet-native@npm:^1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-native@npm:1.62.29-bitgo-removal.0" + dependencies: + "@bitcoinerlab/secp256k1": ^1.1.1 + "@noble/curves": ^1.4.0 + "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/proto-tx-builder": 0.10.0 + "@zxing/text-encoding": ^0.9.0 + bchaddrjs: ^0.4.9 + bech32: ^1.1.4 + bignumber.js: ^9.0.1 + bip32: ^2.0.5 + bip39: ^3.0.2 + bnb-javascript-sdk-nobroadcast: 2.16.15 + bs58check: ^4.0.0 + crypto-js: ^4.0.0 + ecpair: ^3.0.0-rc.0 + eip-712: ^1.0.0 + ethers: 5.7.2 + eventemitter2: ^5.0.1 + funtypes: ^3.0.1 + hash-wasm: ^4.11.0 + lodash: ^4.17.21 + node-fetch: ^2.6.1 + p-lazy: ^3.1.0 + scrypt-js: ^3.0.1 + tendermint-tx-builder: 1.0.16 + checksum: b9bd49e4556651035fbb4d95a74bb803835629af21e880444391fcd47ced819394a6b19496c1560b4caf299ebb6fded591025389802cb5c2d2c25abda062b25f languageName: node linkType: hard -"@shapeshiftoss/hdwallet-native@npm:1.62.28, @shapeshiftoss/hdwallet-native@npm:^1.55.1": +"@shapeshiftoss/hdwallet-native@npm:^1.55.1": version: 1.62.28 resolution: "@shapeshiftoss/hdwallet-native@npm:1.62.28" dependencies: @@ -11481,84 +11464,84 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-phantom@npm:1.62.28": - version: 1.62.28 - resolution: "@shapeshiftoss/hdwallet-phantom@npm:1.62.28" +"@shapeshiftoss/hdwallet-phantom@npm:1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-phantom@npm:1.62.29-bitgo-removal.0" dependencies: "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bitcoinjs-message: ^2.0.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: 3ec6856d8a7432720c4891ee1e65f5e63c85e9c4f57c230b4d98961cb3c4870eaf6bb9ee8c26f5e9645d5a66121770ac64a8723d51101e67b2ecb211926aeff1 + checksum: 31f943a8246c9f961e893ca222bfe9236d4b770ce109d44ab18254555f903e011d81b39b9f652efa6d150656ed556d2dfaa86a55beaea9674314dd5e7b018e3c languageName: node linkType: hard -"@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.28": - version: 1.62.28 - resolution: "@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.28" +"@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29-bitgo-removal.0" dependencies: - "@shapeshiftoss/hdwallet-core": 1.62.28 - "@shapeshiftoss/hdwallet-trezor": 1.62.28 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-trezor": ^1.62.29-bitgo-removal.0 "@trezor/connect-web": ^9.6.4 - checksum: 61f19a8022494dadf0fedef4746df077eefd36b3d4a66b8b7df34c00dcd41eaf59aab38093c6a0e6648d640582ef86f0b1a09f315cf5a62541669c6c238fc883 + checksum: 24c749ec99a176c96808143ba357d5c0b6b68e79c31f4fb26f2a7737805dfa8cd3b2d481fd8ac2e467e5af0e6e8a8f1042ceb0aa676f674e345cf2f013865c14 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-trezor@npm:1.62.28": - version: 1.62.28 - resolution: "@shapeshiftoss/hdwallet-trezor@npm:1.62.28" +"@shapeshiftoss/hdwallet-trezor@npm:1.62.29-bitgo-removal.0, @shapeshiftoss/hdwallet-trezor@npm:^1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-trezor@npm:1.62.29-bitgo-removal.0" dependencies: "@ethereumjs/common": 3.2.0 "@ethereumjs/tx": 4.2.0 - "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 base64-js: ^1.5.1 bchaddrjs: ^0.4.4 lodash: ^4.17.21 - checksum: 37dd03d15a5797c10012f48be8823c97fa960ca29a2b9583f3c2c37a1fec2a07db882ab5e81cb65a753cf2730576320a18def7bd513439e3f05868adeec7ebad + checksum: bf2fd3288bdb055f68daa2163f33b67e9cd3b8ac43166f48465516be122f668bf9e346f4eb7c840f24db5a0e14c6c5fda7194109ba0623d2a7c6a69e338cdc25 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-vultisig@npm:1.62.28": - version: 1.62.28 - resolution: "@shapeshiftoss/hdwallet-vultisig@npm:1.62.28" +"@shapeshiftoss/hdwallet-vultisig@npm:1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-vultisig@npm:1.62.29-bitgo-removal.0" dependencies: "@cosmjs/amino": ^0.28.13 "@cosmjs/stargate": ^0.28.13 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bitcoinjs-message: ^2.0.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: 432abd8391e05196b39fac712dbb55cd3a378db6e20990ee440271d1c99a18559f648dcbffb4d27ffbbb1c7364ba46f1e6f9aed19a439273c74bf4e931c933ba + checksum: b232445b5afb5e2eabb4be1962b2051160bede883e47847d49c77dfdb25ecce183ca565c5d89588adf4364866c4e191875459ce07705b824182dfe72182f5316 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-walletconnect@npm:1.62.28": - version: 1.62.28 - resolution: "@shapeshiftoss/hdwallet-walletconnect@npm:1.62.28" +"@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29-bitgo-removal.0" dependencies: - "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 "@walletconnect/qrcode-modal": ^1.7.8 "@walletconnect/web3-provider": ^1.7.8 ethers: ^5.6.5 - checksum: 17887250cfa16adb96cf42740e8d954fc8ad8ebcae99f6231576f012bf81cc94d6f607bf0df879af3114cbf7d398219d48148d4f864825738784ae239b283590 + checksum: c7df8e7f2afbce63136e574a8cafccc1ddc490cf552819a9d39e74a26ada853ae05172d990b4de3d15a728f60fae9e905ab64d2834b4f28f22803db1eb8d63df languageName: node linkType: hard -"@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.28": - version: 1.62.28 - resolution: "@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.28" +"@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29-bitgo-removal.0": + version: 1.62.29-bitgo-removal.0 + resolution: "@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29-bitgo-removal.0" dependencies: - "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 "@walletconnect/ethereum-provider": ^2.20.2 "@walletconnect/modal": ^2.6.2 ethers: ^5.6.5 - checksum: 3186286ae05a340d224750b4409a6ac5fde9de5604c907659a1048704f2c89d7104da0a137cf421f2d700b516963097952d1cca591d72f05f1a1659ff2448a8d + checksum: abd0e48bea2b9e37b6c83251d4e10cba3e8e75386c1f49fe975fec5da8fa71d64df860b301e52e603017785257ecacb8a2d1b883f85f2f2f3de714a3e739664f languageName: node linkType: hard @@ -11668,7 +11651,7 @@ __metadata: "@shapeshiftoss/caip": "workspace:^" "@shapeshiftoss/chain-adapters": "workspace:^" "@shapeshiftoss/contracts": "workspace:^" - "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.0 "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" "@shapeshiftoss/utils": "workspace:^" @@ -11803,24 +11786,24 @@ __metadata: "@shapeshiftoss/chain-adapters": "workspace:^" "@shapeshiftoss/contracts": "workspace:^" "@shapeshiftoss/errors": "workspace:^" - "@shapeshiftoss/hdwallet-coinbase": 1.62.28 - "@shapeshiftoss/hdwallet-core": 1.62.28 - "@shapeshiftoss/hdwallet-gridplus": 1.62.28 - "@shapeshiftoss/hdwallet-keepkey": 1.62.28 - "@shapeshiftoss/hdwallet-keepkey-webusb": 1.62.28 - "@shapeshiftoss/hdwallet-keplr": 1.62.28 - "@shapeshiftoss/hdwallet-ledger": 1.62.28 - "@shapeshiftoss/hdwallet-ledger-webhid": 1.62.28 - "@shapeshiftoss/hdwallet-ledger-webusb": 1.62.28 - "@shapeshiftoss/hdwallet-metamask-multichain": 1.62.28 - "@shapeshiftoss/hdwallet-native": 1.62.28 - "@shapeshiftoss/hdwallet-native-vault": 1.62.28 - "@shapeshiftoss/hdwallet-phantom": 1.62.28 - "@shapeshiftoss/hdwallet-trezor": 1.62.28 - "@shapeshiftoss/hdwallet-trezor-connect": 1.62.28 - "@shapeshiftoss/hdwallet-vultisig": 1.62.28 - "@shapeshiftoss/hdwallet-walletconnect": 1.62.28 - "@shapeshiftoss/hdwallet-walletconnectv2": 1.62.28 + "@shapeshiftoss/hdwallet-coinbase": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-gridplus": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-keepkey": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-keepkey-webusb": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-keplr": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-ledger": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-ledger-webhid": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-ledger-webusb": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-metamask-multichain": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-native": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-native-vault": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-phantom": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-trezor": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-trezor-connect": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-vultisig": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-walletconnect": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-walletconnectv2": 1.62.29-bitgo-removal.0 "@shapeshiftoss/swapper": "workspace:^" "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" @@ -17967,13 +17950,6 @@ __metadata: languageName: node linkType: hard -"bip174@npm:@bitgo-forks/bip174@3.1.0-master.4": - version: 3.1.0-master.4 - resolution: "@bitgo-forks/bip174@npm:3.1.0-master.4" - checksum: 23d8c613cd04368698fa4e8e5bc146a006d5c8d88c24dbe5cddcf793e055d9d86544598bc8617b05a6b44954bc337bc193462d580846814df29f8e09d9cbc955 - languageName: node - linkType: hard - "bip174@npm:^2.0.1": version: 2.0.1 resolution: "bip174@npm:2.0.1" @@ -18032,20 +18008,6 @@ __metadata: languageName: node linkType: hard -"bip32@npm:^3.0.1": - version: 3.1.0 - resolution: "bip32@npm:3.1.0" - dependencies: - bs58check: ^2.1.1 - create-hash: ^1.2.0 - create-hmac: ^1.1.7 - ripemd160: ^2.0.2 - typeforce: ^1.11.5 - wif: ^2.0.6 - checksum: 55bdc5dcae6cf83c000262cee9df912fe3012eeb000ff7cff72547e52442b7a779e93e7a19affbaa105d22f8d95299f8964edb2912f11a2bdd7b31433a7b5bad - languageName: node - linkType: hard - "bip39-light@npm:^1.0.7": version: 1.0.7 resolution: "bip39-light@npm:1.0.7" @@ -18148,24 +18110,6 @@ __metadata: languageName: node linkType: hard -"bitcoinjs-lib@npm:@bitgo-forks/bitcoinjs-lib@7.1.0-master.11": - version: 7.1.0-master.11 - resolution: "@bitgo-forks/bitcoinjs-lib@npm:7.1.0-master.11" - dependencies: - bech32: ^2.0.0 - bip174: "npm:@bitgo-forks/bip174@3.1.0-master.4" - bs58check: ^2.1.2 - create-hash: ^1.1.0 - fastpriorityqueue: ^0.7.1 - json5: ^2.2.3 - ripemd160: ^2.0.2 - typeforce: ^1.11.3 - varuint-bitcoin: ^1.1.2 - wif: ^2.0.1 - checksum: f7760c687fe0705cd3bdd45431742fc871995ea451f669061196eb2b1a5500dcede841597e7a6f909b8ee0bbd42e284fd9a0ce997a1ca82c8e73d57300cfa359 - languageName: node - linkType: hard - "bitcoinjs-lib@npm:^5.0.3, bitcoinjs-lib@npm:^5.2.0": version: 5.2.0 resolution: "bitcoinjs-lib@npm:5.2.0" @@ -18949,15 +18893,6 @@ __metadata: languageName: node linkType: hard -"cashaddress@npm:^1.1.0": - version: 1.1.0 - resolution: "cashaddress@npm:1.1.0" - dependencies: - bigi: ^1.4.2 - checksum: 29d5c6e58502a6641cc9aba07822b328af5a26d9d1d8c3243cc13d1f06a781dbdbbff38d0ab0be46d9ca80664d7de7e0bfb782c6170a1a8b9574fb2b1cc42a9d - languageName: node - linkType: hard - "cashaddrjs@npm:0.4.4": version: 0.4.4 resolution: "cashaddrjs@npm:0.4.4" @@ -21025,17 +20960,6 @@ __metadata: languageName: node linkType: hard -"ecpair@npm:@bitgo/ecpair@2.1.0-rc.0": - version: 2.1.0-rc.0 - resolution: "@bitgo/ecpair@npm:2.1.0-rc.0" - dependencies: - randombytes: ^2.1.0 - typeforce: ^1.18.0 - wif: ^2.0.6 - checksum: 6884491e472ea1e2947f194363b723b88348487b8031512eb8657b9d6d58390586e66adf536707dd5950384442dab96ca059a7afc6f0d3cd975a1c66d0f6aa56 - languageName: node - linkType: hard - "ecpair@npm:^3.0.0-rc.0": version: 3.0.0-rc.0 resolution: "ecpair@npm:3.0.0-rc.0" @@ -23366,13 +23290,6 @@ __metadata: languageName: node linkType: hard -"fastpriorityqueue@npm:^0.7.1": - version: 0.7.5 - resolution: "fastpriorityqueue@npm:0.7.5" - checksum: 1a586d09814c2eebd2c29d85d503ecc016203843c8a93d95e0924a26809da2e35ea14e4ca2f4a138a52ec2faaee9077bb79939cfd0466f7cfcef40dcdd1ffe8a - languageName: node - linkType: hard - "fastq@npm:^1.6.0": version: 1.13.0 resolution: "fastq@npm:1.13.0" @@ -24600,18 +24517,6 @@ __metadata: languageName: node linkType: hard -"hash-base@npm:^3.1.2": - version: 3.1.2 - resolution: "hash-base@npm:3.1.2" - dependencies: - inherits: ^2.0.4 - readable-stream: ^2.3.8 - safe-buffer: ^5.2.1 - to-buffer: ^1.2.1 - checksum: ca7c548098ca2aa3616f8ddb0406c9cadd0fbc35868d885200692b13a3b6d5b30e2b55ab808ff6000c69f11b3c26fd98e5955b1484d79a59fbd07d1d6b65ca4b - languageName: node - linkType: hard - "hash-base@npm:~3.0, hash-base@npm:~3.0.4": version: 3.0.5 resolution: "hash-base@npm:3.0.5" @@ -28031,20 +27936,6 @@ __metadata: languageName: node linkType: hard -"nanoassert@npm:^1.0.0": - version: 1.1.0 - resolution: "nanoassert@npm:1.1.0" - checksum: f360fe639db8edc422de9f5a8a7d384ba9c11e9c6fac149f7ad3b0a94e4ec9d5aa44ce55b3e4c7682658efad792604fc96c336b0e80a3590744104ba58af80c7 - languageName: node - linkType: hard - -"nanoassert@npm:^2.0.0": - version: 2.0.0 - resolution: "nanoassert@npm:2.0.0" - checksum: b1d366f9524405f3337192d32dda6ac0b02374e4d0550c9aad33480caf2eb3c84c06f18f41f4c5404c14f6fc1ae6b84692b4375166dcb9f2d04a2ea9b9bccba0 - languageName: node - linkType: hard - "nanoid@npm:^3.1.31, nanoid@npm:^3.3.6": version: 3.3.6 resolution: "nanoid@npm:3.3.6" @@ -31402,16 +31293,6 @@ pvutils@latest: languageName: node linkType: hard -"ripemd160@npm:^2.0.2": - version: 2.0.3 - resolution: "ripemd160@npm:2.0.3" - dependencies: - hash-base: ^3.1.2 - inherits: ^2.0.4 - checksum: da25591f15d3f03d3a26cabc8255634ee9e0ae89fc053846e6b3975bbdbae6941baeb539dba30e0aaec9a726c7442149de064e13c2510332e119e50beaf3314d - languageName: node - linkType: hard - "ripple-address-codec@npm:^5.0.0": version: 5.0.0 resolution: "ripple-address-codec@npm:5.0.0" @@ -33550,17 +33431,6 @@ pvutils@latest: languageName: node linkType: hard -"to-buffer@npm:^1.2.1": - version: 1.2.2 - resolution: "to-buffer@npm:1.2.2" - dependencies: - isarray: ^2.0.5 - safe-buffer: ^5.2.1 - typed-array-buffer: ^1.0.3 - checksum: b0cd2417989a9f3d47273301e8cec2c9798b19a117822424686f385f3ec0239d2defd5fd9f8e76cda0b21e2a2f5de65a58e806506bf4c296c31750c5efd3ae4b - languageName: node - linkType: hard - "to-fast-properties@npm:^2.0.0": version: 2.0.0 resolution: "to-fast-properties@npm:2.0.0" @@ -35021,7 +34891,7 @@ pvutils@latest: languageName: node linkType: hard -"varuint-bitcoin@npm:1.1.2, varuint-bitcoin@npm:^1.0.1, varuint-bitcoin@npm:^1.0.4, varuint-bitcoin@npm:^1.1.2": +"varuint-bitcoin@npm:1.1.2, varuint-bitcoin@npm:^1.0.1, varuint-bitcoin@npm:^1.0.4": version: 1.1.2 resolution: "varuint-bitcoin@npm:1.1.2" dependencies: From beda98d60796267cdfcfef7d7390d21fdce354a2 Mon Sep 17 00:00:00 2001 From: gomes <17035424+gomesalexandre@users.noreply.github.com> Date: Thu, 11 Dec 2025 20:51:55 +0300 Subject: [PATCH 03/14] fix: update hdwallet to 1.62.29-bitgo-removal.1 Fixes 'Outputs are spending more than Inputs' error by using psbt.data.getTransaction() for unsigned transaction instead of extractTransaction() --- package.json | 36 ++--- packages/chain-adapters/package.json | 4 +- packages/swapper/package.json | 2 +- yarn.lock | 228 +++++++++++++-------------- 4 files changed, 135 insertions(+), 135 deletions(-) diff --git a/package.json b/package.json index 822b16a8fc7..752e0a29311 100644 --- a/package.json +++ b/package.json @@ -100,24 +100,24 @@ "@shapeshiftoss/chain-adapters": "workspace:^", "@shapeshiftoss/contracts": "workspace:^", "@shapeshiftoss/errors": "workspace:^", - "@shapeshiftoss/hdwallet-coinbase": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-gridplus": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-keepkey": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-keplr": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-ledger": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-ledger-webhid": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-ledger-webusb": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-metamask-multichain": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-native": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-native-vault": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-phantom": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-trezor": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-trezor-connect": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-vultisig": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-walletconnect": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-walletconnectv2": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-coinbase": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-gridplus": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-keepkey": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-keplr": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-ledger": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-ledger-webhid": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-ledger-webusb": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-metamask-multichain": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-native": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-native-vault": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-phantom": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-trezor": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-trezor-connect": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-vultisig": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-walletconnect": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-walletconnectv2": "1.62.29-bitgo-removal.1", "@shapeshiftoss/swapper": "workspace:^", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", diff --git a/packages/chain-adapters/package.json b/packages/chain-adapters/package.json index cb75a4cb72d..a5d774eb820 100644 --- a/packages/chain-adapters/package.json +++ b/packages/chain-adapters/package.json @@ -31,8 +31,8 @@ "dependencies": { "@mysten/sui": "1.45.0", "@shapeshiftoss/caip": "workspace:^", - "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.0", - "@shapeshiftoss/hdwallet-ledger": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-ledger": "1.62.29-bitgo-removal.1", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", diff --git a/packages/swapper/package.json b/packages/swapper/package.json index daaa98b70dd..280079b42e2 100644 --- a/packages/swapper/package.json +++ b/packages/swapper/package.json @@ -39,7 +39,7 @@ "@shapeshiftoss/caip": "workspace:^", "@shapeshiftoss/chain-adapters": "workspace:^", "@shapeshiftoss/contracts": "workspace:^", - "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.0", + "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.1", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", diff --git a/yarn.lock b/yarn.lock index 528f81e5b05..618ec1bbe40 100644 --- a/yarn.lock +++ b/yarn.lock @@ -11098,8 +11098,8 @@ __metadata: dependencies: "@mysten/sui": 1.45.0 "@shapeshiftoss/caip": "workspace:^" - "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-ledger": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-ledger": 1.62.29-bitgo-removal.1 "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" "@shapeshiftoss/utils": "workspace:^" @@ -11162,15 +11162,15 @@ __metadata: languageName: unknown linkType: soft -"@shapeshiftoss/hdwallet-coinbase@npm:1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-coinbase@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-coinbase@npm:1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-coinbase@npm:1.62.29-bitgo-removal.1" dependencies: "@coinbase/wallet-sdk": ^3.6.6 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 eth-rpc-errors: ^4.0.3 lodash: ^4.17.21 - checksum: f95827c64443bc8529f5ea699f9fb0f9294307047a6db413b4cf250c9982be4c26966874c38b9d29de6394491e1a9eb83ab3d3504f29554a180d1a97e4f642db + checksum: dfc59368355b100169602c0c7ae1645d23fabc63623b2806c80b2b5dc194ac25deaeb0d653d613c3848216d0d2a87bb10e3edd83c1cf7bccc1b5afdaef37a243 languageName: node linkType: hard @@ -11192,9 +11192,9 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-core@npm:1.62.29-bitgo-removal.0, @shapeshiftoss/hdwallet-core@npm:^1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-core@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-core@npm:1.62.29-bitgo-removal.1, @shapeshiftoss/hdwallet-core@npm:^1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-core@npm:1.62.29-bitgo-removal.1" dependencies: "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 "@shapeshiftoss/proto-tx-builder": 0.10.0 @@ -11206,7 +11206,7 @@ __metadata: lodash: ^4.17.21 rxjs: ^6.4.0 type-assertions: ^1.1.0 - checksum: 083c0684165e9cdccb0b683a72e7df60b38ed7b42bce1b48478dc3e7db7cd6080cddb225364e64f8048f5cd39313bf2ebfe282808ef12528250c515879bca214 + checksum: c8cbfeffe4eeff83163f9f5febfa7134937660229c8918e08735ee247e49b645a6f2d6cec84006a9369f130165de06add3d546c9e42cde96fdfa71e3f5f10ab7 languageName: node linkType: hard @@ -11228,39 +11228,39 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-gridplus@npm:1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-gridplus@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-gridplus@npm:1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-gridplus@npm:1.62.29-bitgo-removal.1" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@ethereumjs/common": 4.4.0 "@ethereumjs/rlp": 5.0.2 "@ethereumjs/tx": 5.4.0 "@metamask/eth-sig-util": ^7.0.0 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 bech32: ^1.1.4 bs58: ^5.0.0 bs58check: ^4.0.0 crypto-js: ^4.2.0 gridplus-sdk: ^3.2.0 lodash: ^4.17.21 - checksum: 5a24fbc0c86bd02ca43e2a1f20bb752e1eec69d831105cbaad0b505a83705bd992d5532e756a5ad9ffbc7ea38e7f335848781796b58bf9629bba7f735c679eef + checksum: 88a8535dd5a6f957d61ddd1841e8aa832cd42b574212d09f0f20a44ed627bb3e4c5716b9bcb2f9af86aad0d2a9f8db8e5cf6ffb4e9d5d62ac8c9f78a3ac69e5e languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29-bitgo-removal.1" dependencies: - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-keepkey": ^1.62.29-bitgo-removal.0 - checksum: 17cbee712b443bfa4bd7cd808ec99dfb8a8768459217dc802190346abfd1cb54bf0b7ccd2fb2620abebf1f94cd49ec1ec9cf61b181e60a9fd422db2b64973fcc + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-keepkey": ^1.62.29-bitgo-removal.1 + checksum: 92a508920973baaf66b44cb210fe633c6e3958e041f9be8fa7402b2bf1f6c32b39d4bec0e60b9e3aa6c9364da5a8be2f80ba3f47a153fdb0309e6ab0a5453ae6 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keepkey@npm:1.62.29-bitgo-removal.0, @shapeshiftoss/hdwallet-keepkey@npm:^1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-keepkey@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-keepkey@npm:1.62.29-bitgo-removal.1, @shapeshiftoss/hdwallet-keepkey@npm:^1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-keepkey@npm:1.62.29-bitgo-removal.1" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@ethereumjs/common": 3.2.0 @@ -11268,7 +11268,7 @@ __metadata: "@keepkey/device-protocol": 7.13.4 "@metamask/eth-sig-util": ^7.0.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 "@shapeshiftoss/proto-tx-builder": 0.10.0 bignumber.js: ^9.0.1 bnb-javascript-sdk-nobroadcast: 2.16.15 @@ -11281,44 +11281,44 @@ __metadata: lodash: ^4.17.21 p-lazy: ^3.1.0 semver: ^7.3.8 - checksum: 66c7a6981081eb3f3f52e126e56079d7cfd19c1eb758a628c44371b2de01b16f556703c47bdbbacd1799c172de6c001f111ed58d2518368016e51e041f7facbc + checksum: 537c9f76a8127874b1d94be7a2236d0f7d5ec0075f02c51053eb2f985fa9674e650b7a924649e8ee949c1c88186d697926e6db3e4b9dde8a3118f2ec54161698 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keplr@npm:1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-keplr@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-keplr@npm:1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-keplr@npm:1.62.29-bitgo-removal.1" dependencies: "@cosmjs/amino": ^0.28.13 "@cosmjs/stargate": ^0.28.13 "@shapeshiftoss/caip": 8.15.0 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 "@shapeshiftoss/proto-tx-builder": 0.10.0 "@shapeshiftoss/types": 3.1.3 base64-js: ^1.5.1 lodash: ^4.17.21 - checksum: e78b9c1b37bb054fcfd709d6db75f3fefb3716fc28151bb37a2df3bfe48abdea6fb9584dfdd32cf401c9b1edf8917c6bca4d15c1deac0380c437430baf55b2b2 + checksum: c5737018d2d5fb3d0144d6f298f89723877d68ed5ff1d02bc2dce42b12d33a76a7029176f5f637484baaafd5a00399d341979ddbc1cc32424b9e2d880b114f41 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29-bitgo-removal.1" dependencies: "@ledgerhq/hw-app-btc": 10.13.0 "@ledgerhq/hw-app-eth": 7.0.0 "@ledgerhq/hw-transport": 6.31.13 "@ledgerhq/hw-transport-webhid": 6.30.6 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-ledger": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-ledger": ^1.62.29-bitgo-removal.1 "@types/w3c-web-hid": ^1.0.2 - checksum: 9ad77f686a71bdcf29cacb565d4a243f2a391dc9225532b213f7bd1101e80ddd0d842dfed616bfa68e6d7f44c97638c068f0d9c40cf6f1af9061d103f292e3b1 + checksum: 8d2a24767ee44e3f6a1b0832dd11221af845b0f0a27e0b76075798146908ff4ce182c5611666ba56d20c4247d9115ec96533b6430704e604ce6c13e01d82bd00 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29-bitgo-removal.1" dependencies: "@ledgerhq/hw-app-btc": 10.13.0 "@ledgerhq/hw-app-cosmos": 6.32.9 @@ -11326,17 +11326,17 @@ __metadata: "@ledgerhq/hw-app-solana": 7.6.0 "@ledgerhq/hw-transport": 6.31.13 "@ledgerhq/hw-transport-webusb": 6.29.13 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-ledger": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-ledger": ^1.62.29-bitgo-removal.1 "@types/w3c-web-usb": ^1.0.4 p-queue: ^7.4.1 - checksum: 53b59e0c3441167e0760fddbd32176139a7303876bc6d3ec1b639e9dca38b969b745b9d9de96a936418a3ee4f2acdde140929aabcae03cc326027b2f50e2f6b7 + checksum: 42e92d174581375a2a82cf055dce747a28a61094539de0d165eaf6bf1ea7a43b56ce16898834bbcac49224ee58d064af3cbc27c79bb761b49b722ed4eee9d8b1 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger@npm:1.62.29-bitgo-removal.0, @shapeshiftoss/hdwallet-ledger@npm:^1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-ledger@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-ledger@npm:1.62.29-bitgo-removal.1, @shapeshiftoss/hdwallet-ledger@npm:^1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-ledger@npm:1.62.29-bitgo-removal.1" dependencies: "@ethereumjs/common": 3.2.0 "@ethereumjs/tx": 4.2.0 @@ -11350,7 +11350,7 @@ __metadata: "@ledgerhq/logs": 6.13.0 "@mysten/ledgerjs-hw-app-sui": ^0.7.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bchaddrjs: ^0.4.4 @@ -11360,33 +11360,33 @@ __metadata: ethereumjs-util: ^6.1.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: e2b1524c9ae2ef392da360b02b0b36b1390a11ecd6701d83886afdfd9b36127c7efd048a15bb4d8d1e7ac3c9d55bbc342e8b42047883b6a1c35bd68d1dac0b03 + checksum: 406fb8ae0c34bfc304fa0ce4d39367fe03cda0c6b07feb5a4858600c6fb0c1684f67ff5b95c57a1f9ca09a34b7612769eec19a3f59b8ffa14c4b4a9a941eda05 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29-bitgo-removal.1" dependencies: "@metamask/detect-provider": ^1.2.0 "@metamask/onboarding": ^1.0.1 "@shapeshiftoss/common-api": ^9.3.0 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 "@shapeshiftoss/metamask-snaps-adapter": ^1.0.12 "@shapeshiftoss/metamask-snaps-types": ^1.0.12 eth-rpc-errors: ^4.0.3 lodash: ^4.17.21 mipd: ^0.0.7 - checksum: 76c2ff6165734c57c1f2a753c37baef7382f571c4bd922b3706b86f56ad5b2c95a86c8e7a67e0399a7aacbae3f87f1b38adb2baf0076e3cda10e0320a81fe5a5 + checksum: c3a095799997efda3e3df8cc82a31dad556aaeaeab92bdf44ffe2853449a5d6ed320a83c2d7f321503137d323b30a4349d7b293a9cd72f1951396b1c8039c309 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-native-vault@npm:1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-native-vault@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-native-vault@npm:1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-native-vault@npm:1.62.29-bitgo-removal.1" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 - "@shapeshiftoss/hdwallet-native": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-native": ^1.62.29-bitgo-removal.1 bip39: ^3.0.4 hash-wasm: ^4.11.0 idb-keyval: ^6.0.3 @@ -11394,18 +11394,18 @@ __metadata: p-lazy: ^3.1.0 type-assertions: ^1.1.0 uuid: ^8.3.2 - checksum: 912b357d3a2f65276ae17fd0409908b0b05637f0af02d95113a1187fcec0d34e7dad961826f969fd71f604dfa5ad2cad67cd74302eb94d42798a96e193a2863d + checksum: 503f1da429db0f73508dd7113865dba8b72c164a0a55a1e12bf9b846e57851b4a0ee4bcdfa8e2dfcedde2a59a6800950b007c156e4115c2f01499ef42bd92dee languageName: node linkType: hard -"@shapeshiftoss/hdwallet-native@npm:1.62.29-bitgo-removal.0, @shapeshiftoss/hdwallet-native@npm:^1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-native@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-native@npm:1.62.29-bitgo-removal.1, @shapeshiftoss/hdwallet-native@npm:^1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-native@npm:1.62.29-bitgo-removal.1" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@noble/curves": ^1.4.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 "@shapeshiftoss/proto-tx-builder": 0.10.0 "@zxing/text-encoding": ^0.9.0 bchaddrjs: ^0.4.9 @@ -11427,7 +11427,7 @@ __metadata: p-lazy: ^3.1.0 scrypt-js: ^3.0.1 tendermint-tx-builder: 1.0.16 - checksum: b9bd49e4556651035fbb4d95a74bb803835629af21e880444391fcd47ced819394a6b19496c1560b4caf299ebb6fded591025389802cb5c2d2c25abda062b25f + checksum: 8b37b37220e56bd20cbd9f78ea611fa67527ac864ba63e737bf5d4c1a25bf9f0094a171fb4ea22b045a521de5c6a6dbe9dba2970c92078cb1b34a69b2bb9f71b languageName: node linkType: hard @@ -11464,84 +11464,84 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-phantom@npm:1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-phantom@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-phantom@npm:1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-phantom@npm:1.62.29-bitgo-removal.1" dependencies: "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bitcoinjs-message: ^2.0.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: 31f943a8246c9f961e893ca222bfe9236d4b770ce109d44ab18254555f903e011d81b39b9f652efa6d150656ed556d2dfaa86a55beaea9674314dd5e7b018e3c + checksum: 9018f93b088ff8c0a9d325e7a2367a6b099cb2c3966f66b91d1020b2d56c22b0175011f83cb325525396ae0d8352c309784b1cbd24a28c772ba2b99c5aa27b28 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29-bitgo-removal.1" dependencies: - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-trezor": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-trezor": ^1.62.29-bitgo-removal.1 "@trezor/connect-web": ^9.6.4 - checksum: 24c749ec99a176c96808143ba357d5c0b6b68e79c31f4fb26f2a7737805dfa8cd3b2d481fd8ac2e467e5af0e6e8a8f1042ceb0aa676f674e345cf2f013865c14 + checksum: 0ef7a55f5d82c83e55de1885b9796d31979ff8b869a637a566c39936a994de60491c0eb94ab72aa8f2171709386bca27663d7435143080e6f5aa2fb229b05936 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-trezor@npm:1.62.29-bitgo-removal.0, @shapeshiftoss/hdwallet-trezor@npm:^1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-trezor@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-trezor@npm:1.62.29-bitgo-removal.1, @shapeshiftoss/hdwallet-trezor@npm:^1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-trezor@npm:1.62.29-bitgo-removal.1" dependencies: "@ethereumjs/common": 3.2.0 "@ethereumjs/tx": 4.2.0 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 base64-js: ^1.5.1 bchaddrjs: ^0.4.4 lodash: ^4.17.21 - checksum: bf2fd3288bdb055f68daa2163f33b67e9cd3b8ac43166f48465516be122f668bf9e346f4eb7c840f24db5a0e14c6c5fda7194109ba0623d2a7c6a69e338cdc25 + checksum: 1bc72a64b520d7c2359f3bd75aee8a2ead711f91af3e445735042dc27c6fd82e9ebd35aca564cc38a18745f4083e8d2e6d4c3b1fabb9aab1c8546770f27d16b3 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-vultisig@npm:1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-vultisig@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-vultisig@npm:1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-vultisig@npm:1.62.29-bitgo-removal.1" dependencies: "@cosmjs/amino": ^0.28.13 "@cosmjs/stargate": ^0.28.13 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bitcoinjs-message: ^2.0.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: b232445b5afb5e2eabb4be1962b2051160bede883e47847d49c77dfdb25ecce183ca565c5d89588adf4364866c4e191875459ce07705b824182dfe72182f5316 + checksum: 73c6a36c0de162f3eede7dc8bdd8ca2a07d34c71da2737d3bb38377b39d55ec56c81fc10e30cf739852c969949b3a19851c14c595a7dab8371164480f7062528 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29-bitgo-removal.1" dependencies: - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 "@walletconnect/qrcode-modal": ^1.7.8 "@walletconnect/web3-provider": ^1.7.8 ethers: ^5.6.5 - checksum: c7df8e7f2afbce63136e574a8cafccc1ddc490cf552819a9d39e74a26ada853ae05172d990b4de3d15a728f60fae9e905ab64d2834b4f28f22803db1eb8d63df + checksum: 02842e17b07d965303e1737fbe1b07ee71543c6ba9b0cff13362e8637eb635ccd768a770731c966b18fa957a97b213ca1a6ee3c0e57c645bcb3872d9d930442b languageName: node linkType: hard -"@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29-bitgo-removal.0": - version: 1.62.29-bitgo-removal.0 - resolution: "@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29-bitgo-removal.0" +"@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29-bitgo-removal.1": + version: 1.62.29-bitgo-removal.1 + resolution: "@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29-bitgo-removal.1" dependencies: - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 "@walletconnect/ethereum-provider": ^2.20.2 "@walletconnect/modal": ^2.6.2 ethers: ^5.6.5 - checksum: abd0e48bea2b9e37b6c83251d4e10cba3e8e75386c1f49fe975fec5da8fa71d64df860b301e52e603017785257ecacb8a2d1b883f85f2f2f3de714a3e739664f + checksum: 48f2c758d960e55fbf8a382332f8c4066fd3d79489955950868f22caba325da019828c7506498bbc979f475d545bbc98afbe566346d92f28b229717f4bc7f860 languageName: node linkType: hard @@ -11651,7 +11651,7 @@ __metadata: "@shapeshiftoss/caip": "workspace:^" "@shapeshiftoss/chain-adapters": "workspace:^" "@shapeshiftoss/contracts": "workspace:^" - "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.1 "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" "@shapeshiftoss/utils": "workspace:^" @@ -11786,24 +11786,24 @@ __metadata: "@shapeshiftoss/chain-adapters": "workspace:^" "@shapeshiftoss/contracts": "workspace:^" "@shapeshiftoss/errors": "workspace:^" - "@shapeshiftoss/hdwallet-coinbase": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-gridplus": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-keepkey": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-keepkey-webusb": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-keplr": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-ledger": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-ledger-webhid": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-ledger-webusb": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-metamask-multichain": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-native": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-native-vault": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-phantom": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-trezor": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-trezor-connect": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-vultisig": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-walletconnect": 1.62.29-bitgo-removal.0 - "@shapeshiftoss/hdwallet-walletconnectv2": 1.62.29-bitgo-removal.0 + "@shapeshiftoss/hdwallet-coinbase": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-gridplus": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-keepkey": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-keepkey-webusb": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-keplr": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-ledger": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-ledger-webhid": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-ledger-webusb": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-metamask-multichain": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-native": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-native-vault": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-phantom": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-trezor": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-trezor-connect": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-vultisig": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-walletconnect": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-walletconnectv2": 1.62.29-bitgo-removal.1 "@shapeshiftoss/swapper": "workspace:^" "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" From 622772a047a27659b92dfc0f56c0d00a6d6e2ba0 Mon Sep 17 00:00:00 2001 From: gomes <17035424+gomesalexandre@users.noreply.github.com> Date: Thu, 11 Dec 2025 21:11:22 +0300 Subject: [PATCH 04/14] fix: update hdwallet to 1.62.29-bitgo-removal.2 Access internal PSBT transaction to preserve Zcash consensus fields --- package.json | 36 ++--- packages/chain-adapters/package.json | 4 +- packages/swapper/package.json | 2 +- yarn.lock | 228 +++++++++++++-------------- 4 files changed, 135 insertions(+), 135 deletions(-) diff --git a/package.json b/package.json index 752e0a29311..3cc8e3a69dd 100644 --- a/package.json +++ b/package.json @@ -100,24 +100,24 @@ "@shapeshiftoss/chain-adapters": "workspace:^", "@shapeshiftoss/contracts": "workspace:^", "@shapeshiftoss/errors": "workspace:^", - "@shapeshiftoss/hdwallet-coinbase": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-gridplus": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-keepkey": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-keplr": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-ledger": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-ledger-webhid": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-ledger-webusb": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-metamask-multichain": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-native": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-native-vault": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-phantom": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-trezor": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-trezor-connect": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-vultisig": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-walletconnect": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-walletconnectv2": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-coinbase": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-gridplus": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-keepkey": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-keplr": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-ledger": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-ledger-webhid": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-ledger-webusb": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-metamask-multichain": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-native": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-native-vault": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-phantom": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-trezor": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-trezor-connect": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-vultisig": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-walletconnect": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-walletconnectv2": "1.62.29-bitgo-removal.2", "@shapeshiftoss/swapper": "workspace:^", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", diff --git a/packages/chain-adapters/package.json b/packages/chain-adapters/package.json index a5d774eb820..2dd0a4baaf9 100644 --- a/packages/chain-adapters/package.json +++ b/packages/chain-adapters/package.json @@ -31,8 +31,8 @@ "dependencies": { "@mysten/sui": "1.45.0", "@shapeshiftoss/caip": "workspace:^", - "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.1", - "@shapeshiftoss/hdwallet-ledger": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-ledger": "1.62.29-bitgo-removal.2", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", diff --git a/packages/swapper/package.json b/packages/swapper/package.json index 280079b42e2..bb73b4b8c8d 100644 --- a/packages/swapper/package.json +++ b/packages/swapper/package.json @@ -39,7 +39,7 @@ "@shapeshiftoss/caip": "workspace:^", "@shapeshiftoss/chain-adapters": "workspace:^", "@shapeshiftoss/contracts": "workspace:^", - "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.1", + "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.2", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", diff --git a/yarn.lock b/yarn.lock index 618ec1bbe40..5e52fca9ee4 100644 --- a/yarn.lock +++ b/yarn.lock @@ -11098,8 +11098,8 @@ __metadata: dependencies: "@mysten/sui": 1.45.0 "@shapeshiftoss/caip": "workspace:^" - "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-ledger": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-ledger": 1.62.29-bitgo-removal.2 "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" "@shapeshiftoss/utils": "workspace:^" @@ -11162,15 +11162,15 @@ __metadata: languageName: unknown linkType: soft -"@shapeshiftoss/hdwallet-coinbase@npm:1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-coinbase@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-coinbase@npm:1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-coinbase@npm:1.62.29-bitgo-removal.2" dependencies: "@coinbase/wallet-sdk": ^3.6.6 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 eth-rpc-errors: ^4.0.3 lodash: ^4.17.21 - checksum: dfc59368355b100169602c0c7ae1645d23fabc63623b2806c80b2b5dc194ac25deaeb0d653d613c3848216d0d2a87bb10e3edd83c1cf7bccc1b5afdaef37a243 + checksum: 1c9875942fde01075bd481f1ce972317effe0583fc3ba83a6cc48d6efe15ce6dbbb08db4e17a02a33d77fe0773d22de8e5912c4e529e30514b0a94b8c987e3e4 languageName: node linkType: hard @@ -11192,9 +11192,9 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-core@npm:1.62.29-bitgo-removal.1, @shapeshiftoss/hdwallet-core@npm:^1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-core@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-core@npm:1.62.29-bitgo-removal.2, @shapeshiftoss/hdwallet-core@npm:^1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-core@npm:1.62.29-bitgo-removal.2" dependencies: "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 "@shapeshiftoss/proto-tx-builder": 0.10.0 @@ -11206,7 +11206,7 @@ __metadata: lodash: ^4.17.21 rxjs: ^6.4.0 type-assertions: ^1.1.0 - checksum: c8cbfeffe4eeff83163f9f5febfa7134937660229c8918e08735ee247e49b645a6f2d6cec84006a9369f130165de06add3d546c9e42cde96fdfa71e3f5f10ab7 + checksum: ae960437d8b007f54cda783d9322b01987eb4a39598d98b32147c9c90c39b93d81af12cc1f8f95198bdf44d22e7887d65570770d06c5da893111e87f6b4c2e84 languageName: node linkType: hard @@ -11228,39 +11228,39 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-gridplus@npm:1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-gridplus@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-gridplus@npm:1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-gridplus@npm:1.62.29-bitgo-removal.2" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@ethereumjs/common": 4.4.0 "@ethereumjs/rlp": 5.0.2 "@ethereumjs/tx": 5.4.0 "@metamask/eth-sig-util": ^7.0.0 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 bech32: ^1.1.4 bs58: ^5.0.0 bs58check: ^4.0.0 crypto-js: ^4.2.0 gridplus-sdk: ^3.2.0 lodash: ^4.17.21 - checksum: 88a8535dd5a6f957d61ddd1841e8aa832cd42b574212d09f0f20a44ed627bb3e4c5716b9bcb2f9af86aad0d2a9f8db8e5cf6ffb4e9d5d62ac8c9f78a3ac69e5e + checksum: a8aa29efe7f0ba586ca193f7ba6ef008a0e7de7dc5bb2231c3017c75178798f5130fb7388185249492cee00e69bfb091152056bc789f2c2cdbff15fcb7c53d33 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29-bitgo-removal.2" dependencies: - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-keepkey": ^1.62.29-bitgo-removal.1 - checksum: 92a508920973baaf66b44cb210fe633c6e3958e041f9be8fa7402b2bf1f6c32b39d4bec0e60b9e3aa6c9364da5a8be2f80ba3f47a153fdb0309e6ab0a5453ae6 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-keepkey": ^1.62.29-bitgo-removal.2 + checksum: 2776c3b58f0e7cc3ddd3a2afcb83a743b51a2866cf0201d18279607bb8a27cc70f6a7c03990d62aee53cd2297da0778192bed8e6f71a8334a298c822d12ef4a4 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keepkey@npm:1.62.29-bitgo-removal.1, @shapeshiftoss/hdwallet-keepkey@npm:^1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-keepkey@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-keepkey@npm:1.62.29-bitgo-removal.2, @shapeshiftoss/hdwallet-keepkey@npm:^1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-keepkey@npm:1.62.29-bitgo-removal.2" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@ethereumjs/common": 3.2.0 @@ -11268,7 +11268,7 @@ __metadata: "@keepkey/device-protocol": 7.13.4 "@metamask/eth-sig-util": ^7.0.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 "@shapeshiftoss/proto-tx-builder": 0.10.0 bignumber.js: ^9.0.1 bnb-javascript-sdk-nobroadcast: 2.16.15 @@ -11281,44 +11281,44 @@ __metadata: lodash: ^4.17.21 p-lazy: ^3.1.0 semver: ^7.3.8 - checksum: 537c9f76a8127874b1d94be7a2236d0f7d5ec0075f02c51053eb2f985fa9674e650b7a924649e8ee949c1c88186d697926e6db3e4b9dde8a3118f2ec54161698 + checksum: 488c6bc3a5b3754c7d3a19a67fee0dc6858a06be09d2bf91b0682178a629917c462a71b1c210d0afa607c4930ba9a752b9067eb9c416f4c77dd466123227548e languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keplr@npm:1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-keplr@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-keplr@npm:1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-keplr@npm:1.62.29-bitgo-removal.2" dependencies: "@cosmjs/amino": ^0.28.13 "@cosmjs/stargate": ^0.28.13 "@shapeshiftoss/caip": 8.15.0 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 "@shapeshiftoss/proto-tx-builder": 0.10.0 "@shapeshiftoss/types": 3.1.3 base64-js: ^1.5.1 lodash: ^4.17.21 - checksum: c5737018d2d5fb3d0144d6f298f89723877d68ed5ff1d02bc2dce42b12d33a76a7029176f5f637484baaafd5a00399d341979ddbc1cc32424b9e2d880b114f41 + checksum: 2a575e674e6400d4bc54d08e173cd2cd3c68684c3ccbcbfae71aed39b57622c02e2e9ba2f1b30900fc332e4e3be79faabb6438fb986c8975fc03aacf85fdc449 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29-bitgo-removal.2" dependencies: "@ledgerhq/hw-app-btc": 10.13.0 "@ledgerhq/hw-app-eth": 7.0.0 "@ledgerhq/hw-transport": 6.31.13 "@ledgerhq/hw-transport-webhid": 6.30.6 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-ledger": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-ledger": ^1.62.29-bitgo-removal.2 "@types/w3c-web-hid": ^1.0.2 - checksum: 8d2a24767ee44e3f6a1b0832dd11221af845b0f0a27e0b76075798146908ff4ce182c5611666ba56d20c4247d9115ec96533b6430704e604ce6c13e01d82bd00 + checksum: 3059990890f2183aa62594f67e58b11f654dc554f3faac7d31af5cb66ae7992cd0ff7be1c64e1d446656a5c5760b56661e103ef542dc2e1818ae939be89206f0 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29-bitgo-removal.2" dependencies: "@ledgerhq/hw-app-btc": 10.13.0 "@ledgerhq/hw-app-cosmos": 6.32.9 @@ -11326,17 +11326,17 @@ __metadata: "@ledgerhq/hw-app-solana": 7.6.0 "@ledgerhq/hw-transport": 6.31.13 "@ledgerhq/hw-transport-webusb": 6.29.13 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-ledger": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-ledger": ^1.62.29-bitgo-removal.2 "@types/w3c-web-usb": ^1.0.4 p-queue: ^7.4.1 - checksum: 42e92d174581375a2a82cf055dce747a28a61094539de0d165eaf6bf1ea7a43b56ce16898834bbcac49224ee58d064af3cbc27c79bb761b49b722ed4eee9d8b1 + checksum: aaf40fa358048cba5ef5f0daa5df07d0271d8efac890492aec3fd729cf50a65b96212b0d3f7f98b51d3afc3753213426b7b23b21d63b206b9664b18a51d4d3bd languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger@npm:1.62.29-bitgo-removal.1, @shapeshiftoss/hdwallet-ledger@npm:^1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-ledger@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-ledger@npm:1.62.29-bitgo-removal.2, @shapeshiftoss/hdwallet-ledger@npm:^1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-ledger@npm:1.62.29-bitgo-removal.2" dependencies: "@ethereumjs/common": 3.2.0 "@ethereumjs/tx": 4.2.0 @@ -11350,7 +11350,7 @@ __metadata: "@ledgerhq/logs": 6.13.0 "@mysten/ledgerjs-hw-app-sui": ^0.7.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bchaddrjs: ^0.4.4 @@ -11360,33 +11360,33 @@ __metadata: ethereumjs-util: ^6.1.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: 406fb8ae0c34bfc304fa0ce4d39367fe03cda0c6b07feb5a4858600c6fb0c1684f67ff5b95c57a1f9ca09a34b7612769eec19a3f59b8ffa14c4b4a9a941eda05 + checksum: 94f0098cd2b04e6eeb62be985d41a342ff67938bf907b0900ce0ec7ed72b5ac17c0084e8a52305dd15721bb650f5aa0150e6e705cfd5a066d5f299b2217646af languageName: node linkType: hard -"@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29-bitgo-removal.2" dependencies: "@metamask/detect-provider": ^1.2.0 "@metamask/onboarding": ^1.0.1 "@shapeshiftoss/common-api": ^9.3.0 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 "@shapeshiftoss/metamask-snaps-adapter": ^1.0.12 "@shapeshiftoss/metamask-snaps-types": ^1.0.12 eth-rpc-errors: ^4.0.3 lodash: ^4.17.21 mipd: ^0.0.7 - checksum: c3a095799997efda3e3df8cc82a31dad556aaeaeab92bdf44ffe2853449a5d6ed320a83c2d7f321503137d323b30a4349d7b293a9cd72f1951396b1c8039c309 + checksum: e5d31367abd45f42ddc7aabc83bc4aa509edc762b277649ee8a5c1cf0e2d4c836574c55165b6cba6063d05e4b95a5e4a8e6139610598bdaa8b1772b27f552af2 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-native-vault@npm:1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-native-vault@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-native-vault@npm:1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-native-vault@npm:1.62.29-bitgo-removal.2" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 - "@shapeshiftoss/hdwallet-native": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-native": ^1.62.29-bitgo-removal.2 bip39: ^3.0.4 hash-wasm: ^4.11.0 idb-keyval: ^6.0.3 @@ -11394,18 +11394,18 @@ __metadata: p-lazy: ^3.1.0 type-assertions: ^1.1.0 uuid: ^8.3.2 - checksum: 503f1da429db0f73508dd7113865dba8b72c164a0a55a1e12bf9b846e57851b4a0ee4bcdfa8e2dfcedde2a59a6800950b007c156e4115c2f01499ef42bd92dee + checksum: c862124a1534f8a5bd8109a4a105976e1eebf755ce39a240cdf0008eb6eb913f06eea9f4110c18455ca4926bbd86052114b56668fc8308412f52a886675a3d86 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-native@npm:1.62.29-bitgo-removal.1, @shapeshiftoss/hdwallet-native@npm:^1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-native@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-native@npm:1.62.29-bitgo-removal.2, @shapeshiftoss/hdwallet-native@npm:^1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-native@npm:1.62.29-bitgo-removal.2" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@noble/curves": ^1.4.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 "@shapeshiftoss/proto-tx-builder": 0.10.0 "@zxing/text-encoding": ^0.9.0 bchaddrjs: ^0.4.9 @@ -11427,7 +11427,7 @@ __metadata: p-lazy: ^3.1.0 scrypt-js: ^3.0.1 tendermint-tx-builder: 1.0.16 - checksum: 8b37b37220e56bd20cbd9f78ea611fa67527ac864ba63e737bf5d4c1a25bf9f0094a171fb4ea22b045a521de5c6a6dbe9dba2970c92078cb1b34a69b2bb9f71b + checksum: e3827528034c5dfdf7ed008e040d86f4eb23dbe9100ffb5345086cc68006c718dbcb07a84f78432fcfacfc39f8baab74315a22e03336f798d5648603c1a13b4b languageName: node linkType: hard @@ -11464,84 +11464,84 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-phantom@npm:1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-phantom@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-phantom@npm:1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-phantom@npm:1.62.29-bitgo-removal.2" dependencies: "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bitcoinjs-message: ^2.0.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: 9018f93b088ff8c0a9d325e7a2367a6b099cb2c3966f66b91d1020b2d56c22b0175011f83cb325525396ae0d8352c309784b1cbd24a28c772ba2b99c5aa27b28 + checksum: 6484fa972f0f2c212b4bc01dbde5b8f30e7d5fcc00993dd23bdff401eaf6bd5a6aafd92c7cdaceb1b8d4f710fa280a17b164b8735a36858829bad98769127179 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29-bitgo-removal.2" dependencies: - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-trezor": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-trezor": ^1.62.29-bitgo-removal.2 "@trezor/connect-web": ^9.6.4 - checksum: 0ef7a55f5d82c83e55de1885b9796d31979ff8b869a637a566c39936a994de60491c0eb94ab72aa8f2171709386bca27663d7435143080e6f5aa2fb229b05936 + checksum: 3ff1a975d77b1f45c0067702ac51342c53b762f12cbd98d24245f33aac1c7f2e852f382513d913303a3db4a5efe34584ae4eaa8f5e272d9b38171a3f56e0237d languageName: node linkType: hard -"@shapeshiftoss/hdwallet-trezor@npm:1.62.29-bitgo-removal.1, @shapeshiftoss/hdwallet-trezor@npm:^1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-trezor@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-trezor@npm:1.62.29-bitgo-removal.2, @shapeshiftoss/hdwallet-trezor@npm:^1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-trezor@npm:1.62.29-bitgo-removal.2" dependencies: "@ethereumjs/common": 3.2.0 "@ethereumjs/tx": 4.2.0 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 base64-js: ^1.5.1 bchaddrjs: ^0.4.4 lodash: ^4.17.21 - checksum: 1bc72a64b520d7c2359f3bd75aee8a2ead711f91af3e445735042dc27c6fd82e9ebd35aca564cc38a18745f4083e8d2e6d4c3b1fabb9aab1c8546770f27d16b3 + checksum: 8caa3378b60deea96c8fab57bb01defa02a6d7f8010d92a61c4c1404a4708ccca4fd7e9feefee5866bb05671a9fd1b053679fadedf649632d2c3872f6de4dd43 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-vultisig@npm:1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-vultisig@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-vultisig@npm:1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-vultisig@npm:1.62.29-bitgo-removal.2" dependencies: "@cosmjs/amino": ^0.28.13 "@cosmjs/stargate": ^0.28.13 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bitcoinjs-message: ^2.0.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: 73c6a36c0de162f3eede7dc8bdd8ca2a07d34c71da2737d3bb38377b39d55ec56c81fc10e30cf739852c969949b3a19851c14c595a7dab8371164480f7062528 + checksum: b7e43a696c9eb2534962f6af411d47c4ac1861e03256cd8cd28baa521633eba2a0bd3aeb8a605cdfea7f5595dbeb7df361cbab3f4d641c118368bd44f5963a0e languageName: node linkType: hard -"@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29-bitgo-removal.2" dependencies: - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 "@walletconnect/qrcode-modal": ^1.7.8 "@walletconnect/web3-provider": ^1.7.8 ethers: ^5.6.5 - checksum: 02842e17b07d965303e1737fbe1b07ee71543c6ba9b0cff13362e8637eb635ccd768a770731c966b18fa957a97b213ca1a6ee3c0e57c645bcb3872d9d930442b + checksum: f5c9a5bb11e7e1bcfb5549946369924cd8a195814435f13e3197df0a88afa7b5ffe2d8c32ac9de276975ba16cf66f0427fdfdddc05b4d486bb121e5268526335 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29-bitgo-removal.1": - version: 1.62.29-bitgo-removal.1 - resolution: "@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29-bitgo-removal.1" +"@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29-bitgo-removal.2": + version: 1.62.29-bitgo-removal.2 + resolution: "@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29-bitgo-removal.2" dependencies: - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 "@walletconnect/ethereum-provider": ^2.20.2 "@walletconnect/modal": ^2.6.2 ethers: ^5.6.5 - checksum: 48f2c758d960e55fbf8a382332f8c4066fd3d79489955950868f22caba325da019828c7506498bbc979f475d545bbc98afbe566346d92f28b229717f4bc7f860 + checksum: 68c85f9071f207051cad4a4f708b793a452d238ccc6f6d0bfa3be0aa56092e2dbbc41e73ff0dc99b3758163b46b984d858acbc850cf03a0aa48c7ef39d2b9d5d languageName: node linkType: hard @@ -11651,7 +11651,7 @@ __metadata: "@shapeshiftoss/caip": "workspace:^" "@shapeshiftoss/chain-adapters": "workspace:^" "@shapeshiftoss/contracts": "workspace:^" - "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.2 "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" "@shapeshiftoss/utils": "workspace:^" @@ -11786,24 +11786,24 @@ __metadata: "@shapeshiftoss/chain-adapters": "workspace:^" "@shapeshiftoss/contracts": "workspace:^" "@shapeshiftoss/errors": "workspace:^" - "@shapeshiftoss/hdwallet-coinbase": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-gridplus": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-keepkey": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-keepkey-webusb": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-keplr": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-ledger": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-ledger-webhid": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-ledger-webusb": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-metamask-multichain": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-native": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-native-vault": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-phantom": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-trezor": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-trezor-connect": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-vultisig": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-walletconnect": 1.62.29-bitgo-removal.1 - "@shapeshiftoss/hdwallet-walletconnectv2": 1.62.29-bitgo-removal.1 + "@shapeshiftoss/hdwallet-coinbase": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-gridplus": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-keepkey": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-keepkey-webusb": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-keplr": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-ledger": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-ledger-webhid": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-ledger-webusb": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-metamask-multichain": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-native": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-native-vault": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-phantom": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-trezor": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-trezor-connect": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-vultisig": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-walletconnect": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-walletconnectv2": 1.62.29-bitgo-removal.2 "@shapeshiftoss/swapper": "workspace:^" "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" From 30dfee68cd0e1744a0995287c1e5499abcf11b9d Mon Sep 17 00:00:00 2001 From: gomes <17035424+gomesalexandre@users.noreply.github.com> Date: Thu, 11 Dec 2025 21:38:47 +0300 Subject: [PATCH 05/14] fix: update hdwallet to 1.62.29-bitgo-removal.3 - Clean PSBT API usage (no __CACHE.__TX access) - Safe blockHeight handling for unconfirmed Zcash inputs --- package.json | 36 ++--- packages/chain-adapters/package.json | 4 +- packages/swapper/package.json | 2 +- yarn.lock | 228 +++++++++++++-------------- 4 files changed, 135 insertions(+), 135 deletions(-) diff --git a/package.json b/package.json index 3cc8e3a69dd..2ebcd731c28 100644 --- a/package.json +++ b/package.json @@ -100,24 +100,24 @@ "@shapeshiftoss/chain-adapters": "workspace:^", "@shapeshiftoss/contracts": "workspace:^", "@shapeshiftoss/errors": "workspace:^", - "@shapeshiftoss/hdwallet-coinbase": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-gridplus": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-keepkey": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-keplr": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-ledger": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-ledger-webhid": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-ledger-webusb": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-metamask-multichain": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-native": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-native-vault": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-phantom": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-trezor": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-trezor-connect": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-vultisig": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-walletconnect": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-walletconnectv2": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-coinbase": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-gridplus": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-keepkey": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-keplr": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-ledger": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-ledger-webhid": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-ledger-webusb": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-metamask-multichain": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-native": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-native-vault": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-phantom": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-trezor": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-trezor-connect": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-vultisig": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-walletconnect": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-walletconnectv2": "1.62.29-bitgo-removal.3", "@shapeshiftoss/swapper": "workspace:^", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", diff --git a/packages/chain-adapters/package.json b/packages/chain-adapters/package.json index 2dd0a4baaf9..99d0265d5cf 100644 --- a/packages/chain-adapters/package.json +++ b/packages/chain-adapters/package.json @@ -31,8 +31,8 @@ "dependencies": { "@mysten/sui": "1.45.0", "@shapeshiftoss/caip": "workspace:^", - "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.2", - "@shapeshiftoss/hdwallet-ledger": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-ledger": "1.62.29-bitgo-removal.3", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", diff --git a/packages/swapper/package.json b/packages/swapper/package.json index bb73b4b8c8d..68bf2aa8939 100644 --- a/packages/swapper/package.json +++ b/packages/swapper/package.json @@ -39,7 +39,7 @@ "@shapeshiftoss/caip": "workspace:^", "@shapeshiftoss/chain-adapters": "workspace:^", "@shapeshiftoss/contracts": "workspace:^", - "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.2", + "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.3", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", diff --git a/yarn.lock b/yarn.lock index 5e52fca9ee4..08d7dc6e5cf 100644 --- a/yarn.lock +++ b/yarn.lock @@ -11098,8 +11098,8 @@ __metadata: dependencies: "@mysten/sui": 1.45.0 "@shapeshiftoss/caip": "workspace:^" - "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-ledger": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-ledger": 1.62.29-bitgo-removal.3 "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" "@shapeshiftoss/utils": "workspace:^" @@ -11162,15 +11162,15 @@ __metadata: languageName: unknown linkType: soft -"@shapeshiftoss/hdwallet-coinbase@npm:1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-coinbase@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-coinbase@npm:1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-coinbase@npm:1.62.29-bitgo-removal.3" dependencies: "@coinbase/wallet-sdk": ^3.6.6 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 eth-rpc-errors: ^4.0.3 lodash: ^4.17.21 - checksum: 1c9875942fde01075bd481f1ce972317effe0583fc3ba83a6cc48d6efe15ce6dbbb08db4e17a02a33d77fe0773d22de8e5912c4e529e30514b0a94b8c987e3e4 + checksum: 95d0144ec872d8720e01d2a2de9b173f280d8bad98c2e484329f2a6db0907b44edd79766b3483b1f674e388e350b3481eacb4396d4e5f77e6dc0298e2c597e6d languageName: node linkType: hard @@ -11192,9 +11192,9 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-core@npm:1.62.29-bitgo-removal.2, @shapeshiftoss/hdwallet-core@npm:^1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-core@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-core@npm:1.62.29-bitgo-removal.3, @shapeshiftoss/hdwallet-core@npm:^1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-core@npm:1.62.29-bitgo-removal.3" dependencies: "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 "@shapeshiftoss/proto-tx-builder": 0.10.0 @@ -11206,7 +11206,7 @@ __metadata: lodash: ^4.17.21 rxjs: ^6.4.0 type-assertions: ^1.1.0 - checksum: ae960437d8b007f54cda783d9322b01987eb4a39598d98b32147c9c90c39b93d81af12cc1f8f95198bdf44d22e7887d65570770d06c5da893111e87f6b4c2e84 + checksum: 8079d30b81b1df27ed157b573d2a3166892bb6ab2fa20a5604c504a8c5c846a9f61e92bcc7be12091dbd4ed280c15e4b4ad54751e7e3b71522904aef0d21f228 languageName: node linkType: hard @@ -11228,39 +11228,39 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-gridplus@npm:1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-gridplus@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-gridplus@npm:1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-gridplus@npm:1.62.29-bitgo-removal.3" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@ethereumjs/common": 4.4.0 "@ethereumjs/rlp": 5.0.2 "@ethereumjs/tx": 5.4.0 "@metamask/eth-sig-util": ^7.0.0 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 bech32: ^1.1.4 bs58: ^5.0.0 bs58check: ^4.0.0 crypto-js: ^4.2.0 gridplus-sdk: ^3.2.0 lodash: ^4.17.21 - checksum: a8aa29efe7f0ba586ca193f7ba6ef008a0e7de7dc5bb2231c3017c75178798f5130fb7388185249492cee00e69bfb091152056bc789f2c2cdbff15fcb7c53d33 + checksum: ebb60da6cc18bc3f7e8a88fe4e44511972126c357ab38721c16558b3b8c55671aff5f590c41e9fa1c0dde0e68d054a6e1dcf505875d3a35d60bdc97a8b857c85 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29-bitgo-removal.3" dependencies: - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-keepkey": ^1.62.29-bitgo-removal.2 - checksum: 2776c3b58f0e7cc3ddd3a2afcb83a743b51a2866cf0201d18279607bb8a27cc70f6a7c03990d62aee53cd2297da0778192bed8e6f71a8334a298c822d12ef4a4 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-keepkey": ^1.62.29-bitgo-removal.3 + checksum: ec211b9c419fb79fb73e8d26df9e727bbc2f2c287ba89e84635128068ad2a447cf797738af3222864f6a48e485d9d9b52d834d984ed808ef22dfa9463451338b languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keepkey@npm:1.62.29-bitgo-removal.2, @shapeshiftoss/hdwallet-keepkey@npm:^1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-keepkey@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-keepkey@npm:1.62.29-bitgo-removal.3, @shapeshiftoss/hdwallet-keepkey@npm:^1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-keepkey@npm:1.62.29-bitgo-removal.3" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@ethereumjs/common": 3.2.0 @@ -11268,7 +11268,7 @@ __metadata: "@keepkey/device-protocol": 7.13.4 "@metamask/eth-sig-util": ^7.0.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 "@shapeshiftoss/proto-tx-builder": 0.10.0 bignumber.js: ^9.0.1 bnb-javascript-sdk-nobroadcast: 2.16.15 @@ -11281,44 +11281,44 @@ __metadata: lodash: ^4.17.21 p-lazy: ^3.1.0 semver: ^7.3.8 - checksum: 488c6bc3a5b3754c7d3a19a67fee0dc6858a06be09d2bf91b0682178a629917c462a71b1c210d0afa607c4930ba9a752b9067eb9c416f4c77dd466123227548e + checksum: a8c8b86eeee847778da7656eccb70d009e7e0da2111b6a235971482ffdef833e59ca89158149bfa4138a4cc9d4502dc88799fed68b840d4a300ce44b756b19d8 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keplr@npm:1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-keplr@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-keplr@npm:1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-keplr@npm:1.62.29-bitgo-removal.3" dependencies: "@cosmjs/amino": ^0.28.13 "@cosmjs/stargate": ^0.28.13 "@shapeshiftoss/caip": 8.15.0 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 "@shapeshiftoss/proto-tx-builder": 0.10.0 "@shapeshiftoss/types": 3.1.3 base64-js: ^1.5.1 lodash: ^4.17.21 - checksum: 2a575e674e6400d4bc54d08e173cd2cd3c68684c3ccbcbfae71aed39b57622c02e2e9ba2f1b30900fc332e4e3be79faabb6438fb986c8975fc03aacf85fdc449 + checksum: c1636951a95af8260da37e1a0a66bff391c1bc3f24aaa9a621788a8dd5ff4ee7c0523e4f061bb57388e1c4fd0ad479d2da591781865f21293355e1012d001a70 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29-bitgo-removal.3" dependencies: "@ledgerhq/hw-app-btc": 10.13.0 "@ledgerhq/hw-app-eth": 7.0.0 "@ledgerhq/hw-transport": 6.31.13 "@ledgerhq/hw-transport-webhid": 6.30.6 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-ledger": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-ledger": ^1.62.29-bitgo-removal.3 "@types/w3c-web-hid": ^1.0.2 - checksum: 3059990890f2183aa62594f67e58b11f654dc554f3faac7d31af5cb66ae7992cd0ff7be1c64e1d446656a5c5760b56661e103ef542dc2e1818ae939be89206f0 + checksum: b21dd12857e51ce9a8700e6bca348c0d6ee0b931415872ad938e6381cd3b5f994c2f8cc09f14f0dd9cd772dd613452f4f69f2bf8fdde9efa918ec5d6d7e5cc7e languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29-bitgo-removal.3" dependencies: "@ledgerhq/hw-app-btc": 10.13.0 "@ledgerhq/hw-app-cosmos": 6.32.9 @@ -11326,17 +11326,17 @@ __metadata: "@ledgerhq/hw-app-solana": 7.6.0 "@ledgerhq/hw-transport": 6.31.13 "@ledgerhq/hw-transport-webusb": 6.29.13 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-ledger": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-ledger": ^1.62.29-bitgo-removal.3 "@types/w3c-web-usb": ^1.0.4 p-queue: ^7.4.1 - checksum: aaf40fa358048cba5ef5f0daa5df07d0271d8efac890492aec3fd729cf50a65b96212b0d3f7f98b51d3afc3753213426b7b23b21d63b206b9664b18a51d4d3bd + checksum: 742cc386b594be5373dcd5cc23438ffabfbbe1812bc4afd3cf5c5338c1e9c071a259f76d4f14f3bf5e556e52f1dfc31fb64d894354f4ac489c52b639b8e0c264 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger@npm:1.62.29-bitgo-removal.2, @shapeshiftoss/hdwallet-ledger@npm:^1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-ledger@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-ledger@npm:1.62.29-bitgo-removal.3, @shapeshiftoss/hdwallet-ledger@npm:^1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-ledger@npm:1.62.29-bitgo-removal.3" dependencies: "@ethereumjs/common": 3.2.0 "@ethereumjs/tx": 4.2.0 @@ -11350,7 +11350,7 @@ __metadata: "@ledgerhq/logs": 6.13.0 "@mysten/ledgerjs-hw-app-sui": ^0.7.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bchaddrjs: ^0.4.4 @@ -11360,33 +11360,33 @@ __metadata: ethereumjs-util: ^6.1.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: 94f0098cd2b04e6eeb62be985d41a342ff67938bf907b0900ce0ec7ed72b5ac17c0084e8a52305dd15721bb650f5aa0150e6e705cfd5a066d5f299b2217646af + checksum: d22424b224ba6f51761d4fc9ed21747ef16405704c3354c729672d7a437bf5eacd968016700926c166697b7aadea87c6ca9e4ecf74d6cc3405ee7fa11f6f5ca5 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29-bitgo-removal.3" dependencies: "@metamask/detect-provider": ^1.2.0 "@metamask/onboarding": ^1.0.1 "@shapeshiftoss/common-api": ^9.3.0 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 "@shapeshiftoss/metamask-snaps-adapter": ^1.0.12 "@shapeshiftoss/metamask-snaps-types": ^1.0.12 eth-rpc-errors: ^4.0.3 lodash: ^4.17.21 mipd: ^0.0.7 - checksum: e5d31367abd45f42ddc7aabc83bc4aa509edc762b277649ee8a5c1cf0e2d4c836574c55165b6cba6063d05e4b95a5e4a8e6139610598bdaa8b1772b27f552af2 + checksum: fd034276833b992d496dfd0044e2948941937b0c6efff959385d1ff220102b3aab471d33e2c160c800264e8ba1f740595faf16a8f5ef6d2ced97b8388f53648e languageName: node linkType: hard -"@shapeshiftoss/hdwallet-native-vault@npm:1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-native-vault@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-native-vault@npm:1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-native-vault@npm:1.62.29-bitgo-removal.3" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 - "@shapeshiftoss/hdwallet-native": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-native": ^1.62.29-bitgo-removal.3 bip39: ^3.0.4 hash-wasm: ^4.11.0 idb-keyval: ^6.0.3 @@ -11394,18 +11394,18 @@ __metadata: p-lazy: ^3.1.0 type-assertions: ^1.1.0 uuid: ^8.3.2 - checksum: c862124a1534f8a5bd8109a4a105976e1eebf755ce39a240cdf0008eb6eb913f06eea9f4110c18455ca4926bbd86052114b56668fc8308412f52a886675a3d86 + checksum: 3082bf4147b12a3eee61afa2c0c6eb0a5e1d05df0f35bdef7d28adb4c1b416aa1edd6a362483f0faf707fc1ab3c00cff1718730d1b2abe1d2ab216ccd3640778 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-native@npm:1.62.29-bitgo-removal.2, @shapeshiftoss/hdwallet-native@npm:^1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-native@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-native@npm:1.62.29-bitgo-removal.3, @shapeshiftoss/hdwallet-native@npm:^1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-native@npm:1.62.29-bitgo-removal.3" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@noble/curves": ^1.4.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 "@shapeshiftoss/proto-tx-builder": 0.10.0 "@zxing/text-encoding": ^0.9.0 bchaddrjs: ^0.4.9 @@ -11427,7 +11427,7 @@ __metadata: p-lazy: ^3.1.0 scrypt-js: ^3.0.1 tendermint-tx-builder: 1.0.16 - checksum: e3827528034c5dfdf7ed008e040d86f4eb23dbe9100ffb5345086cc68006c718dbcb07a84f78432fcfacfc39f8baab74315a22e03336f798d5648603c1a13b4b + checksum: d5b8d76cf7170964c69a2d489fef0f8b00ab79135b2709664a2333715fffe5f21cff7415486e225185a11b3a57fb2d211e2cea96c3958e47a7a872948287cbd1 languageName: node linkType: hard @@ -11464,84 +11464,84 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-phantom@npm:1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-phantom@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-phantom@npm:1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-phantom@npm:1.62.29-bitgo-removal.3" dependencies: "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bitcoinjs-message: ^2.0.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: 6484fa972f0f2c212b4bc01dbde5b8f30e7d5fcc00993dd23bdff401eaf6bd5a6aafd92c7cdaceb1b8d4f710fa280a17b164b8735a36858829bad98769127179 + checksum: d97c32bc7c048f84f5ffc4a8d50e4d9023f4a56825a3325c053a3ab37cd6e6528be31f7355aa0c1bae165829cab05eec9733ec6931ec35ce5b5919aaf7b2b646 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29-bitgo-removal.3" dependencies: - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-trezor": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-trezor": ^1.62.29-bitgo-removal.3 "@trezor/connect-web": ^9.6.4 - checksum: 3ff1a975d77b1f45c0067702ac51342c53b762f12cbd98d24245f33aac1c7f2e852f382513d913303a3db4a5efe34584ae4eaa8f5e272d9b38171a3f56e0237d + checksum: c4e9c6ae4014a30d4c1b15892078f3ecb3dcf7d2fa694e1b7c5d3f2ca2e7dd3543ffe21d39d01d1768514757d1a427f225c201d01aba179dbf5cc591b2259de9 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-trezor@npm:1.62.29-bitgo-removal.2, @shapeshiftoss/hdwallet-trezor@npm:^1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-trezor@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-trezor@npm:1.62.29-bitgo-removal.3, @shapeshiftoss/hdwallet-trezor@npm:^1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-trezor@npm:1.62.29-bitgo-removal.3" dependencies: "@ethereumjs/common": 3.2.0 "@ethereumjs/tx": 4.2.0 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 base64-js: ^1.5.1 bchaddrjs: ^0.4.4 lodash: ^4.17.21 - checksum: 8caa3378b60deea96c8fab57bb01defa02a6d7f8010d92a61c4c1404a4708ccca4fd7e9feefee5866bb05671a9fd1b053679fadedf649632d2c3872f6de4dd43 + checksum: 5d27abe7795c1529f33dcd5b5d82ca193370aafc66de03c55f81e5bd63bb7495e10692274261ded41c11658f6a8f115943628db787d8f5f19e06099dcc7d38e1 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-vultisig@npm:1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-vultisig@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-vultisig@npm:1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-vultisig@npm:1.62.29-bitgo-removal.3" dependencies: "@cosmjs/amino": ^0.28.13 "@cosmjs/stargate": ^0.28.13 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bitcoinjs-message: ^2.0.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: b7e43a696c9eb2534962f6af411d47c4ac1861e03256cd8cd28baa521633eba2a0bd3aeb8a605cdfea7f5595dbeb7df361cbab3f4d641c118368bd44f5963a0e + checksum: 302cc6a1e6fe8374e0662d11281b97882ca53b681190821088a54543d77b34092f30b84a78a5a9cdfa16a70ba49e627d459b87973d7b6ffd104e7cda7ada9683 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29-bitgo-removal.3" dependencies: - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 "@walletconnect/qrcode-modal": ^1.7.8 "@walletconnect/web3-provider": ^1.7.8 ethers: ^5.6.5 - checksum: f5c9a5bb11e7e1bcfb5549946369924cd8a195814435f13e3197df0a88afa7b5ffe2d8c32ac9de276975ba16cf66f0427fdfdddc05b4d486bb121e5268526335 + checksum: 455512aee2e556fba1e9a83079b47a858946e4295f7d137e1aa4d2bd960c7ba8f8f2b131e84a43f360993ea7a797639e3c7f89c8a87b0e33d9984e07cb4cf58b languageName: node linkType: hard -"@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29-bitgo-removal.2": - version: 1.62.29-bitgo-removal.2 - resolution: "@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29-bitgo-removal.2" +"@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29-bitgo-removal.3": + version: 1.62.29-bitgo-removal.3 + resolution: "@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29-bitgo-removal.3" dependencies: - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 "@walletconnect/ethereum-provider": ^2.20.2 "@walletconnect/modal": ^2.6.2 ethers: ^5.6.5 - checksum: 68c85f9071f207051cad4a4f708b793a452d238ccc6f6d0bfa3be0aa56092e2dbbc41e73ff0dc99b3758163b46b984d858acbc850cf03a0aa48c7ef39d2b9d5d + checksum: a45fb5bb0c23c05433e0bc9adf219dc0ee89b99f34029b15e7f6ba6130174a3d7beec3274158d49fe6695eb2ee61dbc802d2bccab327e848b10ab45740c26d23 languageName: node linkType: hard @@ -11651,7 +11651,7 @@ __metadata: "@shapeshiftoss/caip": "workspace:^" "@shapeshiftoss/chain-adapters": "workspace:^" "@shapeshiftoss/contracts": "workspace:^" - "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.3 "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" "@shapeshiftoss/utils": "workspace:^" @@ -11786,24 +11786,24 @@ __metadata: "@shapeshiftoss/chain-adapters": "workspace:^" "@shapeshiftoss/contracts": "workspace:^" "@shapeshiftoss/errors": "workspace:^" - "@shapeshiftoss/hdwallet-coinbase": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-gridplus": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-keepkey": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-keepkey-webusb": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-keplr": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-ledger": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-ledger-webhid": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-ledger-webusb": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-metamask-multichain": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-native": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-native-vault": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-phantom": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-trezor": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-trezor-connect": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-vultisig": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-walletconnect": 1.62.29-bitgo-removal.2 - "@shapeshiftoss/hdwallet-walletconnectv2": 1.62.29-bitgo-removal.2 + "@shapeshiftoss/hdwallet-coinbase": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-gridplus": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-keepkey": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-keepkey-webusb": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-keplr": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-ledger": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-ledger-webhid": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-ledger-webusb": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-metamask-multichain": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-native": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-native-vault": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-phantom": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-trezor": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-trezor-connect": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-vultisig": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-walletconnect": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-walletconnectv2": 1.62.29-bitgo-removal.3 "@shapeshiftoss/swapper": "workspace:^" "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" From 8feeb8e683656eaf1097db391ebfca2df0cfe255 Mon Sep 17 00:00:00 2001 From: gomes <17035424+gomesalexandre@users.noreply.github.com> Date: Thu, 11 Dec 2025 22:03:01 +0300 Subject: [PATCH 06/14] chore: bump hdwallet packages to 1.62.29 --- .yarnrc.yml | 2 +- package.json | 36 +-- packages/chain-adapters/package.json | 4 +- packages/swapper/package.json | 2 +- yarn.lock | 446 +++++++++++++++++---------- 5 files changed, 310 insertions(+), 180 deletions(-) diff --git a/.yarnrc.yml b/.yarnrc.yml index 443b520ba5d..793d73c89d3 100644 --- a/.yarnrc.yml +++ b/.yarnrc.yml @@ -2,7 +2,7 @@ nodeLinker: node-modules npmAuthToken: "${NPM_AUTH-fallback}" -npmRegistryServer: "http://127.0.0.1:4873" +npmRegistryServer: "https://registry.npmjs.org" plugins: - path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs diff --git a/package.json b/package.json index 2ebcd731c28..2d61ea2b228 100644 --- a/package.json +++ b/package.json @@ -100,24 +100,24 @@ "@shapeshiftoss/chain-adapters": "workspace:^", "@shapeshiftoss/contracts": "workspace:^", "@shapeshiftoss/errors": "workspace:^", - "@shapeshiftoss/hdwallet-coinbase": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-gridplus": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-keepkey": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-keplr": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-ledger": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-ledger-webhid": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-ledger-webusb": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-metamask-multichain": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-native": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-native-vault": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-phantom": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-trezor": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-trezor-connect": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-vultisig": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-walletconnect": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-walletconnectv2": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-coinbase": "1.62.29", + "@shapeshiftoss/hdwallet-core": "1.62.29", + "@shapeshiftoss/hdwallet-gridplus": "1.62.29", + "@shapeshiftoss/hdwallet-keepkey": "1.62.29", + "@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.29", + "@shapeshiftoss/hdwallet-keplr": "1.62.29", + "@shapeshiftoss/hdwallet-ledger": "1.62.29", + "@shapeshiftoss/hdwallet-ledger-webhid": "1.62.29", + "@shapeshiftoss/hdwallet-ledger-webusb": "1.62.29", + "@shapeshiftoss/hdwallet-metamask-multichain": "1.62.29", + "@shapeshiftoss/hdwallet-native": "1.62.29", + "@shapeshiftoss/hdwallet-native-vault": "1.62.29", + "@shapeshiftoss/hdwallet-phantom": "1.62.29", + "@shapeshiftoss/hdwallet-trezor": "1.62.29", + "@shapeshiftoss/hdwallet-trezor-connect": "1.62.29", + "@shapeshiftoss/hdwallet-vultisig": "1.62.29", + "@shapeshiftoss/hdwallet-walletconnect": "1.62.29", + "@shapeshiftoss/hdwallet-walletconnectv2": "1.62.29", "@shapeshiftoss/swapper": "workspace:^", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", diff --git a/packages/chain-adapters/package.json b/packages/chain-adapters/package.json index 99d0265d5cf..fa846514ee6 100644 --- a/packages/chain-adapters/package.json +++ b/packages/chain-adapters/package.json @@ -31,8 +31,8 @@ "dependencies": { "@mysten/sui": "1.45.0", "@shapeshiftoss/caip": "workspace:^", - "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.3", - "@shapeshiftoss/hdwallet-ledger": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-core": "1.62.29", + "@shapeshiftoss/hdwallet-ledger": "1.62.29", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", diff --git a/packages/swapper/package.json b/packages/swapper/package.json index 68bf2aa8939..3d1fcee8d97 100644 --- a/packages/swapper/package.json +++ b/packages/swapper/package.json @@ -39,7 +39,7 @@ "@shapeshiftoss/caip": "workspace:^", "@shapeshiftoss/chain-adapters": "workspace:^", "@shapeshiftoss/contracts": "workspace:^", - "@shapeshiftoss/hdwallet-core": "1.62.29-bitgo-removal.3", + "@shapeshiftoss/hdwallet-core": "1.62.29", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", diff --git a/yarn.lock b/yarn.lock index 08d7dc6e5cf..ea666b1af19 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4090,6 +4090,59 @@ __metadata: languageName: node linkType: hard +"@bitgo/blake2b-wasm@npm:^3.2.3": + version: 3.2.3 + resolution: "@bitgo/blake2b-wasm@npm:3.2.3" + dependencies: + nanoassert: ^1.0.0 + checksum: f398ea78559486095bfa898fd4fd5d0a8f022ffbcd31732854cec9118967f695a009339a3b4bf2cef62a2a38b8d93d4781769b3516b15fb3b11a4f12177a1f21 + languageName: node + linkType: hard + +"@bitgo/blake2b@npm:^3.2.4": + version: 3.2.4 + resolution: "@bitgo/blake2b@npm:3.2.4" + dependencies: + "@bitgo/blake2b-wasm": ^3.2.3 + nanoassert: ^2.0.0 + checksum: 6ee6575873eb4af42de387dd698bac835a739eee6aefe642606a978bf79f75be7abb0a619bdbf2789dfa1cf2ef36083a4e3bf23ff5c8f701a04222c5304bbae4 + languageName: node + linkType: hard + +"@bitgo/secp256k1@npm:^1.7.0": + version: 1.7.0 + resolution: "@bitgo/secp256k1@npm:1.7.0" + dependencies: + "@brandonblack/musig": ^0.0.1-alpha.0 + "@noble/secp256k1": 1.6.3 + bip32: ^3.0.1 + create-hash: ^1.2.0 + create-hmac: ^1.1.7 + ecpair: "npm:@bitgo/ecpair@2.1.0-rc.0" + checksum: 3cca08733c2228887111a1486430deaa5bd619bfc2defb0ef28c2f26d33b95f30604ce306c386a1efa0c097ee35212bb401bbee06db4c59e03149b658f7244a9 + languageName: node + linkType: hard + +"@bitgo/utxo-lib@npm:^11.18.0": + version: 11.18.0 + resolution: "@bitgo/utxo-lib@npm:11.18.0" + dependencies: + "@bitgo/blake2b": ^3.2.4 + "@bitgo/secp256k1": ^1.7.0 + "@brandonblack/musig": ^0.0.1-alpha.0 + bech32: ^2.0.0 + bip174: "npm:@bitgo-forks/bip174@3.1.0-master.4" + bitcoin-ops: ^1.3.0 + bitcoinjs-lib: "npm:@bitgo-forks/bitcoinjs-lib@7.1.0-master.11" + bs58check: ^2.1.2 + cashaddress: ^1.1.0 + fastpriorityqueue: ^0.7.1 + typeforce: ^1.11.3 + varuint-bitcoin: ^1.1.2 + checksum: 4641a6dc8a342a828ec3a3dff420e79fd4ddf5ea47051cc66844155038323451ebe1b5e145289cd36e64eca70bbec0f35703be8461f3dca6d1ac7cce028210f3 + languageName: node + linkType: hard + "@bithighlander/bitcoin-cash-js-lib@npm:5.2.1": version: 5.2.1 resolution: "@bithighlander/bitcoin-cash-js-lib@npm:5.2.1" @@ -4138,6 +4191,13 @@ __metadata: languageName: node linkType: hard +"@brandonblack/musig@npm:^0.0.1-alpha.0": + version: 0.0.1-alpha.1 + resolution: "@brandonblack/musig@npm:0.0.1-alpha.1" + checksum: 3e116b30716481bf3d28d2a229bf9d93b3c6753f8c3d833c573db167656f135bfcb76d3c63a8c9c44d9cec6d6cafe56c420b4e647a9307ce69a31eb51ca11724 + languageName: node + linkType: hard + "@cetusprotocol/aggregator-sdk@npm:^1.4.2": version: 1.4.2 resolution: "@cetusprotocol/aggregator-sdk@npm:1.4.2" @@ -9345,6 +9405,13 @@ __metadata: languageName: node linkType: hard +"@noble/secp256k1@npm:1.6.3": + version: 1.6.3 + resolution: "@noble/secp256k1@npm:1.6.3" + checksum: 16eb3242533e645deb64444c771515f66bdc2ee0759894efd42fdeed4ab226ed29827aaaf6caa27d3d95b831452fd4246aa1007cd688aa462ad48fc084ab76e6 + languageName: node + linkType: hard + "@noble/secp256k1@npm:^1.5.5, @noble/secp256k1@npm:^1.7.1": version: 1.7.1 resolution: "@noble/secp256k1@npm:1.7.1" @@ -11098,8 +11165,8 @@ __metadata: dependencies: "@mysten/sui": 1.45.0 "@shapeshiftoss/caip": "workspace:^" - "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-ledger": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-ledger": 1.62.28 "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" "@shapeshiftoss/utils": "workspace:^" @@ -11162,15 +11229,15 @@ __metadata: languageName: unknown linkType: soft -"@shapeshiftoss/hdwallet-coinbase@npm:1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-coinbase@npm:1.62.29-bitgo-removal.3" +"@shapeshiftoss/hdwallet-coinbase@npm:1.62.28": + version: 1.62.28 + resolution: "@shapeshiftoss/hdwallet-coinbase@npm:1.62.28" dependencies: "@coinbase/wallet-sdk": ^3.6.6 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-core": 1.62.28 eth-rpc-errors: ^4.0.3 lodash: ^4.17.21 - checksum: 95d0144ec872d8720e01d2a2de9b173f280d8bad98c2e484329f2a6db0907b44edd79766b3483b1f674e388e350b3481eacb4396d4e5f77e6dc0298e2c597e6d + checksum: ab3c60fbd7f74316ca65a0d0c78c6118690be58244de5603b461fda88e8060b7568fed4a47069d7fb087fe529c8b986259cc501d4904c8d9f6155410e990b7e2 languageName: node linkType: hard @@ -11192,24 +11259,6 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-core@npm:1.62.29-bitgo-removal.3, @shapeshiftoss/hdwallet-core@npm:^1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-core@npm:1.62.29-bitgo-removal.3" - dependencies: - "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/proto-tx-builder": 0.10.0 - "@solana/web3.js": 1.95.8 - bs58check: ^4.0.0 - eip-712: ^1.0.0 - ethers: 5.7.2 - eventemitter2: ^5.0.1 - lodash: ^4.17.21 - rxjs: ^6.4.0 - type-assertions: ^1.1.0 - checksum: 8079d30b81b1df27ed157b573d2a3166892bb6ab2fa20a5604c504a8c5c846a9f61e92bcc7be12091dbd4ed280c15e4b4ad54751e7e3b71522904aef0d21f228 - languageName: node - linkType: hard - "@shapeshiftoss/hdwallet-core@npm:latest": version: 1.62.27 resolution: "@shapeshiftoss/hdwallet-core@npm:1.62.27" @@ -11228,39 +11277,39 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-gridplus@npm:1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-gridplus@npm:1.62.29-bitgo-removal.3" +"@shapeshiftoss/hdwallet-gridplus@npm:1.62.28": + version: 1.62.28 + resolution: "@shapeshiftoss/hdwallet-gridplus@npm:1.62.28" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@ethereumjs/common": 4.4.0 "@ethereumjs/rlp": 5.0.2 "@ethereumjs/tx": 5.4.0 "@metamask/eth-sig-util": ^7.0.0 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-core": 1.62.28 bech32: ^1.1.4 bs58: ^5.0.0 bs58check: ^4.0.0 crypto-js: ^4.2.0 gridplus-sdk: ^3.2.0 lodash: ^4.17.21 - checksum: ebb60da6cc18bc3f7e8a88fe4e44511972126c357ab38721c16558b3b8c55671aff5f590c41e9fa1c0dde0e68d054a6e1dcf505875d3a35d60bdc97a8b857c85 + checksum: 6384ec1426915df4b4f559a58113519f858afa407ead15e9d003f5793cf34322fd78116b571650bcc50346d84aaaa069f6b7186a32ee687714ac2ba170701a5e languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29-bitgo-removal.3" +"@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.28": + version: 1.62.28 + resolution: "@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.28" dependencies: - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-keepkey": ^1.62.29-bitgo-removal.3 - checksum: ec211b9c419fb79fb73e8d26df9e727bbc2f2c287ba89e84635128068ad2a447cf797738af3222864f6a48e485d9d9b52d834d984ed808ef22dfa9463451338b + "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-keepkey": 1.62.28 + checksum: 82e7230c4eb2302b5071445dc9efffdb47182cc66c9d19a3b5c232052cce1ad01e3fc97945e84b9ff02284f00fd65c2622c2e01918519de42591f460a9f557c7 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keepkey@npm:1.62.29-bitgo-removal.3, @shapeshiftoss/hdwallet-keepkey@npm:^1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-keepkey@npm:1.62.29-bitgo-removal.3" +"@shapeshiftoss/hdwallet-keepkey@npm:1.62.28": + version: 1.62.28 + resolution: "@shapeshiftoss/hdwallet-keepkey@npm:1.62.28" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@ethereumjs/common": 3.2.0 @@ -11268,7 +11317,7 @@ __metadata: "@keepkey/device-protocol": 7.13.4 "@metamask/eth-sig-util": ^7.0.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-core": 1.62.28 "@shapeshiftoss/proto-tx-builder": 0.10.0 bignumber.js: ^9.0.1 bnb-javascript-sdk-nobroadcast: 2.16.15 @@ -11281,44 +11330,44 @@ __metadata: lodash: ^4.17.21 p-lazy: ^3.1.0 semver: ^7.3.8 - checksum: a8c8b86eeee847778da7656eccb70d009e7e0da2111b6a235971482ffdef833e59ca89158149bfa4138a4cc9d4502dc88799fed68b840d4a300ce44b756b19d8 + checksum: 88f737e8e53df0659e2bfded6198536623bd6798204c058915c57f28e36e36033d4d93050d3ec6196719d477615df8e4d259d5805801ddcee62372818b0135ca languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keplr@npm:1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-keplr@npm:1.62.29-bitgo-removal.3" +"@shapeshiftoss/hdwallet-keplr@npm:1.62.28": + version: 1.62.28 + resolution: "@shapeshiftoss/hdwallet-keplr@npm:1.62.28" dependencies: "@cosmjs/amino": ^0.28.13 "@cosmjs/stargate": ^0.28.13 "@shapeshiftoss/caip": 8.15.0 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-core": 1.62.28 "@shapeshiftoss/proto-tx-builder": 0.10.0 "@shapeshiftoss/types": 3.1.3 base64-js: ^1.5.1 lodash: ^4.17.21 - checksum: c1636951a95af8260da37e1a0a66bff391c1bc3f24aaa9a621788a8dd5ff4ee7c0523e4f061bb57388e1c4fd0ad479d2da591781865f21293355e1012d001a70 + checksum: 06404a7ce0f0f152564209b1f965d53d51e5296b445f33357b1d72f9362a287c7c7a4223b7a092b7bf6e1aa99a660df800d00686510d2b382159999b913c63c2 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29-bitgo-removal.3" +"@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.28": + version: 1.62.28 + resolution: "@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.28" dependencies: "@ledgerhq/hw-app-btc": 10.13.0 "@ledgerhq/hw-app-eth": 7.0.0 "@ledgerhq/hw-transport": 6.31.13 "@ledgerhq/hw-transport-webhid": 6.30.6 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-ledger": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-ledger": 1.62.28 "@types/w3c-web-hid": ^1.0.2 - checksum: b21dd12857e51ce9a8700e6bca348c0d6ee0b931415872ad938e6381cd3b5f994c2f8cc09f14f0dd9cd772dd613452f4f69f2bf8fdde9efa918ec5d6d7e5cc7e + checksum: 888af25fd11ed7e56a9f6be997d0c542945428e271c8f21a5aa9f9df366829f72306fb4f46ed55a9f5c0510906df8c99da1367209e327be8fc566052998fad2d languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29-bitgo-removal.3" +"@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.28": + version: 1.62.28 + resolution: "@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.28" dependencies: "@ledgerhq/hw-app-btc": 10.13.0 "@ledgerhq/hw-app-cosmos": 6.32.9 @@ -11326,18 +11375,19 @@ __metadata: "@ledgerhq/hw-app-solana": 7.6.0 "@ledgerhq/hw-transport": 6.31.13 "@ledgerhq/hw-transport-webusb": 6.29.13 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-ledger": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-ledger": 1.62.28 "@types/w3c-web-usb": ^1.0.4 p-queue: ^7.4.1 - checksum: 742cc386b594be5373dcd5cc23438ffabfbbe1812bc4afd3cf5c5338c1e9c071a259f76d4f14f3bf5e556e52f1dfc31fb64d894354f4ac489c52b639b8e0c264 + checksum: 7cc44a99f84c0f83784afb612148cbcb5544160afc6166ac7f03ddb04520670d9bfaae1cdb7c68d1761d4c9b7c7ab5e7e22e23097094d7a56835fd0299b4a03a languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger@npm:1.62.29-bitgo-removal.3, @shapeshiftoss/hdwallet-ledger@npm:^1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-ledger@npm:1.62.29-bitgo-removal.3" +"@shapeshiftoss/hdwallet-ledger@npm:1.62.28": + version: 1.62.28 + resolution: "@shapeshiftoss/hdwallet-ledger@npm:1.62.28" dependencies: + "@bitgo/utxo-lib": ^11.18.0 "@ethereumjs/common": 3.2.0 "@ethereumjs/tx": 4.2.0 "@ledgerhq/device-core": 0.6.9 @@ -11350,7 +11400,7 @@ __metadata: "@ledgerhq/logs": 6.13.0 "@mysten/ledgerjs-hw-app-sui": ^0.7.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-core": 1.62.28 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bchaddrjs: ^0.4.4 @@ -11360,33 +11410,33 @@ __metadata: ethereumjs-util: ^6.1.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: d22424b224ba6f51761d4fc9ed21747ef16405704c3354c729672d7a437bf5eacd968016700926c166697b7aadea87c6ca9e4ecf74d6cc3405ee7fa11f6f5ca5 + checksum: 482e26ba4a2f94b6b1c7a2ec3fb47a2e75a49a199e462eb8ebbe784fcd791f3237b2a0bf4d473ccb07a27b4baffe22f3f5cb080449e92826a53fb668f7108591 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29-bitgo-removal.3" +"@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.28": + version: 1.62.28 + resolution: "@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.28" dependencies: "@metamask/detect-provider": ^1.2.0 "@metamask/onboarding": ^1.0.1 "@shapeshiftoss/common-api": ^9.3.0 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-core": 1.62.28 "@shapeshiftoss/metamask-snaps-adapter": ^1.0.12 "@shapeshiftoss/metamask-snaps-types": ^1.0.12 eth-rpc-errors: ^4.0.3 lodash: ^4.17.21 mipd: ^0.0.7 - checksum: fd034276833b992d496dfd0044e2948941937b0c6efff959385d1ff220102b3aab471d33e2c160c800264e8ba1f740595faf16a8f5ef6d2ced97b8388f53648e + checksum: 86ac33b6265d4cf35c90879a98ace320f1e2e10adc5561dfdc3a3580ee082c1c3537c8b5ca4341d3b5828e77b0cac7c03e49fd2dbd70bf6cdd4f451001f3438e languageName: node linkType: hard -"@shapeshiftoss/hdwallet-native-vault@npm:1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-native-vault@npm:1.62.29-bitgo-removal.3" +"@shapeshiftoss/hdwallet-native-vault@npm:1.62.28": + version: 1.62.28 + resolution: "@shapeshiftoss/hdwallet-native-vault@npm:1.62.28" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 - "@shapeshiftoss/hdwallet-native": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-native": 1.62.28 bip39: ^3.0.4 hash-wasm: ^4.11.0 idb-keyval: ^6.0.3 @@ -11394,44 +11444,11 @@ __metadata: p-lazy: ^3.1.0 type-assertions: ^1.1.0 uuid: ^8.3.2 - checksum: 3082bf4147b12a3eee61afa2c0c6eb0a5e1d05df0f35bdef7d28adb4c1b416aa1edd6a362483f0faf707fc1ab3c00cff1718730d1b2abe1d2ab216ccd3640778 - languageName: node - linkType: hard - -"@shapeshiftoss/hdwallet-native@npm:1.62.29-bitgo-removal.3, @shapeshiftoss/hdwallet-native@npm:^1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-native@npm:1.62.29-bitgo-removal.3" - dependencies: - "@bitcoinerlab/secp256k1": ^1.1.1 - "@noble/curves": ^1.4.0 - "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 - "@shapeshiftoss/proto-tx-builder": 0.10.0 - "@zxing/text-encoding": ^0.9.0 - bchaddrjs: ^0.4.9 - bech32: ^1.1.4 - bignumber.js: ^9.0.1 - bip32: ^2.0.5 - bip39: ^3.0.2 - bnb-javascript-sdk-nobroadcast: 2.16.15 - bs58check: ^4.0.0 - crypto-js: ^4.0.0 - ecpair: ^3.0.0-rc.0 - eip-712: ^1.0.0 - ethers: 5.7.2 - eventemitter2: ^5.0.1 - funtypes: ^3.0.1 - hash-wasm: ^4.11.0 - lodash: ^4.17.21 - node-fetch: ^2.6.1 - p-lazy: ^3.1.0 - scrypt-js: ^3.0.1 - tendermint-tx-builder: 1.0.16 - checksum: d5b8d76cf7170964c69a2d489fef0f8b00ab79135b2709664a2333715fffe5f21cff7415486e225185a11b3a57fb2d211e2cea96c3958e47a7a872948287cbd1 + checksum: 8cfe8d66a7270f7e1c119be118ffec148ad1249eebf288f4715a6acd37a4a6324aedbfe14614937c4d542f3a9c7c5b13f51ceec21d644d852811c97424272a63 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-native@npm:^1.55.1": +"@shapeshiftoss/hdwallet-native@npm:1.62.28, @shapeshiftoss/hdwallet-native@npm:^1.55.1": version: 1.62.28 resolution: "@shapeshiftoss/hdwallet-native@npm:1.62.28" dependencies: @@ -11464,84 +11481,84 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-phantom@npm:1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-phantom@npm:1.62.29-bitgo-removal.3" +"@shapeshiftoss/hdwallet-phantom@npm:1.62.28": + version: 1.62.28 + resolution: "@shapeshiftoss/hdwallet-phantom@npm:1.62.28" dependencies: "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-core": 1.62.28 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bitcoinjs-message: ^2.0.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: d97c32bc7c048f84f5ffc4a8d50e4d9023f4a56825a3325c053a3ab37cd6e6528be31f7355aa0c1bae165829cab05eec9733ec6931ec35ce5b5919aaf7b2b646 + checksum: 3ec6856d8a7432720c4891ee1e65f5e63c85e9c4f57c230b4d98961cb3c4870eaf6bb9ee8c26f5e9645d5a66121770ac64a8723d51101e67b2ecb211926aeff1 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29-bitgo-removal.3" +"@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.28": + version: 1.62.28 + resolution: "@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.28" dependencies: - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-trezor": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-trezor": 1.62.28 "@trezor/connect-web": ^9.6.4 - checksum: c4e9c6ae4014a30d4c1b15892078f3ecb3dcf7d2fa694e1b7c5d3f2ca2e7dd3543ffe21d39d01d1768514757d1a427f225c201d01aba179dbf5cc591b2259de9 + checksum: 61f19a8022494dadf0fedef4746df077eefd36b3d4a66b8b7df34c00dcd41eaf59aab38093c6a0e6648d640582ef86f0b1a09f315cf5a62541669c6c238fc883 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-trezor@npm:1.62.29-bitgo-removal.3, @shapeshiftoss/hdwallet-trezor@npm:^1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-trezor@npm:1.62.29-bitgo-removal.3" +"@shapeshiftoss/hdwallet-trezor@npm:1.62.28": + version: 1.62.28 + resolution: "@shapeshiftoss/hdwallet-trezor@npm:1.62.28" dependencies: "@ethereumjs/common": 3.2.0 "@ethereumjs/tx": 4.2.0 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-core": 1.62.28 base64-js: ^1.5.1 bchaddrjs: ^0.4.4 lodash: ^4.17.21 - checksum: 5d27abe7795c1529f33dcd5b5d82ca193370aafc66de03c55f81e5bd63bb7495e10692274261ded41c11658f6a8f115943628db787d8f5f19e06099dcc7d38e1 + checksum: 37dd03d15a5797c10012f48be8823c97fa960ca29a2b9583f3c2c37a1fec2a07db882ab5e81cb65a753cf2730576320a18def7bd513439e3f05868adeec7ebad languageName: node linkType: hard -"@shapeshiftoss/hdwallet-vultisig@npm:1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-vultisig@npm:1.62.29-bitgo-removal.3" +"@shapeshiftoss/hdwallet-vultisig@npm:1.62.28": + version: 1.62.28 + resolution: "@shapeshiftoss/hdwallet-vultisig@npm:1.62.28" dependencies: "@cosmjs/amino": ^0.28.13 "@cosmjs/stargate": ^0.28.13 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-core": 1.62.28 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bitcoinjs-message: ^2.0.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: 302cc6a1e6fe8374e0662d11281b97882ca53b681190821088a54543d77b34092f30b84a78a5a9cdfa16a70ba49e627d459b87973d7b6ffd104e7cda7ada9683 + checksum: 432abd8391e05196b39fac712dbb55cd3a378db6e20990ee440271d1c99a18559f648dcbffb4d27ffbbb1c7364ba46f1e6f9aed19a439273c74bf4e931c933ba languageName: node linkType: hard -"@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29-bitgo-removal.3" +"@shapeshiftoss/hdwallet-walletconnect@npm:1.62.28": + version: 1.62.28 + resolution: "@shapeshiftoss/hdwallet-walletconnect@npm:1.62.28" dependencies: - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-core": 1.62.28 "@walletconnect/qrcode-modal": ^1.7.8 "@walletconnect/web3-provider": ^1.7.8 ethers: ^5.6.5 - checksum: 455512aee2e556fba1e9a83079b47a858946e4295f7d137e1aa4d2bd960c7ba8f8f2b131e84a43f360993ea7a797639e3c7f89c8a87b0e33d9984e07cb4cf58b + checksum: 17887250cfa16adb96cf42740e8d954fc8ad8ebcae99f6231576f012bf81cc94d6f607bf0df879af3114cbf7d398219d48148d4f864825738784ae239b283590 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29-bitgo-removal.3": - version: 1.62.29-bitgo-removal.3 - resolution: "@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29-bitgo-removal.3" +"@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.28": + version: 1.62.28 + resolution: "@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.28" dependencies: - "@shapeshiftoss/hdwallet-core": ^1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-core": 1.62.28 "@walletconnect/ethereum-provider": ^2.20.2 "@walletconnect/modal": ^2.6.2 ethers: ^5.6.5 - checksum: a45fb5bb0c23c05433e0bc9adf219dc0ee89b99f34029b15e7f6ba6130174a3d7beec3274158d49fe6695eb2ee61dbc802d2bccab327e848b10ab45740c26d23 + checksum: 3186286ae05a340d224750b4409a6ac5fde9de5604c907659a1048704f2c89d7104da0a137cf421f2d700b516963097952d1cca591d72f05f1a1659ff2448a8d languageName: node linkType: hard @@ -11651,7 +11668,7 @@ __metadata: "@shapeshiftoss/caip": "workspace:^" "@shapeshiftoss/chain-adapters": "workspace:^" "@shapeshiftoss/contracts": "workspace:^" - "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-core": 1.62.28 "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" "@shapeshiftoss/utils": "workspace:^" @@ -11786,24 +11803,24 @@ __metadata: "@shapeshiftoss/chain-adapters": "workspace:^" "@shapeshiftoss/contracts": "workspace:^" "@shapeshiftoss/errors": "workspace:^" - "@shapeshiftoss/hdwallet-coinbase": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-core": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-gridplus": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-keepkey": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-keepkey-webusb": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-keplr": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-ledger": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-ledger-webhid": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-ledger-webusb": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-metamask-multichain": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-native": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-native-vault": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-phantom": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-trezor": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-trezor-connect": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-vultisig": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-walletconnect": 1.62.29-bitgo-removal.3 - "@shapeshiftoss/hdwallet-walletconnectv2": 1.62.29-bitgo-removal.3 + "@shapeshiftoss/hdwallet-coinbase": 1.62.28 + "@shapeshiftoss/hdwallet-core": 1.62.28 + "@shapeshiftoss/hdwallet-gridplus": 1.62.28 + "@shapeshiftoss/hdwallet-keepkey": 1.62.28 + "@shapeshiftoss/hdwallet-keepkey-webusb": 1.62.28 + "@shapeshiftoss/hdwallet-keplr": 1.62.28 + "@shapeshiftoss/hdwallet-ledger": 1.62.28 + "@shapeshiftoss/hdwallet-ledger-webhid": 1.62.28 + "@shapeshiftoss/hdwallet-ledger-webusb": 1.62.28 + "@shapeshiftoss/hdwallet-metamask-multichain": 1.62.28 + "@shapeshiftoss/hdwallet-native": 1.62.28 + "@shapeshiftoss/hdwallet-native-vault": 1.62.28 + "@shapeshiftoss/hdwallet-phantom": 1.62.28 + "@shapeshiftoss/hdwallet-trezor": 1.62.28 + "@shapeshiftoss/hdwallet-trezor-connect": 1.62.28 + "@shapeshiftoss/hdwallet-vultisig": 1.62.28 + "@shapeshiftoss/hdwallet-walletconnect": 1.62.28 + "@shapeshiftoss/hdwallet-walletconnectv2": 1.62.28 "@shapeshiftoss/swapper": "workspace:^" "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" @@ -17950,6 +17967,13 @@ __metadata: languageName: node linkType: hard +"bip174@npm:@bitgo-forks/bip174@3.1.0-master.4": + version: 3.1.0-master.4 + resolution: "@bitgo-forks/bip174@npm:3.1.0-master.4" + checksum: 23d8c613cd04368698fa4e8e5bc146a006d5c8d88c24dbe5cddcf793e055d9d86544598bc8617b05a6b44954bc337bc193462d580846814df29f8e09d9cbc955 + languageName: node + linkType: hard + "bip174@npm:^2.0.1": version: 2.0.1 resolution: "bip174@npm:2.0.1" @@ -18008,6 +18032,20 @@ __metadata: languageName: node linkType: hard +"bip32@npm:^3.0.1": + version: 3.1.0 + resolution: "bip32@npm:3.1.0" + dependencies: + bs58check: ^2.1.1 + create-hash: ^1.2.0 + create-hmac: ^1.1.7 + ripemd160: ^2.0.2 + typeforce: ^1.11.5 + wif: ^2.0.6 + checksum: 55bdc5dcae6cf83c000262cee9df912fe3012eeb000ff7cff72547e52442b7a779e93e7a19affbaa105d22f8d95299f8964edb2912f11a2bdd7b31433a7b5bad + languageName: node + linkType: hard + "bip39-light@npm:^1.0.7": version: 1.0.7 resolution: "bip39-light@npm:1.0.7" @@ -18110,6 +18148,24 @@ __metadata: languageName: node linkType: hard +"bitcoinjs-lib@npm:@bitgo-forks/bitcoinjs-lib@7.1.0-master.11": + version: 7.1.0-master.11 + resolution: "@bitgo-forks/bitcoinjs-lib@npm:7.1.0-master.11" + dependencies: + bech32: ^2.0.0 + bip174: "npm:@bitgo-forks/bip174@3.1.0-master.4" + bs58check: ^2.1.2 + create-hash: ^1.1.0 + fastpriorityqueue: ^0.7.1 + json5: ^2.2.3 + ripemd160: ^2.0.2 + typeforce: ^1.11.3 + varuint-bitcoin: ^1.1.2 + wif: ^2.0.1 + checksum: f7760c687fe0705cd3bdd45431742fc871995ea451f669061196eb2b1a5500dcede841597e7a6f909b8ee0bbd42e284fd9a0ce997a1ca82c8e73d57300cfa359 + languageName: node + linkType: hard + "bitcoinjs-lib@npm:^5.0.3, bitcoinjs-lib@npm:^5.2.0": version: 5.2.0 resolution: "bitcoinjs-lib@npm:5.2.0" @@ -18893,6 +18949,15 @@ __metadata: languageName: node linkType: hard +"cashaddress@npm:^1.1.0": + version: 1.1.0 + resolution: "cashaddress@npm:1.1.0" + dependencies: + bigi: ^1.4.2 + checksum: 29d5c6e58502a6641cc9aba07822b328af5a26d9d1d8c3243cc13d1f06a781dbdbbff38d0ab0be46d9ca80664d7de7e0bfb782c6170a1a8b9574fb2b1cc42a9d + languageName: node + linkType: hard + "cashaddrjs@npm:0.4.4": version: 0.4.4 resolution: "cashaddrjs@npm:0.4.4" @@ -20960,6 +21025,17 @@ __metadata: languageName: node linkType: hard +"ecpair@npm:@bitgo/ecpair@2.1.0-rc.0": + version: 2.1.0-rc.0 + resolution: "@bitgo/ecpair@npm:2.1.0-rc.0" + dependencies: + randombytes: ^2.1.0 + typeforce: ^1.18.0 + wif: ^2.0.6 + checksum: 6884491e472ea1e2947f194363b723b88348487b8031512eb8657b9d6d58390586e66adf536707dd5950384442dab96ca059a7afc6f0d3cd975a1c66d0f6aa56 + languageName: node + linkType: hard + "ecpair@npm:^3.0.0-rc.0": version: 3.0.0-rc.0 resolution: "ecpair@npm:3.0.0-rc.0" @@ -23290,6 +23366,13 @@ __metadata: languageName: node linkType: hard +"fastpriorityqueue@npm:^0.7.1": + version: 0.7.5 + resolution: "fastpriorityqueue@npm:0.7.5" + checksum: 1a586d09814c2eebd2c29d85d503ecc016203843c8a93d95e0924a26809da2e35ea14e4ca2f4a138a52ec2faaee9077bb79939cfd0466f7cfcef40dcdd1ffe8a + languageName: node + linkType: hard + "fastq@npm:^1.6.0": version: 1.13.0 resolution: "fastq@npm:1.13.0" @@ -24517,6 +24600,18 @@ __metadata: languageName: node linkType: hard +"hash-base@npm:^3.1.2": + version: 3.1.2 + resolution: "hash-base@npm:3.1.2" + dependencies: + inherits: ^2.0.4 + readable-stream: ^2.3.8 + safe-buffer: ^5.2.1 + to-buffer: ^1.2.1 + checksum: ca7c548098ca2aa3616f8ddb0406c9cadd0fbc35868d885200692b13a3b6d5b30e2b55ab808ff6000c69f11b3c26fd98e5955b1484d79a59fbd07d1d6b65ca4b + languageName: node + linkType: hard + "hash-base@npm:~3.0, hash-base@npm:~3.0.4": version: 3.0.5 resolution: "hash-base@npm:3.0.5" @@ -27936,6 +28031,20 @@ __metadata: languageName: node linkType: hard +"nanoassert@npm:^1.0.0": + version: 1.1.0 + resolution: "nanoassert@npm:1.1.0" + checksum: f360fe639db8edc422de9f5a8a7d384ba9c11e9c6fac149f7ad3b0a94e4ec9d5aa44ce55b3e4c7682658efad792604fc96c336b0e80a3590744104ba58af80c7 + languageName: node + linkType: hard + +"nanoassert@npm:^2.0.0": + version: 2.0.0 + resolution: "nanoassert@npm:2.0.0" + checksum: b1d366f9524405f3337192d32dda6ac0b02374e4d0550c9aad33480caf2eb3c84c06f18f41f4c5404c14f6fc1ae6b84692b4375166dcb9f2d04a2ea9b9bccba0 + languageName: node + linkType: hard + "nanoid@npm:^3.1.31, nanoid@npm:^3.3.6": version: 3.3.6 resolution: "nanoid@npm:3.3.6" @@ -31293,6 +31402,16 @@ pvutils@latest: languageName: node linkType: hard +"ripemd160@npm:^2.0.2": + version: 2.0.3 + resolution: "ripemd160@npm:2.0.3" + dependencies: + hash-base: ^3.1.2 + inherits: ^2.0.4 + checksum: da25591f15d3f03d3a26cabc8255634ee9e0ae89fc053846e6b3975bbdbae6941baeb539dba30e0aaec9a726c7442149de064e13c2510332e119e50beaf3314d + languageName: node + linkType: hard + "ripple-address-codec@npm:^5.0.0": version: 5.0.0 resolution: "ripple-address-codec@npm:5.0.0" @@ -33431,6 +33550,17 @@ pvutils@latest: languageName: node linkType: hard +"to-buffer@npm:^1.2.1": + version: 1.2.2 + resolution: "to-buffer@npm:1.2.2" + dependencies: + isarray: ^2.0.5 + safe-buffer: ^5.2.1 + typed-array-buffer: ^1.0.3 + checksum: b0cd2417989a9f3d47273301e8cec2c9798b19a117822424686f385f3ec0239d2defd5fd9f8e76cda0b21e2a2f5de65a58e806506bf4c296c31750c5efd3ae4b + languageName: node + linkType: hard + "to-fast-properties@npm:^2.0.0": version: 2.0.0 resolution: "to-fast-properties@npm:2.0.0" @@ -34891,7 +35021,7 @@ pvutils@latest: languageName: node linkType: hard -"varuint-bitcoin@npm:1.1.2, varuint-bitcoin@npm:^1.0.1, varuint-bitcoin@npm:^1.0.4": +"varuint-bitcoin@npm:1.1.2, varuint-bitcoin@npm:^1.0.1, varuint-bitcoin@npm:^1.0.4, varuint-bitcoin@npm:^1.1.2": version: 1.1.2 resolution: "varuint-bitcoin@npm:1.1.2" dependencies: From 14e7e06e88876a8d549b35e2d07ba773f96a6307 Mon Sep 17 00:00:00 2001 From: gomes <17035424+gomesalexandre@users.noreply.github.com> Date: Thu, 11 Dec 2025 22:07:19 +0300 Subject: [PATCH 07/14] [skip ci] placeholder commit for draft PR From 602628bfba1926aeeb8bef4e8d73f9abef89eb29 Mon Sep 17 00:00:00 2001 From: gomes <17035424+gomesalexandre@users.noreply.github.com> Date: Tue, 16 Dec 2025 19:43:41 +0300 Subject: [PATCH 08/14] chore: update hdwallet packages to 1.62.31-bitgo-bitcoinjs-lib.0 --- .yarnrc.yml | 2 +- package.json | 36 +-- packages/chain-adapters/package.json | 4 +- packages/swapper/package.json | 2 +- yarn.lock | 411 ++++++++------------------- 5 files changed, 137 insertions(+), 318 deletions(-) diff --git a/.yarnrc.yml b/.yarnrc.yml index 793d73c89d3..443b520ba5d 100644 --- a/.yarnrc.yml +++ b/.yarnrc.yml @@ -2,7 +2,7 @@ nodeLinker: node-modules npmAuthToken: "${NPM_AUTH-fallback}" -npmRegistryServer: "https://registry.npmjs.org" +npmRegistryServer: "http://127.0.0.1:4873" plugins: - path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs diff --git a/package.json b/package.json index 2d61ea2b228..2a67e0966d2 100644 --- a/package.json +++ b/package.json @@ -100,24 +100,24 @@ "@shapeshiftoss/chain-adapters": "workspace:^", "@shapeshiftoss/contracts": "workspace:^", "@shapeshiftoss/errors": "workspace:^", - "@shapeshiftoss/hdwallet-coinbase": "1.62.29", - "@shapeshiftoss/hdwallet-core": "1.62.29", - "@shapeshiftoss/hdwallet-gridplus": "1.62.29", - "@shapeshiftoss/hdwallet-keepkey": "1.62.29", - "@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.29", - "@shapeshiftoss/hdwallet-keplr": "1.62.29", - "@shapeshiftoss/hdwallet-ledger": "1.62.29", - "@shapeshiftoss/hdwallet-ledger-webhid": "1.62.29", - "@shapeshiftoss/hdwallet-ledger-webusb": "1.62.29", - "@shapeshiftoss/hdwallet-metamask-multichain": "1.62.29", - "@shapeshiftoss/hdwallet-native": "1.62.29", - "@shapeshiftoss/hdwallet-native-vault": "1.62.29", - "@shapeshiftoss/hdwallet-phantom": "1.62.29", - "@shapeshiftoss/hdwallet-trezor": "1.62.29", - "@shapeshiftoss/hdwallet-trezor-connect": "1.62.29", - "@shapeshiftoss/hdwallet-vultisig": "1.62.29", - "@shapeshiftoss/hdwallet-walletconnect": "1.62.29", - "@shapeshiftoss/hdwallet-walletconnectv2": "1.62.29", + "@shapeshiftoss/hdwallet-coinbase": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-core": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-gridplus": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-keepkey": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-keplr": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-ledger": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-ledger-webhid": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-ledger-webusb": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-metamask-multichain": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-native": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-native-vault": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-phantom": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-trezor": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-trezor-connect": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-vultisig": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-walletconnect": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-walletconnectv2": "1.62.31-bitgo-bitcoinjs-lib.0", "@shapeshiftoss/swapper": "workspace:^", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", diff --git a/packages/chain-adapters/package.json b/packages/chain-adapters/package.json index fa846514ee6..5809573c2f3 100644 --- a/packages/chain-adapters/package.json +++ b/packages/chain-adapters/package.json @@ -31,8 +31,8 @@ "dependencies": { "@mysten/sui": "1.45.0", "@shapeshiftoss/caip": "workspace:^", - "@shapeshiftoss/hdwallet-core": "1.62.29", - "@shapeshiftoss/hdwallet-ledger": "1.62.29", + "@shapeshiftoss/hdwallet-core": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-ledger": "1.62.31-bitgo-bitcoinjs-lib.0", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", diff --git a/packages/swapper/package.json b/packages/swapper/package.json index 3d1fcee8d97..d5f14ecc2ed 100644 --- a/packages/swapper/package.json +++ b/packages/swapper/package.json @@ -39,7 +39,7 @@ "@shapeshiftoss/caip": "workspace:^", "@shapeshiftoss/chain-adapters": "workspace:^", "@shapeshiftoss/contracts": "workspace:^", - "@shapeshiftoss/hdwallet-core": "1.62.29", + "@shapeshiftoss/hdwallet-core": "1.62.31-bitgo-bitcoinjs-lib.0", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", diff --git a/yarn.lock b/yarn.lock index caf8b72f3c6..85431263a8c 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4090,59 +4090,6 @@ __metadata: languageName: node linkType: hard -"@bitgo/blake2b-wasm@npm:^3.2.3": - version: 3.2.3 - resolution: "@bitgo/blake2b-wasm@npm:3.2.3" - dependencies: - nanoassert: ^1.0.0 - checksum: f398ea78559486095bfa898fd4fd5d0a8f022ffbcd31732854cec9118967f695a009339a3b4bf2cef62a2a38b8d93d4781769b3516b15fb3b11a4f12177a1f21 - languageName: node - linkType: hard - -"@bitgo/blake2b@npm:^3.2.4": - version: 3.2.4 - resolution: "@bitgo/blake2b@npm:3.2.4" - dependencies: - "@bitgo/blake2b-wasm": ^3.2.3 - nanoassert: ^2.0.0 - checksum: 6ee6575873eb4af42de387dd698bac835a739eee6aefe642606a978bf79f75be7abb0a619bdbf2789dfa1cf2ef36083a4e3bf23ff5c8f701a04222c5304bbae4 - languageName: node - linkType: hard - -"@bitgo/secp256k1@npm:^1.7.0": - version: 1.7.0 - resolution: "@bitgo/secp256k1@npm:1.7.0" - dependencies: - "@brandonblack/musig": ^0.0.1-alpha.0 - "@noble/secp256k1": 1.6.3 - bip32: ^3.0.1 - create-hash: ^1.2.0 - create-hmac: ^1.1.7 - ecpair: "npm:@bitgo/ecpair@2.1.0-rc.0" - checksum: 3cca08733c2228887111a1486430deaa5bd619bfc2defb0ef28c2f26d33b95f30604ce306c386a1efa0c097ee35212bb401bbee06db4c59e03149b658f7244a9 - languageName: node - linkType: hard - -"@bitgo/utxo-lib@npm:^11.18.0": - version: 11.18.0 - resolution: "@bitgo/utxo-lib@npm:11.18.0" - dependencies: - "@bitgo/blake2b": ^3.2.4 - "@bitgo/secp256k1": ^1.7.0 - "@brandonblack/musig": ^0.0.1-alpha.0 - bech32: ^2.0.0 - bip174: "npm:@bitgo-forks/bip174@3.1.0-master.4" - bitcoin-ops: ^1.3.0 - bitcoinjs-lib: "npm:@bitgo-forks/bitcoinjs-lib@7.1.0-master.11" - bs58check: ^2.1.2 - cashaddress: ^1.1.0 - fastpriorityqueue: ^0.7.1 - typeforce: ^1.11.3 - varuint-bitcoin: ^1.1.2 - checksum: 4641a6dc8a342a828ec3a3dff420e79fd4ddf5ea47051cc66844155038323451ebe1b5e145289cd36e64eca70bbec0f35703be8461f3dca6d1ac7cce028210f3 - languageName: node - linkType: hard - "@bithighlander/bitcoin-cash-js-lib@npm:5.2.1": version: 5.2.1 resolution: "@bithighlander/bitcoin-cash-js-lib@npm:5.2.1" @@ -4191,13 +4138,6 @@ __metadata: languageName: node linkType: hard -"@brandonblack/musig@npm:^0.0.1-alpha.0": - version: 0.0.1-alpha.1 - resolution: "@brandonblack/musig@npm:0.0.1-alpha.1" - checksum: 3e116b30716481bf3d28d2a229bf9d93b3c6753f8c3d833c573db167656f135bfcb76d3c63a8c9c44d9cec6d6cafe56c420b4e647a9307ce69a31eb51ca11724 - languageName: node - linkType: hard - "@cetusprotocol/aggregator-sdk@npm:^1.4.2": version: 1.4.2 resolution: "@cetusprotocol/aggregator-sdk@npm:1.4.2" @@ -9405,13 +9345,6 @@ __metadata: languageName: node linkType: hard -"@noble/secp256k1@npm:1.6.3": - version: 1.6.3 - resolution: "@noble/secp256k1@npm:1.6.3" - checksum: 16eb3242533e645deb64444c771515f66bdc2ee0759894efd42fdeed4ab226ed29827aaaf6caa27d3d95b831452fd4246aa1007cd688aa462ad48fc084ab76e6 - languageName: node - linkType: hard - "@noble/secp256k1@npm:^1.5.5, @noble/secp256k1@npm:^1.7.1": version: 1.7.1 resolution: "@noble/secp256k1@npm:1.7.1" @@ -11165,8 +11098,8 @@ __metadata: dependencies: "@mysten/sui": 1.45.0 "@shapeshiftoss/caip": "workspace:^" - "@shapeshiftoss/hdwallet-core": 1.62.29 - "@shapeshiftoss/hdwallet-ledger": 1.62.29 + "@shapeshiftoss/hdwallet-core": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-ledger": 1.62.31-bitgo-bitcoinjs-lib.0 "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" "@shapeshiftoss/utils": "workspace:^" @@ -11229,15 +11162,15 @@ __metadata: languageName: unknown linkType: soft -"@shapeshiftoss/hdwallet-coinbase@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-coinbase@npm:1.62.29" +"@shapeshiftoss/hdwallet-coinbase@npm:1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-coinbase@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: "@coinbase/wallet-sdk": ^3.6.6 - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": ^1.62.31-bitgo-bitcoinjs-lib.0 eth-rpc-errors: ^4.0.3 lodash: ^4.17.21 - checksum: 4581a8de94fc2750d31f5c1131be82ca635f5f1717279033e1feedafc9d68c8ce34795ad2c7dc7d8c540a687a48fb84aea52ba4de8bdff718a81b59fe8879a3d + checksum: 00fd425d45603548d88d2b7549111471b287aada0568f44497fd3819aafb74315a29cba12f274cd544145ff0d26edd5fc02ac4214592d09dd268fb111b88ccd5 languageName: node linkType: hard @@ -11259,9 +11192,9 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-core@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-core@npm:1.62.29" +"@shapeshiftoss/hdwallet-core@npm:1.62.31-bitgo-bitcoinjs-lib.0, @shapeshiftoss/hdwallet-core@npm:^1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-core@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 "@shapeshiftoss/proto-tx-builder": 0.10.0 @@ -11273,7 +11206,7 @@ __metadata: lodash: ^4.17.21 rxjs: ^6.4.0 type-assertions: ^1.1.0 - checksum: b48989b69d614a0e25a0af4b94ec73176657a83073d4579d503584c30a2346207faf8c611a257b173c5660d6df7c46b8297def9db56c88c7e6431ff51ba0b82b + checksum: 19fbd8efb118dcbeb4626432cd5d6b0a7e89d59f56e533c95dcb567820ff3d42df2add241fb6a579a9d15c7e8d88a5f803517db978c3533a7defc4048b3e06d6 languageName: node linkType: hard @@ -11295,39 +11228,39 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-gridplus@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-gridplus@npm:1.62.29" +"@shapeshiftoss/hdwallet-gridplus@npm:1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-gridplus@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@ethereumjs/common": 4.4.0 "@ethereumjs/rlp": 5.0.2 "@ethereumjs/tx": 5.4.0 "@metamask/eth-sig-util": ^7.0.0 - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": ^1.62.31-bitgo-bitcoinjs-lib.0 bech32: ^1.1.4 bs58: ^5.0.0 bs58check: ^4.0.0 crypto-js: ^4.2.0 gridplus-sdk: ^3.2.0 lodash: ^4.17.21 - checksum: 63d28483b7ff1cf2fb9872f0ebaf8fd6a5f921fa84b6fd50028c5e1a9dabac9ad22fae3e3937f2ec9f52a161de0ec5fec489fb18dfc31fb2c677087d4cfb0113 + checksum: f3b73bb69f5caed88f90321e92ed366589d414679c9d2a8dc8bd989cb3039b9794915870503c8e7f55ab7f9a34cd879b65fe5518f7dc0b25a799e4f1440e8528 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.29" +"@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: - "@shapeshiftoss/hdwallet-core": 1.62.29 - "@shapeshiftoss/hdwallet-keepkey": 1.62.29 - checksum: 22ccd86e7bbc7bab363240bdc3774c3b3b86586c962c8335dc56801abd3977c44a2335b3bb4eb1c2dc0af22f1da0ee8be8df846c10111dc1822351cbd46eb013 + "@shapeshiftoss/hdwallet-core": ^1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-keepkey": ^1.62.31-bitgo-bitcoinjs-lib.0 + checksum: 875f688b5288045ec24dfe8cff896d9db3ee6becc55d3e7004378968a4e0970b2638608aef8ea4cbdd0c6966f6839141bd48dfec33b029740ce2ea7af10f86cb languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keepkey@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-keepkey@npm:1.62.29" +"@shapeshiftoss/hdwallet-keepkey@npm:1.62.31-bitgo-bitcoinjs-lib.0, @shapeshiftoss/hdwallet-keepkey@npm:^1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-keepkey@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@ethereumjs/common": 3.2.0 @@ -11335,7 +11268,7 @@ __metadata: "@keepkey/device-protocol": 7.13.4 "@metamask/eth-sig-util": ^7.0.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": ^1.62.31-bitgo-bitcoinjs-lib.0 "@shapeshiftoss/proto-tx-builder": 0.10.0 bignumber.js: ^9.0.1 bnb-javascript-sdk-nobroadcast: 2.16.15 @@ -11348,44 +11281,44 @@ __metadata: lodash: ^4.17.21 p-lazy: ^3.1.0 semver: ^7.3.8 - checksum: e3477086ff37bf247ca1d2d85ee6f6e2f7090b8fd2f5bf5f9bdd4f862b2a5e207c48f4cb478b47fd31aa1cb1b9af0033b7106a162ac8ad66a5290fcc47bf6b35 + checksum: 36daa078b1c0d770915528a08272c1a216e441fbf7614a66095aadd8e901cb3e145669090ecf5c1a340249af91596a700afeedb0820e6e8a5eadc9ce3951d0f4 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keplr@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-keplr@npm:1.62.29" +"@shapeshiftoss/hdwallet-keplr@npm:1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-keplr@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: "@cosmjs/amino": ^0.28.13 "@cosmjs/stargate": ^0.28.13 "@shapeshiftoss/caip": 8.15.0 - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": ^1.62.31-bitgo-bitcoinjs-lib.0 "@shapeshiftoss/proto-tx-builder": 0.10.0 "@shapeshiftoss/types": 3.1.3 base64-js: ^1.5.1 lodash: ^4.17.21 - checksum: 842a2343429109a7a4c7e9887b90d3960ac162b669803446f5ab78a69ee7b11c02c7dcc4dbc4ac10726ca816a86e213a7920ba7c2c5bd93822f6f19b7a6a3010 + checksum: 5db75f7ae1157be849984cf95703277f8c103416ff5eae89971eaeb13a776c6afa1134082c5017dba19a379e1bf297f2c96264b8f24c91e3c63ca390a71c5e64 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.29" +"@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: "@ledgerhq/hw-app-btc": 10.13.0 "@ledgerhq/hw-app-eth": 7.0.0 "@ledgerhq/hw-transport": 6.31.13 "@ledgerhq/hw-transport-webhid": 6.30.6 - "@shapeshiftoss/hdwallet-core": 1.62.29 - "@shapeshiftoss/hdwallet-ledger": 1.62.29 + "@shapeshiftoss/hdwallet-core": ^1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-ledger": ^1.62.31-bitgo-bitcoinjs-lib.0 "@types/w3c-web-hid": ^1.0.2 - checksum: 609e60e290a7d49441009db423212c0c8857d5a6949951d91a21f492fdbdec1b31fa067bbad6392f9d7556aa939763b1ac63777a2722814afcef9d4a7b8a8c64 + checksum: 00a47c69e559cb5f8716935e43b21675a9bb9b1964f562fa83c6d711cfbf32788610bce772d1591be6d5971a6629608c4e91f761f8f0f9644bf78f232bd8d710 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.29" +"@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: "@ledgerhq/hw-app-btc": 10.13.0 "@ledgerhq/hw-app-cosmos": 6.32.9 @@ -11393,19 +11326,18 @@ __metadata: "@ledgerhq/hw-app-solana": 7.6.0 "@ledgerhq/hw-transport": 6.31.13 "@ledgerhq/hw-transport-webusb": 6.29.13 - "@shapeshiftoss/hdwallet-core": 1.62.29 - "@shapeshiftoss/hdwallet-ledger": 1.62.29 + "@shapeshiftoss/hdwallet-core": ^1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-ledger": ^1.62.31-bitgo-bitcoinjs-lib.0 "@types/w3c-web-usb": ^1.0.4 p-queue: ^7.4.1 - checksum: fb9b72098a3548b3b08d3565b172b01bc7bc3f532ec11b7798bb9e13bd049dd730444dc809139fd8f7d8a2f0dd426d9ca7ba29d2278d08eb46715b47cc05246b + checksum: c4a386cce2a1b18c4783c99b02ac23a7539637abc45db0bd6608c829c7e12939b7aaedd6b785a9ca8fc7e6ae448f590086db3be9f8a3d4379ff4dd21690023e2 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-ledger@npm:1.62.29" +"@shapeshiftoss/hdwallet-ledger@npm:1.62.31-bitgo-bitcoinjs-lib.0, @shapeshiftoss/hdwallet-ledger@npm:^1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-ledger@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: - "@bitgo/utxo-lib": ^11.18.0 "@ethereumjs/common": 3.2.0 "@ethereumjs/tx": 4.2.0 "@ledgerhq/device-core": 0.6.9 @@ -11418,7 +11350,7 @@ __metadata: "@ledgerhq/logs": 6.13.0 "@mysten/ledgerjs-hw-app-sui": ^0.7.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": ^1.62.31-bitgo-bitcoinjs-lib.0 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bchaddrjs: ^0.4.4 @@ -11428,33 +11360,33 @@ __metadata: ethereumjs-util: ^6.1.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: 367da52ef725ab0ee8e0e7b630f12ac64ded6dce3c67a0f015d523214f92b3efadeced7d865d61cba06a047f8cbaa5a436b83a8adee69d35c756ac11f0bcacc0 + checksum: 02d8c1bf390e288c4256bcdcf71f007626991ddeca73e459a12e3e527622b4ec1b2f8af2252f22ab1e4785a3d3e17b0d484a2b870b3b2700e200a26ed00e2e1a languageName: node linkType: hard -"@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.29" +"@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: "@metamask/detect-provider": ^1.2.0 "@metamask/onboarding": ^1.0.1 "@shapeshiftoss/common-api": ^9.3.0 - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": ^1.62.31-bitgo-bitcoinjs-lib.0 "@shapeshiftoss/metamask-snaps-adapter": ^1.0.12 "@shapeshiftoss/metamask-snaps-types": ^1.0.12 eth-rpc-errors: ^4.0.3 lodash: ^4.17.21 mipd: ^0.0.7 - checksum: f0720d42414be6f58bc617b2a01459d742b8dfd5555b1b2750f8145cd81cfea9882fcf9e88995380311e016518667eade453451c7d0d547e00c11bdee7b62e0a + checksum: 26bfe7912532ab902455b502e3afbc315b1994867e1d79ce86b8785de209b439f5c537d7784747f3be5b0d00eefa28a71ff74a4673cc7b60e38c6b43fa8e0827 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-native-vault@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-native-vault@npm:1.62.29" +"@shapeshiftoss/hdwallet-native-vault@npm:1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-native-vault@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 - "@shapeshiftoss/hdwallet-native": 1.62.29 + "@shapeshiftoss/hdwallet-native": ^1.62.31-bitgo-bitcoinjs-lib.0 bip39: ^3.0.4 hash-wasm: ^4.11.0 idb-keyval: ^6.0.3 @@ -11462,18 +11394,18 @@ __metadata: p-lazy: ^3.1.0 type-assertions: ^1.1.0 uuid: ^8.3.2 - checksum: f51b32343597bce50b12b72dc2e6373a4dd14f6a9a08e780bf26125d54b8e536d5d8233589a9ae4059ff0e0e9eb0cd8f92db45c80d2d6de0a2046e4c38ab0034 + checksum: 743415b616c76c92ee3cbd15013be76ec870e85d47035a8300d9d21aa3f73920425507b2d07b4000f5d3056f3d228b78624a4042b29435f71be2762854eb24cf languageName: node linkType: hard -"@shapeshiftoss/hdwallet-native@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-native@npm:1.62.29" +"@shapeshiftoss/hdwallet-native@npm:1.62.31-bitgo-bitcoinjs-lib.0, @shapeshiftoss/hdwallet-native@npm:^1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-native@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@noble/curves": ^1.4.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": ^1.62.31-bitgo-bitcoinjs-lib.0 "@shapeshiftoss/proto-tx-builder": 0.10.0 "@zxing/text-encoding": ^0.9.0 bchaddrjs: ^0.4.9 @@ -11495,7 +11427,7 @@ __metadata: p-lazy: ^3.1.0 scrypt-js: ^3.0.1 tendermint-tx-builder: 1.0.16 - checksum: b892e39287a0b2c6bae0800fc80fe75fdd617b1e4102e1aeda3ac698eb5044aa8241f4d7dae9230eb87b31fab140340bb95e47fb06fd6b9339572169c3af0a57 + checksum: 81cc1b77dde92dc0ace6bf653c8c46daffe188d6eaec2574ef6af78357862f635c2a0ed82f6994e3afe40b8e90a29c32d60ea81976c9e8e37e15e20635936a4c languageName: node linkType: hard @@ -11532,84 +11464,84 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-phantom@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-phantom@npm:1.62.29" +"@shapeshiftoss/hdwallet-phantom@npm:1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-phantom@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": ^1.62.31-bitgo-bitcoinjs-lib.0 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bitcoinjs-message: ^2.0.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: 461d887d55e8f944ffab8aa964a391f99348e258e3eba63bfa4276f8b37c2007cf22b0398dded0ff84b732d131fce0e45148e2d70c83ca65ac75d9eb8c1958d0 + checksum: a3878d08bc19f5b29e65046665e49be5e8e35225f46faaecdf425aaa8e3a2ff39aed824f44446fcc31894d075a2cb98ce96c9450c9c9ccfcc8c9c62fe4ea96b0 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.29" +"@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: - "@shapeshiftoss/hdwallet-core": 1.62.29 - "@shapeshiftoss/hdwallet-trezor": 1.62.29 + "@shapeshiftoss/hdwallet-core": ^1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-trezor": ^1.62.31-bitgo-bitcoinjs-lib.0 "@trezor/connect-web": ^9.6.4 - checksum: 11e80a846314fb913bde3b34b8ee8b058b1e8d682383be5385ecad4db10799edb674a61fd9b30471d04522413f602a1aa8ce618edc385da3f3d5446951cf8d48 + checksum: fc038c1c2bf1a3874f28274a6b4a9b19ac9b9de75efc2ba9286ed3ad2b03cede91789375f8247c33ffd3ab5a3c30de8ece5f3fa6d12191af6149488a38b8fe36 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-trezor@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-trezor@npm:1.62.29" +"@shapeshiftoss/hdwallet-trezor@npm:1.62.31-bitgo-bitcoinjs-lib.0, @shapeshiftoss/hdwallet-trezor@npm:^1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-trezor@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: "@ethereumjs/common": 3.2.0 "@ethereumjs/tx": 4.2.0 - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": ^1.62.31-bitgo-bitcoinjs-lib.0 base64-js: ^1.5.1 bchaddrjs: ^0.4.4 lodash: ^4.17.21 - checksum: 7f69699ec6cd13003676d3bfc338543cacf1e1db979d87976bc40aa2e45d1bf599390c40fd18fe09125226f4a114e60e3056cf4134e45f798b5ca888bdcc9dd0 + checksum: c6f7dadac84d3998391ca76aa15ed478b76603744be30224e814598180bcac2e90fb92de0aa1ec619f4e6987b742ca24cedc66e5dba1603a8c051afe9ee072cd languageName: node linkType: hard -"@shapeshiftoss/hdwallet-vultisig@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-vultisig@npm:1.62.29" +"@shapeshiftoss/hdwallet-vultisig@npm:1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-vultisig@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: "@cosmjs/amino": ^0.28.13 "@cosmjs/stargate": ^0.28.13 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": ^1.62.31-bitgo-bitcoinjs-lib.0 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bitcoinjs-message: ^2.0.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: 95cba4c613b02160f1c5cb484f44a19792f3361207c498239ef5d133adc4462f5b81325d16e3e70411d008b48986c39b81c9284d181175cc188ada126e37fcac + checksum: 9cf6348576b2b72460d28dc237824d72c317e58795850f9ebcc92c4bc99072d4a79a2858976856da1a9a49dbe48dea349ec8bd761c27a571271752e60a9d34d8 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-walletconnect@npm:1.62.29" +"@shapeshiftoss/hdwallet-walletconnect@npm:1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-walletconnect@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": ^1.62.31-bitgo-bitcoinjs-lib.0 "@walletconnect/qrcode-modal": ^1.7.8 "@walletconnect/web3-provider": ^1.7.8 ethers: ^5.6.5 - checksum: 23e513c78252df79092a06ccea921dfe6bb30d3f1fbf174869e954655d7c2e8072784d8611a471be59da6a1ecdf1ac19ba78f40fc386d5d9faf293e999261341 + checksum: 23a6a8f2562b66ab68ae4e1e2d4dc7fb0610e5d16ea69654977e3e58deab7a6c63c02d0437e40b75029f50262190c64a8b98d94e5cf37afc3c843fec4232011a languageName: node linkType: hard -"@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29": - version: 1.62.29 - resolution: "@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.29" +"@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.31-bitgo-bitcoinjs-lib.0": + version: 1.62.31-bitgo-bitcoinjs-lib.0 + resolution: "@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.31-bitgo-bitcoinjs-lib.0" dependencies: - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": ^1.62.31-bitgo-bitcoinjs-lib.0 "@walletconnect/ethereum-provider": ^2.20.2 "@walletconnect/modal": ^2.6.2 ethers: ^5.6.5 - checksum: dee492655c22b727e49dfcb146845fc58eaacb61c54da71e5668f2f4cf597d3337a902be98ed6132bd1ad4627fc4367f2da8b96f8042ecb1cc19429c2335b5ef + checksum: 854c1007ef8b324764b9bb246f0af5551b6c1fd79c5d4194c1ed96d14e57a2b3d29c381be6f21d531819b8e98dc3c5142a89ab445ec436ed60053e3e790563d9 languageName: node linkType: hard @@ -11719,7 +11651,7 @@ __metadata: "@shapeshiftoss/caip": "workspace:^" "@shapeshiftoss/chain-adapters": "workspace:^" "@shapeshiftoss/contracts": "workspace:^" - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": 1.62.31-bitgo-bitcoinjs-lib.0 "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" "@shapeshiftoss/utils": "workspace:^" @@ -11854,24 +11786,24 @@ __metadata: "@shapeshiftoss/chain-adapters": "workspace:^" "@shapeshiftoss/contracts": "workspace:^" "@shapeshiftoss/errors": "workspace:^" - "@shapeshiftoss/hdwallet-coinbase": 1.62.29 - "@shapeshiftoss/hdwallet-core": 1.62.29 - "@shapeshiftoss/hdwallet-gridplus": 1.62.29 - "@shapeshiftoss/hdwallet-keepkey": 1.62.29 - "@shapeshiftoss/hdwallet-keepkey-webusb": 1.62.29 - "@shapeshiftoss/hdwallet-keplr": 1.62.29 - "@shapeshiftoss/hdwallet-ledger": 1.62.29 - "@shapeshiftoss/hdwallet-ledger-webhid": 1.62.29 - "@shapeshiftoss/hdwallet-ledger-webusb": 1.62.29 - "@shapeshiftoss/hdwallet-metamask-multichain": 1.62.29 - "@shapeshiftoss/hdwallet-native": 1.62.29 - "@shapeshiftoss/hdwallet-native-vault": 1.62.29 - "@shapeshiftoss/hdwallet-phantom": 1.62.29 - "@shapeshiftoss/hdwallet-trezor": 1.62.29 - "@shapeshiftoss/hdwallet-trezor-connect": 1.62.29 - "@shapeshiftoss/hdwallet-vultisig": 1.62.29 - "@shapeshiftoss/hdwallet-walletconnect": 1.62.29 - "@shapeshiftoss/hdwallet-walletconnectv2": 1.62.29 + "@shapeshiftoss/hdwallet-coinbase": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-core": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-gridplus": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-keepkey": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-keepkey-webusb": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-keplr": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-ledger": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-ledger-webhid": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-ledger-webusb": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-metamask-multichain": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-native": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-native-vault": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-phantom": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-trezor": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-trezor-connect": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-vultisig": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-walletconnect": 1.62.31-bitgo-bitcoinjs-lib.0 + "@shapeshiftoss/hdwallet-walletconnectv2": 1.62.31-bitgo-bitcoinjs-lib.0 "@shapeshiftoss/swapper": "workspace:^" "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" @@ -18018,13 +17950,6 @@ __metadata: languageName: node linkType: hard -"bip174@npm:@bitgo-forks/bip174@3.1.0-master.4": - version: 3.1.0-master.4 - resolution: "@bitgo-forks/bip174@npm:3.1.0-master.4" - checksum: 23d8c613cd04368698fa4e8e5bc146a006d5c8d88c24dbe5cddcf793e055d9d86544598bc8617b05a6b44954bc337bc193462d580846814df29f8e09d9cbc955 - languageName: node - linkType: hard - "bip174@npm:^2.0.1": version: 2.0.1 resolution: "bip174@npm:2.0.1" @@ -18083,20 +18008,6 @@ __metadata: languageName: node linkType: hard -"bip32@npm:^3.0.1": - version: 3.1.0 - resolution: "bip32@npm:3.1.0" - dependencies: - bs58check: ^2.1.1 - create-hash: ^1.2.0 - create-hmac: ^1.1.7 - ripemd160: ^2.0.2 - typeforce: ^1.11.5 - wif: ^2.0.6 - checksum: 55bdc5dcae6cf83c000262cee9df912fe3012eeb000ff7cff72547e52442b7a779e93e7a19affbaa105d22f8d95299f8964edb2912f11a2bdd7b31433a7b5bad - languageName: node - linkType: hard - "bip39-light@npm:^1.0.7": version: 1.0.7 resolution: "bip39-light@npm:1.0.7" @@ -18199,24 +18110,6 @@ __metadata: languageName: node linkType: hard -"bitcoinjs-lib@npm:@bitgo-forks/bitcoinjs-lib@7.1.0-master.11": - version: 7.1.0-master.11 - resolution: "@bitgo-forks/bitcoinjs-lib@npm:7.1.0-master.11" - dependencies: - bech32: ^2.0.0 - bip174: "npm:@bitgo-forks/bip174@3.1.0-master.4" - bs58check: ^2.1.2 - create-hash: ^1.1.0 - fastpriorityqueue: ^0.7.1 - json5: ^2.2.3 - ripemd160: ^2.0.2 - typeforce: ^1.11.3 - varuint-bitcoin: ^1.1.2 - wif: ^2.0.1 - checksum: f7760c687fe0705cd3bdd45431742fc871995ea451f669061196eb2b1a5500dcede841597e7a6f909b8ee0bbd42e284fd9a0ce997a1ca82c8e73d57300cfa359 - languageName: node - linkType: hard - "bitcoinjs-lib@npm:^5.0.3, bitcoinjs-lib@npm:^5.2.0": version: 5.2.0 resolution: "bitcoinjs-lib@npm:5.2.0" @@ -19000,15 +18893,6 @@ __metadata: languageName: node linkType: hard -"cashaddress@npm:^1.1.0": - version: 1.1.0 - resolution: "cashaddress@npm:1.1.0" - dependencies: - bigi: ^1.4.2 - checksum: 29d5c6e58502a6641cc9aba07822b328af5a26d9d1d8c3243cc13d1f06a781dbdbbff38d0ab0be46d9ca80664d7de7e0bfb782c6170a1a8b9574fb2b1cc42a9d - languageName: node - linkType: hard - "cashaddrjs@npm:0.4.4": version: 0.4.4 resolution: "cashaddrjs@npm:0.4.4" @@ -21076,17 +20960,6 @@ __metadata: languageName: node linkType: hard -"ecpair@npm:@bitgo/ecpair@2.1.0-rc.0": - version: 2.1.0-rc.0 - resolution: "@bitgo/ecpair@npm:2.1.0-rc.0" - dependencies: - randombytes: ^2.1.0 - typeforce: ^1.18.0 - wif: ^2.0.6 - checksum: 6884491e472ea1e2947f194363b723b88348487b8031512eb8657b9d6d58390586e66adf536707dd5950384442dab96ca059a7afc6f0d3cd975a1c66d0f6aa56 - languageName: node - linkType: hard - "ecpair@npm:^3.0.0-rc.0": version: 3.0.0-rc.0 resolution: "ecpair@npm:3.0.0-rc.0" @@ -23417,13 +23290,6 @@ __metadata: languageName: node linkType: hard -"fastpriorityqueue@npm:^0.7.1": - version: 0.7.5 - resolution: "fastpriorityqueue@npm:0.7.5" - checksum: 1a586d09814c2eebd2c29d85d503ecc016203843c8a93d95e0924a26809da2e35ea14e4ca2f4a138a52ec2faaee9077bb79939cfd0466f7cfcef40dcdd1ffe8a - languageName: node - linkType: hard - "fastq@npm:^1.6.0": version: 1.13.0 resolution: "fastq@npm:1.13.0" @@ -24651,18 +24517,6 @@ __metadata: languageName: node linkType: hard -"hash-base@npm:^3.1.2": - version: 3.1.2 - resolution: "hash-base@npm:3.1.2" - dependencies: - inherits: ^2.0.4 - readable-stream: ^2.3.8 - safe-buffer: ^5.2.1 - to-buffer: ^1.2.1 - checksum: ca7c548098ca2aa3616f8ddb0406c9cadd0fbc35868d885200692b13a3b6d5b30e2b55ab808ff6000c69f11b3c26fd98e5955b1484d79a59fbd07d1d6b65ca4b - languageName: node - linkType: hard - "hash-base@npm:~3.0, hash-base@npm:~3.0.4": version: 3.0.5 resolution: "hash-base@npm:3.0.5" @@ -28082,20 +27936,6 @@ __metadata: languageName: node linkType: hard -"nanoassert@npm:^1.0.0": - version: 1.1.0 - resolution: "nanoassert@npm:1.1.0" - checksum: f360fe639db8edc422de9f5a8a7d384ba9c11e9c6fac149f7ad3b0a94e4ec9d5aa44ce55b3e4c7682658efad792604fc96c336b0e80a3590744104ba58af80c7 - languageName: node - linkType: hard - -"nanoassert@npm:^2.0.0": - version: 2.0.0 - resolution: "nanoassert@npm:2.0.0" - checksum: b1d366f9524405f3337192d32dda6ac0b02374e4d0550c9aad33480caf2eb3c84c06f18f41f4c5404c14f6fc1ae6b84692b4375166dcb9f2d04a2ea9b9bccba0 - languageName: node - linkType: hard - "nanoid@npm:^3.1.31, nanoid@npm:^3.3.6": version: 3.3.6 resolution: "nanoid@npm:3.3.6" @@ -31453,16 +31293,6 @@ pvutils@latest: languageName: node linkType: hard -"ripemd160@npm:^2.0.2": - version: 2.0.3 - resolution: "ripemd160@npm:2.0.3" - dependencies: - hash-base: ^3.1.2 - inherits: ^2.0.4 - checksum: da25591f15d3f03d3a26cabc8255634ee9e0ae89fc053846e6b3975bbdbae6941baeb539dba30e0aaec9a726c7442149de064e13c2510332e119e50beaf3314d - languageName: node - linkType: hard - "ripple-address-codec@npm:^5.0.0": version: 5.0.0 resolution: "ripple-address-codec@npm:5.0.0" @@ -33601,17 +33431,6 @@ pvutils@latest: languageName: node linkType: hard -"to-buffer@npm:^1.2.1": - version: 1.2.2 - resolution: "to-buffer@npm:1.2.2" - dependencies: - isarray: ^2.0.5 - safe-buffer: ^5.2.1 - typed-array-buffer: ^1.0.3 - checksum: b0cd2417989a9f3d47273301e8cec2c9798b19a117822424686f385f3ec0239d2defd5fd9f8e76cda0b21e2a2f5de65a58e806506bf4c296c31750c5efd3ae4b - languageName: node - linkType: hard - "to-fast-properties@npm:^2.0.0": version: 2.0.0 resolution: "to-fast-properties@npm:2.0.0" @@ -35072,7 +34891,7 @@ pvutils@latest: languageName: node linkType: hard -"varuint-bitcoin@npm:1.1.2, varuint-bitcoin@npm:^1.0.1, varuint-bitcoin@npm:^1.0.4, varuint-bitcoin@npm:^1.1.2": +"varuint-bitcoin@npm:1.1.2, varuint-bitcoin@npm:^1.0.1, varuint-bitcoin@npm:^1.0.4": version: 1.1.2 resolution: "varuint-bitcoin@npm:1.1.2" dependencies: From e71d1759b33938fa38e4a6f43b8cb448df7a8a9f Mon Sep 17 00:00:00 2001 From: gomes <17035424+gomesalexandre@users.noreply.github.com> Date: Wed, 17 Dec 2025 12:23:10 +0300 Subject: [PATCH 09/14] fix: extract blockHeight from Blockchair for Zcash Ledger consensus branch ID Updates hdwallet packages to 1.62.31 --- package.json | 36 +++++++++---------- packages/chain-adapters/package.json | 4 +-- .../src/utxo/UtxoBaseAdapter.ts | 5 ++- packages/swapper/package.json | 2 +- 4 files changed, 25 insertions(+), 22 deletions(-) diff --git a/package.json b/package.json index 2a67e0966d2..8959fc4ca24 100644 --- a/package.json +++ b/package.json @@ -100,24 +100,24 @@ "@shapeshiftoss/chain-adapters": "workspace:^", "@shapeshiftoss/contracts": "workspace:^", "@shapeshiftoss/errors": "workspace:^", - "@shapeshiftoss/hdwallet-coinbase": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-core": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-gridplus": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-keepkey": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-keplr": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-ledger": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-ledger-webhid": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-ledger-webusb": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-metamask-multichain": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-native": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-native-vault": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-phantom": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-trezor": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-trezor-connect": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-vultisig": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-walletconnect": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-walletconnectv2": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-coinbase": "1.62.31", + "@shapeshiftoss/hdwallet-core": "1.62.31", + "@shapeshiftoss/hdwallet-gridplus": "1.62.31", + "@shapeshiftoss/hdwallet-keepkey": "1.62.31", + "@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.31", + "@shapeshiftoss/hdwallet-keplr": "1.62.31", + "@shapeshiftoss/hdwallet-ledger": "1.62.31", + "@shapeshiftoss/hdwallet-ledger-webhid": "1.62.31", + "@shapeshiftoss/hdwallet-ledger-webusb": "1.62.31", + "@shapeshiftoss/hdwallet-metamask-multichain": "1.62.31", + "@shapeshiftoss/hdwallet-native": "1.62.31", + "@shapeshiftoss/hdwallet-native-vault": "1.62.31", + "@shapeshiftoss/hdwallet-phantom": "1.62.31", + "@shapeshiftoss/hdwallet-trezor": "1.62.31", + "@shapeshiftoss/hdwallet-trezor-connect": "1.62.31", + "@shapeshiftoss/hdwallet-vultisig": "1.62.31", + "@shapeshiftoss/hdwallet-walletconnect": "1.62.31", + "@shapeshiftoss/hdwallet-walletconnectv2": "1.62.31", "@shapeshiftoss/swapper": "workspace:^", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", diff --git a/packages/chain-adapters/package.json b/packages/chain-adapters/package.json index 5809573c2f3..ee23024106a 100644 --- a/packages/chain-adapters/package.json +++ b/packages/chain-adapters/package.json @@ -31,8 +31,8 @@ "dependencies": { "@mysten/sui": "1.45.0", "@shapeshiftoss/caip": "workspace:^", - "@shapeshiftoss/hdwallet-core": "1.62.31-bitgo-bitcoinjs-lib.0", - "@shapeshiftoss/hdwallet-ledger": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-core": "1.62.31", + "@shapeshiftoss/hdwallet-ledger": "1.62.31", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", diff --git a/packages/chain-adapters/src/utxo/UtxoBaseAdapter.ts b/packages/chain-adapters/src/utxo/UtxoBaseAdapter.ts index 305c53eae3b..864777e73c2 100644 --- a/packages/chain-adapters/src/utxo/UtxoBaseAdapter.ts +++ b/packages/chain-adapters/src/utxo/UtxoBaseAdapter.ts @@ -352,7 +352,10 @@ export abstract class UtxoBaseAdapter implements IChainAd if (!response.ok || data.error) { throw new Error(`Blockchair API error: ${data.error || response.statusText}`) } - return { hex: data.data[input.txid].raw_transaction } + return { + hex: data.data[input.txid].raw_transaction, + blockHeight: data.context.state, + } } throw error } diff --git a/packages/swapper/package.json b/packages/swapper/package.json index d5f14ecc2ed..30354958e02 100644 --- a/packages/swapper/package.json +++ b/packages/swapper/package.json @@ -39,7 +39,7 @@ "@shapeshiftoss/caip": "workspace:^", "@shapeshiftoss/chain-adapters": "workspace:^", "@shapeshiftoss/contracts": "workspace:^", - "@shapeshiftoss/hdwallet-core": "1.62.31-bitgo-bitcoinjs-lib.0", + "@shapeshiftoss/hdwallet-core": "1.62.31", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", From d5bfc501023e5461863e4217b99c3096021973e0 Mon Sep 17 00:00:00 2001 From: gomes <17035424+gomesalexandre@users.noreply.github.com> Date: Sun, 28 Dec 2025 20:28:00 +0100 Subject: [PATCH 10/14] fix(chain-adapters): pass blockHeight to Ledger only when positive MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Mempool transactions return blockHeight: -1 from unchained-client. When passed to Ledger, getZcashBranchId(-1) falls through to OVERWINTER consensus branch ID (0x5ba81b19) instead of NU6.1 (0x4dec4df0), causing second Zcash transactions to fail with "bad-tx-consensus-branch-id-mismatch". Only pass blockHeight when it's a valid positive number. When undefined, hdwallet-ledger uses fallback 3150000 (above NU6.1 activation). 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- packages/chain-adapters/src/utxo/UtxoBaseAdapter.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/packages/chain-adapters/src/utxo/UtxoBaseAdapter.ts b/packages/chain-adapters/src/utxo/UtxoBaseAdapter.ts index 864777e73c2..5562ba4a2ab 100644 --- a/packages/chain-adapters/src/utxo/UtxoBaseAdapter.ts +++ b/packages/chain-adapters/src/utxo/UtxoBaseAdapter.ts @@ -354,7 +354,6 @@ export abstract class UtxoBaseAdapter implements IChainAd } return { hex: data.data[input.txid].raw_transaction, - blockHeight: data.context.state, } } throw error @@ -375,9 +374,12 @@ export abstract class UtxoBaseAdapter implements IChainAd txid: input.txid, hex: data.hex, // For Zcash, we need to pass the blockHeight and txid of each input transaction - // so Ledger can add them to the PSBT and determine the correct consensus branch ID + // so Ledger can add them to the PSBT and determine the correct consensus branch ID. + // Only pass blockHeight if it's a valid positive number (mempool txs have blockHeight: -1) ...(this.coinName === 'Zcash' && - 'blockHeight' in data && { blockHeight: data.blockHeight }), + 'blockHeight' in data && + typeof data.blockHeight === 'number' && + data.blockHeight > 0 && { blockHeight: data.blockHeight }), }) } From cb73f34dde740f62b9b697840a14a4ed30828e14 Mon Sep 17 00:00:00 2001 From: gomes <17035424+gomesalexandre@users.noreply.github.com> Date: Sun, 28 Dec 2025 20:28:34 +0100 Subject: [PATCH 11/14] docs(skill): add isAssetSupportedByWallet step to chain integration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Documents Step 3.8 for adding asset support detection, which was missing for recent chains (Tron, SUI, etc.) and caused assets not to show up. Also adds note about RelaySwapper mapping completeness. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- .claude/skills/chain-integration/SKILL.md | 47 +++++++++++++++++++++++ 1 file changed, 47 insertions(+) diff --git a/.claude/skills/chain-integration/SKILL.md b/.claude/skills/chain-integration/SKILL.md index 9e54b7d0614..cb0771a5bca 100644 --- a/.claude/skills/chain-integration/SKILL.md +++ b/.claude/skills/chain-integration/SKILL.md @@ -961,6 +961,50 @@ case KnownChainIds.[ChainName]Mainnet: return supports[Chain](wallet) // from hdwallet-core ``` +### Step 3.8: Add Asset Support Detection (CRITICAL!) + +**IMPORTANT**: This was missing for recent chains (Tron, SUI, Monad, HyperEVM, Plasma) and caused assets not to show up properly! + +**File**: `src/state/slices/portfolioSlice/utils/index.ts` + +Add your chain to the `isAssetSupportedByWallet` function around line 367: + +```typescript +// 1. Import your chain ID at the top +import { + // ... existing imports + [chainLower]ChainId, +} from '@shapeshiftoss/caip' + +// 2. Import the support function from hdwallet-core +import { + // ... existing imports + supports[ChainName], +} from '@shapeshiftoss/hdwallet-core' + +// 3. Add case to the switch statement in isAssetSupportedByWallet +export const isAssetSupportedByWallet = (assetId: AssetId, wallet: HDWallet): boolean => { + if (!assetId) return false + const { chainId } = fromAssetId(assetId) + switch (chainId) { + // ... existing cases + case [chainLower]ChainId: + return supports[ChainName](wallet) + // ... rest of cases + default: + return false + } +} +``` + +**Why this matters**: This function determines if a wallet can use a particular asset. Without it, assets for your chain won't appear in wallet UIs even if everything else is configured correctly! + +**Example**: For HyperEVM, add: +```typescript +case hyperEvmChainId: + return supportsHyperEvm(wallet) +``` + --- ## Phase 4: Web Plugin & Feature Flags @@ -1323,6 +1367,8 @@ case CHAIN_REFERENCE.[ChainName]Mainnet: } ``` +**IMPORTANT**: Make sure ALL chains that are in the `chainIdToRelayChainId` mapping in `constant.ts` have a corresponding case in the switch statement in `relayTokenToAssetId.ts`. Missing cases will cause runtime errors like `chainId 'XX' not supported`. + **Check Relay docs** for your chain: - - Verify chain ID and native token address @@ -1922,6 +1968,7 @@ case plasmaChainId: - [ ] `src/context/PluginProvider/PluginProvider.tsx` - [ ] `src/hooks/useWalletSupportsChain/useWalletSupportsChain.ts` - [ ] `src/hooks/useActionCenterSubscribers/useSendActionSubscriber.tsx` +- [ ] `src/state/slices/portfolioSlice/utils/index.ts` (isAssetSupportedByWallet function) ### Web Files (Config) - [ ] `.env` From 6a48ca39f22db649a1ecb0f9a412634f4767a334 Mon Sep 17 00:00:00 2001 From: gomes <17035424+gomesalexandre@users.noreply.github.com> Date: Sun, 28 Dec 2025 20:39:01 +0100 Subject: [PATCH 12/14] chore: revert .yarnrc.yml to npmjs registry [skip ci] --- .yarnrc.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.yarnrc.yml b/.yarnrc.yml index 443b520ba5d..793d73c89d3 100644 --- a/.yarnrc.yml +++ b/.yarnrc.yml @@ -2,7 +2,7 @@ nodeLinker: node-modules npmAuthToken: "${NPM_AUTH-fallback}" -npmRegistryServer: "http://127.0.0.1:4873" +npmRegistryServer: "https://registry.npmjs.org" plugins: - path: .yarn/plugins/@yarnpkg/plugin-interactive-tools.cjs From ca307a0dd8829e1a88c96621ab4226878a792b9d Mon Sep 17 00:00:00 2001 From: gomes <17035424+gomesalexandre@users.noreply.github.com> Date: Sun, 28 Dec 2025 20:41:49 +0100 Subject: [PATCH 13/14] chore: bump hdwallet to 1.62.35 [skip ci] --- package.json | 36 ++++++++++++++-------------- packages/chain-adapters/package.json | 4 ++-- packages/swapper/package.json | 2 +- 3 files changed, 21 insertions(+), 21 deletions(-) diff --git a/package.json b/package.json index dec63666055..086316a2b9c 100644 --- a/package.json +++ b/package.json @@ -100,24 +100,24 @@ "@shapeshiftoss/chain-adapters": "workspace:^", "@shapeshiftoss/contracts": "workspace:^", "@shapeshiftoss/errors": "workspace:^", - "@shapeshiftoss/hdwallet-coinbase": "1.62.33", - "@shapeshiftoss/hdwallet-core": "1.62.33", - "@shapeshiftoss/hdwallet-gridplus": "1.62.33", - "@shapeshiftoss/hdwallet-keepkey": "1.62.33", - "@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.33", - "@shapeshiftoss/hdwallet-keplr": "1.62.33", - "@shapeshiftoss/hdwallet-ledger": "1.62.33", - "@shapeshiftoss/hdwallet-ledger-webhid": "1.62.33", - "@shapeshiftoss/hdwallet-ledger-webusb": "1.62.33", - "@shapeshiftoss/hdwallet-metamask-multichain": "1.62.33", - "@shapeshiftoss/hdwallet-native": "1.62.33", - "@shapeshiftoss/hdwallet-native-vault": "1.62.33", - "@shapeshiftoss/hdwallet-phantom": "1.62.33", - "@shapeshiftoss/hdwallet-trezor": "1.62.33", - "@shapeshiftoss/hdwallet-trezor-connect": "1.62.33", - "@shapeshiftoss/hdwallet-vultisig": "1.62.33", - "@shapeshiftoss/hdwallet-walletconnect": "1.62.33", - "@shapeshiftoss/hdwallet-walletconnectv2": "1.62.33", + "@shapeshiftoss/hdwallet-coinbase": "1.62.35", + "@shapeshiftoss/hdwallet-core": "1.62.35", + "@shapeshiftoss/hdwallet-gridplus": "1.62.35", + "@shapeshiftoss/hdwallet-keepkey": "1.62.35", + "@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.35", + "@shapeshiftoss/hdwallet-keplr": "1.62.35", + "@shapeshiftoss/hdwallet-ledger": "1.62.35", + "@shapeshiftoss/hdwallet-ledger-webhid": "1.62.35", + "@shapeshiftoss/hdwallet-ledger-webusb": "1.62.35", + "@shapeshiftoss/hdwallet-metamask-multichain": "1.62.35", + "@shapeshiftoss/hdwallet-native": "1.62.35", + "@shapeshiftoss/hdwallet-native-vault": "1.62.35", + "@shapeshiftoss/hdwallet-phantom": "1.62.35", + "@shapeshiftoss/hdwallet-trezor": "1.62.35", + "@shapeshiftoss/hdwallet-trezor-connect": "1.62.35", + "@shapeshiftoss/hdwallet-vultisig": "1.62.35", + "@shapeshiftoss/hdwallet-walletconnect": "1.62.35", + "@shapeshiftoss/hdwallet-walletconnectv2": "1.62.35", "@shapeshiftoss/swapper": "workspace:^", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", diff --git a/packages/chain-adapters/package.json b/packages/chain-adapters/package.json index 1770a057498..9c1bb71cf82 100644 --- a/packages/chain-adapters/package.json +++ b/packages/chain-adapters/package.json @@ -31,8 +31,8 @@ "dependencies": { "@mysten/sui": "1.45.0", "@shapeshiftoss/caip": "workspace:^", - "@shapeshiftoss/hdwallet-core": "1.62.33", - "@shapeshiftoss/hdwallet-ledger": "1.62.33", + "@shapeshiftoss/hdwallet-core": "1.62.35", + "@shapeshiftoss/hdwallet-ledger": "1.62.35", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", diff --git a/packages/swapper/package.json b/packages/swapper/package.json index 7295e498396..7648c51e96f 100644 --- a/packages/swapper/package.json +++ b/packages/swapper/package.json @@ -39,7 +39,7 @@ "@shapeshiftoss/caip": "workspace:^", "@shapeshiftoss/chain-adapters": "workspace:^", "@shapeshiftoss/contracts": "workspace:^", - "@shapeshiftoss/hdwallet-core": "1.62.33", + "@shapeshiftoss/hdwallet-core": "1.62.35", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", From 8a6377671932d6d91a39d86853effa6bf635ca7d Mon Sep 17 00:00:00 2001 From: gomes <17035424+gomesalexandre@users.noreply.github.com> Date: Sun, 28 Dec 2025 22:07:12 +0100 Subject: [PATCH 14/14] feat: bump --- yarn.lock | 589 ++++++++++++++++++++++++++---------------------------- 1 file changed, 288 insertions(+), 301 deletions(-) diff --git a/yarn.lock b/yarn.lock index 100fc42ba70..801c505ed68 100644 --- a/yarn.lock +++ b/yarn.lock @@ -4090,59 +4090,6 @@ __metadata: languageName: node linkType: hard -"@bitgo/blake2b-wasm@npm:^3.2.3": - version: 3.2.3 - resolution: "@bitgo/blake2b-wasm@npm:3.2.3" - dependencies: - nanoassert: ^1.0.0 - checksum: f398ea78559486095bfa898fd4fd5d0a8f022ffbcd31732854cec9118967f695a009339a3b4bf2cef62a2a38b8d93d4781769b3516b15fb3b11a4f12177a1f21 - languageName: node - linkType: hard - -"@bitgo/blake2b@npm:^3.2.4": - version: 3.2.4 - resolution: "@bitgo/blake2b@npm:3.2.4" - dependencies: - "@bitgo/blake2b-wasm": ^3.2.3 - nanoassert: ^2.0.0 - checksum: 6ee6575873eb4af42de387dd698bac835a739eee6aefe642606a978bf79f75be7abb0a619bdbf2789dfa1cf2ef36083a4e3bf23ff5c8f701a04222c5304bbae4 - languageName: node - linkType: hard - -"@bitgo/secp256k1@npm:^1.7.0": - version: 1.7.0 - resolution: "@bitgo/secp256k1@npm:1.7.0" - dependencies: - "@brandonblack/musig": ^0.0.1-alpha.0 - "@noble/secp256k1": 1.6.3 - bip32: ^3.0.1 - create-hash: ^1.2.0 - create-hmac: ^1.1.7 - ecpair: "npm:@bitgo/ecpair@2.1.0-rc.0" - checksum: 3cca08733c2228887111a1486430deaa5bd619bfc2defb0ef28c2f26d33b95f30604ce306c386a1efa0c097ee35212bb401bbee06db4c59e03149b658f7244a9 - languageName: node - linkType: hard - -"@bitgo/utxo-lib@npm:^11.18.0": - version: 11.18.0 - resolution: "@bitgo/utxo-lib@npm:11.18.0" - dependencies: - "@bitgo/blake2b": ^3.2.4 - "@bitgo/secp256k1": ^1.7.0 - "@brandonblack/musig": ^0.0.1-alpha.0 - bech32: ^2.0.0 - bip174: "npm:@bitgo-forks/bip174@3.1.0-master.4" - bitcoin-ops: ^1.3.0 - bitcoinjs-lib: "npm:@bitgo-forks/bitcoinjs-lib@7.1.0-master.11" - bs58check: ^2.1.2 - cashaddress: ^1.1.0 - fastpriorityqueue: ^0.7.1 - typeforce: ^1.11.3 - varuint-bitcoin: ^1.1.2 - checksum: 4641a6dc8a342a828ec3a3dff420e79fd4ddf5ea47051cc66844155038323451ebe1b5e145289cd36e64eca70bbec0f35703be8461f3dca6d1ac7cce028210f3 - languageName: node - linkType: hard - "@bithighlander/bitcoin-cash-js-lib@npm:5.2.1": version: 5.2.1 resolution: "@bithighlander/bitcoin-cash-js-lib@npm:5.2.1" @@ -4191,13 +4138,6 @@ __metadata: languageName: node linkType: hard -"@brandonblack/musig@npm:^0.0.1-alpha.0": - version: 0.0.1-alpha.1 - resolution: "@brandonblack/musig@npm:0.0.1-alpha.1" - checksum: 3e116b30716481bf3d28d2a229bf9d93b3c6753f8c3d833c573db167656f135bfcb76d3c63a8c9c44d9cec6d6cafe56c420b4e647a9307ce69a31eb51ca11724 - languageName: node - linkType: hard - "@cetusprotocol/aggregator-sdk@npm:^1.4.2": version: 1.4.2 resolution: "@cetusprotocol/aggregator-sdk@npm:1.4.2" @@ -9314,6 +9254,15 @@ __metadata: languageName: node linkType: hard +"@noble/curves@npm:~1.7.0": + version: 1.7.0 + resolution: "@noble/curves@npm:1.7.0" + dependencies: + "@noble/hashes": 1.6.0 + checksum: e220b704f1e516f326fff985e794e840a267f5542e1388737142b08177672ebc41b460b5a5bf636d7622c68e8ae719bc042ccd8aed16dc14311450a94b5f2a05 + languageName: node + linkType: hard + "@noble/ed25519@npm:^1.6.0, @noble/ed25519@npm:^1.6.1, @noble/ed25519@npm:^1.7.1": version: 1.7.3 resolution: "@noble/ed25519@npm:1.7.3" @@ -9356,6 +9305,13 @@ __metadata: languageName: node linkType: hard +"@noble/hashes@npm:1.6.0": + version: 1.6.0 + resolution: "@noble/hashes@npm:1.6.0" + checksum: 07729b80108d2a9b862eb4e070d4f78ca7ee86b9a9c13a4f7c338ba47a15d4386dd283235da71f21ad515fa9f0b9429fc3da39d2f2b4a50e2442212d14cfd4a9 + languageName: node + linkType: hard + "@noble/hashes@npm:1.7.0": version: 1.7.0 resolution: "@noble/hashes@npm:1.7.0" @@ -9391,7 +9347,7 @@ __metadata: languageName: node linkType: hard -"@noble/hashes@npm:^1.1.5, @noble/hashes@npm:^1.2.0": +"@noble/hashes@npm:^1.1.5, @noble/hashes@npm:^1.2.0, @noble/hashes@npm:~1.6.0": version: 1.6.1 resolution: "@noble/hashes@npm:1.6.1" checksum: 57c62f65ee217c0293b4321b547792aa6d79812bfe70a7d62dc83e0f936cc677b14ed981b4e88cf8fdad37cd6d3a0cbd3bd0908b0728adc9daf066e678be8901 @@ -9405,13 +9361,6 @@ __metadata: languageName: node linkType: hard -"@noble/secp256k1@npm:1.6.3": - version: 1.6.3 - resolution: "@noble/secp256k1@npm:1.6.3" - checksum: 16eb3242533e645deb64444c771515f66bdc2ee0759894efd42fdeed4ab226ed29827aaaf6caa27d3d95b831452fd4246aa1007cd688aa462ad48fc084ab76e6 - languageName: node - linkType: hard - "@noble/secp256k1@npm:^1.5.5, @noble/secp256k1@npm:^1.7.1": version: 1.7.1 resolution: "@noble/secp256k1@npm:1.7.1" @@ -10813,7 +10762,7 @@ __metadata: languageName: node linkType: hard -"@scure/base@npm:1.2.6, @scure/base@npm:^1.2.6": +"@scure/base@npm:1.2.6, @scure/base@npm:^1.2.6, @scure/base@npm:~1.2.1": version: 1.2.6 resolution: "@scure/base@npm:1.2.6" checksum: 1058cb26d5e4c1c46c9cc0ae0b67cc66d306733baf35d6ebdd8ddaba242b80c3807b726e3b48cb0411bb95ec10d37764969063ea62188f86ae9315df8ea6b325 @@ -10953,6 +10902,26 @@ __metadata: languageName: node linkType: hard +"@scure/starknet@npm:1.1.0": + version: 1.1.0 + resolution: "@scure/starknet@npm:1.1.0" + dependencies: + "@noble/curves": ~1.7.0 + "@noble/hashes": ~1.6.0 + checksum: 7aa08f272c16e2ad6ef6d79e8d8e133fa56876a1e1dd276e9103bc7f6ac2bcff1974594be7e56b08203dbaed1b40353c1633b5673cd349969bb1769e6f0be8a0 + languageName: node + linkType: hard + +"@scure/starknet@npm:^1.0.0": + version: 1.1.2 + resolution: "@scure/starknet@npm:1.1.2" + dependencies: + "@noble/curves": ~1.9.0 + "@noble/hashes": ~1.8.0 + checksum: 54479d5b2f4768821a0813607f32863d375a82b8b0e3317b7bb31e8fe8a12d378bd3f3b7100c81a2db273e5c0485d807a61026c4acb067407bd51b1737ecbf97 + languageName: node + linkType: hard + "@sentry-internal/browser-utils@npm:8.26.0, @sentry-internal/browser-utils@npm:^8.26.0": version: 8.26.0 resolution: "@sentry-internal/browser-utils@npm:8.26.0" @@ -11165,8 +11134,8 @@ __metadata: dependencies: "@mysten/sui": 1.45.0 "@shapeshiftoss/caip": "workspace:^" - "@shapeshiftoss/hdwallet-core": 1.62.32 - "@shapeshiftoss/hdwallet-ledger": 1.62.32 + "@shapeshiftoss/hdwallet-core": 1.62.35 + "@shapeshiftoss/hdwallet-ledger": 1.62.35 "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" "@shapeshiftoss/utils": "workspace:^" @@ -11229,15 +11198,15 @@ __metadata: languageName: unknown linkType: soft -"@shapeshiftoss/hdwallet-coinbase@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-coinbase@npm:1.62.32" +"@shapeshiftoss/hdwallet-coinbase@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-coinbase@npm:1.62.35" dependencies: "@coinbase/wallet-sdk": ^3.6.6 - "@shapeshiftoss/hdwallet-core": 1.62.32 + "@shapeshiftoss/hdwallet-core": 1.62.35 eth-rpc-errors: ^4.0.3 lodash: ^4.17.21 - checksum: 95283510771bc0f616439dfeb7522daa951e28cefa9f406257d96dd81c06bb152d7f180ee55d0307748c6c7da3e3bf6f0fe839c8b9f7c3e56cdf518178e035cd + checksum: 5a07ad7dda759406f6850084235eae8fc105a96e8946ebd1bc2d8f805b21dea1a17208a95ab8515ea795d6ba000e24b6109c3691aca333e910ab7c46cf4bd9db languageName: node linkType: hard @@ -11259,9 +11228,9 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-core@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-core@npm:1.62.32" +"@shapeshiftoss/hdwallet-core@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-core@npm:1.62.35" dependencies: "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 "@shapeshiftoss/proto-tx-builder": 0.10.0 @@ -11273,7 +11242,7 @@ __metadata: lodash: ^4.17.21 rxjs: ^6.4.0 type-assertions: ^1.1.0 - checksum: a2c2eb6da5f2e57ecefcd503580ce5315f77421ba727ee86dec5484812ed4fb42aff8a11b674b7f8d2279af1f7838b3a7594a8a4abb7ddf0efe149f910332dad + checksum: f1fd814b8ee5b02575445d3a012afc6e3493ff22762fc4ddba2904a516133d236a9e705f14be676faa1a2d305435e9f6ef7f22d41f0765bc81c76ead1347bf29 languageName: node linkType: hard @@ -11295,39 +11264,39 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-gridplus@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-gridplus@npm:1.62.32" +"@shapeshiftoss/hdwallet-gridplus@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-gridplus@npm:1.62.35" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@ethereumjs/common": 4.4.0 "@ethereumjs/rlp": 5.0.2 "@ethereumjs/tx": 5.4.0 "@metamask/eth-sig-util": ^7.0.0 - "@shapeshiftoss/hdwallet-core": 1.62.32 + "@shapeshiftoss/hdwallet-core": 1.62.35 bech32: ^1.1.4 bs58: ^5.0.0 bs58check: ^4.0.0 crypto-js: ^4.2.0 gridplus-sdk: ^3.2.0 lodash: ^4.17.21 - checksum: cd00b9bad19db54261422d8486b96a530770e793e0676816a742e2ae2a196743f965bd7aceb0982c6a6d3a51e7b8fda402e0427e46b95248be881e984b5cf21e + checksum: 254083d319ef3d670665264dbe10544f23988e96cb56e98690d988375bd5fa791444ac662ae133fe373815499b236541b3dfcb118bdd291f943a79c586e84558 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.32" +"@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.35" dependencies: - "@shapeshiftoss/hdwallet-core": 1.62.32 - "@shapeshiftoss/hdwallet-keepkey": 1.62.32 - checksum: 3eac35d649529a4029ec18ee05372d901111961bf31d246b9a020a9f53b3706def030b4ef928e5c21efad91e8ff288c9420fc0a9b975e750c343196459f6678c + "@shapeshiftoss/hdwallet-core": 1.62.35 + "@shapeshiftoss/hdwallet-keepkey": 1.62.35 + checksum: 4cf1be6a1498bb2f44e7acf43725754ee0030e619539785e639367e1756be5ff7ef4002a38d06b8d2373102005507501b7cf0feaeb8c88d52d8b6dceef52f9f3 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keepkey@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-keepkey@npm:1.62.32" +"@shapeshiftoss/hdwallet-keepkey@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-keepkey@npm:1.62.35" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@ethereumjs/common": 3.2.0 @@ -11335,7 +11304,7 @@ __metadata: "@keepkey/device-protocol": 7.13.4 "@metamask/eth-sig-util": ^7.0.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": 1.62.32 + "@shapeshiftoss/hdwallet-core": 1.62.35 "@shapeshiftoss/proto-tx-builder": 0.10.0 bignumber.js: ^9.0.1 bnb-javascript-sdk-nobroadcast: 2.16.15 @@ -11348,44 +11317,44 @@ __metadata: lodash: ^4.17.21 p-lazy: ^3.1.0 semver: ^7.3.8 - checksum: 5d202e4c852eb6fad05eed81a7ee7da81749ba62a603fabf85b61c875efeda62dadc56ce01f9fdb5b9fd8bb86940c78c101f42aff1d74cfe8f52931efcaa5d9c + checksum: ccc726259d3701262a9cbcced8327f379bee1a300146e2b1f88e83052223e035e476377f801a4dcb3478bc268b5c3350a1c32ebd4a44b4746f98e2716e984ad5 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-keplr@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-keplr@npm:1.62.32" +"@shapeshiftoss/hdwallet-keplr@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-keplr@npm:1.62.35" dependencies: "@cosmjs/amino": ^0.28.13 "@cosmjs/stargate": ^0.28.13 "@shapeshiftoss/caip": 8.15.0 - "@shapeshiftoss/hdwallet-core": 1.62.32 + "@shapeshiftoss/hdwallet-core": 1.62.35 "@shapeshiftoss/proto-tx-builder": 0.10.0 "@shapeshiftoss/types": 3.1.3 base64-js: ^1.5.1 lodash: ^4.17.21 - checksum: 064234f2eab9641fe2b4ef1e73669e27cbc48d03214c7594c148140c654809833a53f1c5a5c416fc18ad020f15f48a5dfc100b5492cd9dbdda7e17ad296d7c7b + checksum: bdd2e213acab343668c2faa30bca271502135f478e2adfa292c31ae79d1eedba6b95ed7f82bd691fb9470acab38efda95b62e049c7427b34cd7fc47e82071b9d languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.32" +"@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.35" dependencies: "@ledgerhq/hw-app-btc": 10.13.0 "@ledgerhq/hw-app-eth": 7.0.0 "@ledgerhq/hw-transport": 6.31.13 "@ledgerhq/hw-transport-webhid": 6.30.6 - "@shapeshiftoss/hdwallet-core": 1.62.32 - "@shapeshiftoss/hdwallet-ledger": 1.62.32 + "@shapeshiftoss/hdwallet-core": 1.62.35 + "@shapeshiftoss/hdwallet-ledger": 1.62.35 "@types/w3c-web-hid": ^1.0.2 - checksum: 21924ef52eabb07603106f4094f123b38887d187f312d642bd0fe933acbf9ab98fc40cc5c45a99ecbf7fc3c2f671ac25c74bb684ca831e81e3bd342926abce26 + checksum: a978efaf834cca764f0da249b7ec66f5b3e8c65540cd1669af15aa4e34391467076130f253978854112e18f4f35876a4e3b6026e55340b87e707c45092899d28 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.32" +"@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.35" dependencies: "@ledgerhq/hw-app-btc": 10.13.0 "@ledgerhq/hw-app-cosmos": 6.32.9 @@ -11393,19 +11362,18 @@ __metadata: "@ledgerhq/hw-app-solana": 7.6.0 "@ledgerhq/hw-transport": 6.31.13 "@ledgerhq/hw-transport-webusb": 6.29.13 - "@shapeshiftoss/hdwallet-core": 1.62.32 - "@shapeshiftoss/hdwallet-ledger": 1.62.32 + "@shapeshiftoss/hdwallet-core": 1.62.35 + "@shapeshiftoss/hdwallet-ledger": 1.62.35 "@types/w3c-web-usb": ^1.0.4 p-queue: ^7.4.1 - checksum: 6f92b5be4edab9bf42aa2500ff6d17ab9019c8cf18de723161f64300e9763b87d689893112c78a714635a32d45814f404c1d95317cb339d326d59e62c9869232 + checksum: 1a787c0f701888e10322df3580b5832eb21d06c69cdf5521ee750b8a46e4916f5923243ac367dd96f05bbbfb15a9037e159196fee8e38928ce83931eaf40e8f4 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-ledger@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-ledger@npm:1.62.32" +"@shapeshiftoss/hdwallet-ledger@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-ledger@npm:1.62.35" dependencies: - "@bitgo/utxo-lib": ^11.18.0 "@ethereumjs/common": 3.2.0 "@ethereumjs/tx": 4.2.0 "@ledgerhq/device-core": 0.6.9 @@ -11418,7 +11386,7 @@ __metadata: "@ledgerhq/logs": 6.13.0 "@mysten/ledgerjs-hw-app-sui": ^0.7.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": 1.62.32 + "@shapeshiftoss/hdwallet-core": 1.62.35 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bchaddrjs: ^0.4.4 @@ -11428,33 +11396,33 @@ __metadata: ethereumjs-util: ^6.1.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: da68c61c47d20bd43ac747e7ca132002d32ad7a46055ea3e6ba612cdf202c209bc3f1f5879719caa4ec999a55161ccd48b07d191b059d7a0b303071f8de3c4bb + checksum: b860f661eb728bb091274d40fcd7f444255e1a1a62ae53e8cfc7cbfd2429bf01a8d7089b2c35d4c1fac11805c63ddc200994bc2deb2109c15b36107b7b8f650c languageName: node linkType: hard -"@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.32" +"@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.35" dependencies: "@metamask/detect-provider": ^1.2.0 "@metamask/onboarding": ^1.0.1 "@shapeshiftoss/common-api": ^9.3.0 - "@shapeshiftoss/hdwallet-core": 1.62.32 + "@shapeshiftoss/hdwallet-core": 1.62.35 "@shapeshiftoss/metamask-snaps-adapter": ^1.0.12 "@shapeshiftoss/metamask-snaps-types": ^1.0.12 eth-rpc-errors: ^4.0.3 lodash: ^4.17.21 mipd: ^0.0.7 - checksum: c588351427f537dd931dd71f837655f1122b7512df1674e2d3a005fc2bb272fbe20088a0020991b384adf6d151d1d978a736ddbe662c37043df546aedc20d435 + checksum: f7efc21fea5c77ceb711e17ca4afa92840df5c3c7cbe8f47c512a6067a151fd8b4f76606821b1b9d319e354db9b4bc5c4f58b7f5d94a639f1550543d68599002 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-native-vault@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-native-vault@npm:1.62.32" +"@shapeshiftoss/hdwallet-native-vault@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-native-vault@npm:1.62.35" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 - "@shapeshiftoss/hdwallet-native": 1.62.32 + "@shapeshiftoss/hdwallet-native": 1.62.35 bip39: ^3.0.4 hash-wasm: ^4.11.0 idb-keyval: ^6.0.3 @@ -11462,18 +11430,19 @@ __metadata: p-lazy: ^3.1.0 type-assertions: ^1.1.0 uuid: ^8.3.2 - checksum: 558575ed283bfe3718e4dc6251e6d82d74aa05095a33d88f74f0d843c876c478ff54317f6f37778b73b74c6664f8cafcb8449857f87f8664139cb78391ed7dad + checksum: 83b29173bf7c469e7d8f70567b555136c2172432f32f7f39d53935ca45b68e7c57a39954a4b942aa9f7ef4afec4ffc62e5436421862a27da446e9880fe30af3c languageName: node linkType: hard -"@shapeshiftoss/hdwallet-native@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-native@npm:1.62.32" +"@shapeshiftoss/hdwallet-native@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-native@npm:1.62.35" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@noble/curves": ^1.4.0 + "@scure/starknet": ^1.0.0 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": 1.62.32 + "@shapeshiftoss/hdwallet-core": 1.62.35 "@shapeshiftoss/proto-tx-builder": 0.10.0 "@zxing/text-encoding": ^0.9.0 bchaddrjs: ^0.4.9 @@ -11494,8 +11463,9 @@ __metadata: node-fetch: ^2.6.1 p-lazy: ^3.1.0 scrypt-js: ^3.0.1 + starknet: ^9.3.0 tendermint-tx-builder: 1.0.16 - checksum: ef16b0c334ec3a5fe90962113391e1c816b42a1751ea733ace4eb3095eeaf19fbfd9e2c71f7179243ce18b1286afdd0a9ee98ba5aff7a04af387cc5b831fdab8 + checksum: b8ed640bc0b9c850ad5cd30a8f865e156fd9bba20bd18b238fa17511d686eb77bc3006ec790f555edb4ed8b312b8e7a26ddd71e96636f1903e3f38cd91158170 languageName: node linkType: hard @@ -11532,84 +11502,84 @@ __metadata: languageName: node linkType: hard -"@shapeshiftoss/hdwallet-phantom@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-phantom@npm:1.62.32" +"@shapeshiftoss/hdwallet-phantom@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-phantom@npm:1.62.35" dependencies: "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": 1.62.32 + "@shapeshiftoss/hdwallet-core": 1.62.35 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bitcoinjs-message: ^2.0.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: 226333783bd05e670e5771fed795341ac4d2eb2caba4c90ebd8d7f76c719dae27ce2750b4aa5cb0a4e11e656e6f6de0aaacabd15680fceb15d9dff1861465d7e + checksum: bf2ca9954b22e89c560f3e9bdf3ab22619cf5c8ae7ee52982bf39974ae6c41ee420466b60ae17de6f79a6d0a4370e6099c1338c102ffbf84d0c685bb90abf54a languageName: node linkType: hard -"@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.32" +"@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.35" dependencies: - "@shapeshiftoss/hdwallet-core": 1.62.32 - "@shapeshiftoss/hdwallet-trezor": 1.62.32 + "@shapeshiftoss/hdwallet-core": 1.62.35 + "@shapeshiftoss/hdwallet-trezor": 1.62.35 "@trezor/connect-web": ^9.6.4 - checksum: a28d5d50363c879bba396ebb523f28784f377f1d7236621778156418e53504a1c506cb1ec6c7b82351922ebad867c21ad772ec4535c0f0f5c7fa3b05d70878a1 + checksum: 6c267da47b051e77226181c8f7cea365db05ed6d43099da8cb343ab0276e4125fac241c072d6e2bf521739f1b2de54e8fd45f5049d230322465d0fffe40bfe8e languageName: node linkType: hard -"@shapeshiftoss/hdwallet-trezor@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-trezor@npm:1.62.32" +"@shapeshiftoss/hdwallet-trezor@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-trezor@npm:1.62.35" dependencies: "@ethereumjs/common": 3.2.0 "@ethereumjs/tx": 4.2.0 - "@shapeshiftoss/hdwallet-core": 1.62.32 + "@shapeshiftoss/hdwallet-core": 1.62.35 base64-js: ^1.5.1 bchaddrjs: ^0.4.4 lodash: ^4.17.21 - checksum: 0a406408758e37d45f1b4f976993fcdcae4feb520b1d866c8455d3a9abd72a14955592dc8a184553cd3fa4441383c577d610bdc7e138bef2ec3be57b2d4b8b28 + checksum: dca5d30e6884c3fcd422ebc6a8c9fec0a452757e69c96b70738741d2b625c25b3e4dcb244032ab862627cdb3c0cda097b8c8653f757f9a36ba6f6ae19abd6919 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-vultisig@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-vultisig@npm:1.62.32" +"@shapeshiftoss/hdwallet-vultisig@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-vultisig@npm:1.62.35" dependencies: "@cosmjs/amino": ^0.28.13 "@cosmjs/stargate": ^0.28.13 "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": 1.62.32 + "@shapeshiftoss/hdwallet-core": 1.62.35 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bitcoinjs-message: ^2.0.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: b998687a68fba0ef53a032e5796bd326542745fa5a414def16dad1f03329f75819fda2d1b375d86b5546443998fd66979c5e66e04a10e1fac3675d70fbcb5ab3 + checksum: 848dffb99db0d53bf26465dcf67326e0f78eab2e8aa844b5c75616742e3cd5dd7f5a23b41e0fa4999d10a49557c84bc73149a2b566c04004d9d8edf1afb522eb languageName: node linkType: hard -"@shapeshiftoss/hdwallet-walletconnect@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-walletconnect@npm:1.62.32" +"@shapeshiftoss/hdwallet-walletconnect@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-walletconnect@npm:1.62.35" dependencies: - "@shapeshiftoss/hdwallet-core": 1.62.32 + "@shapeshiftoss/hdwallet-core": 1.62.35 "@walletconnect/qrcode-modal": ^1.7.8 "@walletconnect/web3-provider": ^1.7.8 ethers: ^5.6.5 - checksum: 6c396da7342c878e3c3a291892d3bd203c2ab1340e3e9a941c9d729e6d1397788b24aaef89a6b8e1c678e6d3498d57d8a8e344e45f487cfac8ed8baf055e56aa + checksum: 6561ddaf693ded9132153a99726992dcaf963d2d6a01f78444b87399cdc11f04d0e57484fbc90b544e1301109a57d38f276ea3869c8105489df9329296686313 languageName: node linkType: hard -"@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.32": - version: 1.62.32 - resolution: "@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.32" +"@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.35": + version: 1.62.35 + resolution: "@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.35" dependencies: - "@shapeshiftoss/hdwallet-core": 1.62.32 + "@shapeshiftoss/hdwallet-core": 1.62.35 "@walletconnect/ethereum-provider": ^2.20.2 "@walletconnect/modal": ^2.6.2 ethers: ^5.6.5 - checksum: 829fad90f9bf9aaa0a4da80e87b6db3d6fd3337fbc07c54177912cd9eb6b03274d1bde41c67756a9ae81bae186fbf1990ffb61de273c0902bf02ae3999d03c43 + checksum: 8cbb6ddd5983ab4f8f824218c83cae43f5aa5816a5f65f69de199267f7963ddd0a0fadfdb8685b5a00f34d2af361aee67528051bc69459bfccfe8db6480e4811 languageName: node linkType: hard @@ -11719,7 +11689,7 @@ __metadata: "@shapeshiftoss/caip": "workspace:^" "@shapeshiftoss/chain-adapters": "workspace:^" "@shapeshiftoss/contracts": "workspace:^" - "@shapeshiftoss/hdwallet-core": 1.62.32 + "@shapeshiftoss/hdwallet-core": 1.62.35 "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" "@shapeshiftoss/utils": "workspace:^" @@ -11854,24 +11824,24 @@ __metadata: "@shapeshiftoss/chain-adapters": "workspace:^" "@shapeshiftoss/contracts": "workspace:^" "@shapeshiftoss/errors": "workspace:^" - "@shapeshiftoss/hdwallet-coinbase": 1.62.32 - "@shapeshiftoss/hdwallet-core": 1.62.32 - "@shapeshiftoss/hdwallet-gridplus": 1.62.32 - "@shapeshiftoss/hdwallet-keepkey": 1.62.32 - "@shapeshiftoss/hdwallet-keepkey-webusb": 1.62.32 - "@shapeshiftoss/hdwallet-keplr": 1.62.32 - "@shapeshiftoss/hdwallet-ledger": 1.62.32 - "@shapeshiftoss/hdwallet-ledger-webhid": 1.62.32 - "@shapeshiftoss/hdwallet-ledger-webusb": 1.62.32 - "@shapeshiftoss/hdwallet-metamask-multichain": 1.62.32 - "@shapeshiftoss/hdwallet-native": 1.62.32 - "@shapeshiftoss/hdwallet-native-vault": 1.62.32 - "@shapeshiftoss/hdwallet-phantom": 1.62.32 - "@shapeshiftoss/hdwallet-trezor": 1.62.32 - "@shapeshiftoss/hdwallet-trezor-connect": 1.62.32 - "@shapeshiftoss/hdwallet-vultisig": 1.62.32 - "@shapeshiftoss/hdwallet-walletconnect": 1.62.32 - "@shapeshiftoss/hdwallet-walletconnectv2": 1.62.32 + "@shapeshiftoss/hdwallet-coinbase": 1.62.35 + "@shapeshiftoss/hdwallet-core": 1.62.35 + "@shapeshiftoss/hdwallet-gridplus": 1.62.35 + "@shapeshiftoss/hdwallet-keepkey": 1.62.35 + "@shapeshiftoss/hdwallet-keepkey-webusb": 1.62.35 + "@shapeshiftoss/hdwallet-keplr": 1.62.35 + "@shapeshiftoss/hdwallet-ledger": 1.62.35 + "@shapeshiftoss/hdwallet-ledger-webhid": 1.62.35 + "@shapeshiftoss/hdwallet-ledger-webusb": 1.62.35 + "@shapeshiftoss/hdwallet-metamask-multichain": 1.62.35 + "@shapeshiftoss/hdwallet-native": 1.62.35 + "@shapeshiftoss/hdwallet-native-vault": 1.62.35 + "@shapeshiftoss/hdwallet-phantom": 1.62.35 + "@shapeshiftoss/hdwallet-trezor": 1.62.35 + "@shapeshiftoss/hdwallet-trezor-connect": 1.62.35 + "@shapeshiftoss/hdwallet-vultisig": 1.62.35 + "@shapeshiftoss/hdwallet-walletconnect": 1.62.35 + "@shapeshiftoss/hdwallet-walletconnectv2": 1.62.35 "@shapeshiftoss/swapper": "workspace:^" "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" @@ -13180,6 +13150,39 @@ __metadata: languageName: node linkType: hard +"@starknet-io/get-starknet-wallet-standard@npm:^5.0.0": + version: 5.0.0 + resolution: "@starknet-io/get-starknet-wallet-standard@npm:5.0.0" + dependencies: + "@starknet-io/types-js": ^0.7.10 + "@wallet-standard/base": ^1.1.0 + "@wallet-standard/features": ^1.1.0 + ox: ^0.4.4 + checksum: 41c9327d98c37054da83fa1a36a38f850a4d3dc9d10f29106b60948063e37c30e37b1761d957901c453cdc559f2a2c9a208b9032f5b702155da41a7a3e326148 + languageName: node + linkType: hard + +"@starknet-io/starknet-types-010@npm:@starknet-io/types-js@0.10.0": + version: 0.10.0 + resolution: "@starknet-io/types-js@npm:0.10.0" + checksum: 5f07bd2836653b6d8e30646332fe6e79b57157b252db929ff790ef4387ddb8ee3300cc5a64efc26bc4c4a45decd1ac309e20959c06f0ab6e7a2eeb0b3238788a + languageName: node + linkType: hard + +"@starknet-io/starknet-types-09@npm:@starknet-io/types-js@~0.9.1": + version: 0.9.2 + resolution: "@starknet-io/types-js@npm:0.9.2" + checksum: df504df0f69bee72975bf299424c2c61f14f9cd7982883124f7dd7f40f9ec58b53df9c010321ca6efb45dbc292b92cba948a175b49bdc4b77c20c059487681e9 + languageName: node + linkType: hard + +"@starknet-io/types-js@npm:^0.7.10": + version: 0.7.10 + resolution: "@starknet-io/types-js@npm:0.7.10" + checksum: 8f71c57d0f101ebbde91e3016b73ab70ce3329ccb7463764a27a61db42b9ea14b690bd620a6b2dd4303e890b4a9212bdd40626962e0320e82e0c600fd3be5abf + languageName: node + linkType: hard + "@stellar/js-xdr@npm:^3.1.2": version: 3.1.2 resolution: "@stellar/js-xdr@npm:3.1.2" @@ -15513,6 +15516,22 @@ __metadata: languageName: node linkType: hard +"@wallet-standard/base@npm:^1.1.0": + version: 1.1.0 + resolution: "@wallet-standard/base@npm:1.1.0" + checksum: 4057188f615f1deeb0c8a39f04018d4575f87cb387749dab6bc2e8232a95400be51ea4235450829bb256aa21136621f47167383ef1767f0eb3109f1140c74d86 + languageName: node + linkType: hard + +"@wallet-standard/features@npm:^1.1.0": + version: 1.1.0 + resolution: "@wallet-standard/features@npm:1.1.0" + dependencies: + "@wallet-standard/base": ^1.1.0 + checksum: c0c101ee0bd4c55619e39505d15158132bbd619f4dc611880a4b0c001e96806957bed35d7a51efdff0077cf5afb01e0dc46a32b01d9d8c27f807fc2b61e92159 + languageName: node + linkType: hard + "@walletconnect/browser-utils@npm:^1.8.0": version: 1.8.0 resolution: "@walletconnect/browser-utils@npm:1.8.0" @@ -16516,6 +16535,20 @@ __metadata: languageName: node linkType: hard +"abi-wan-kanabi@npm:2.2.4": + version: 2.2.4 + resolution: "abi-wan-kanabi@npm:2.2.4" + dependencies: + ansicolors: ^0.3.2 + cardinal: ^2.1.1 + fs-extra: ^10.0.0 + yargs: ^17.7.2 + bin: + generate: dist/generate.js + checksum: 6d7cbb424f6e7fda479aaa586e114bbbe0f65bea19215f8a8847b7ab67bdf07baff42ea07c9cfba0f8067f2503490a1017eb3c9fc92df79b8f94a87301f705d4 + languageName: node + linkType: hard + "abitype@npm:0.9.8": version: 0.9.8 resolution: "abitype@npm:0.9.8" @@ -16839,7 +16872,7 @@ __metadata: languageName: node linkType: hard -"ansicolors@npm:^0.3.2": +"ansicolors@npm:^0.3.2, ansicolors@npm:~0.3.2": version: 0.3.2 resolution: "ansicolors@npm:0.3.2" checksum: e84fae7ebc27ac96d9dbb57f35f078cd6dde1b7046b0f03f73dcefc9fbb1f2e82e3685d083466aded8faf038f9fa9ebb408d215282bcd7aaa301d5ac3c486815 @@ -18018,13 +18051,6 @@ __metadata: languageName: node linkType: hard -"bip174@npm:@bitgo-forks/bip174@3.1.0-master.4": - version: 3.1.0-master.4 - resolution: "@bitgo-forks/bip174@npm:3.1.0-master.4" - checksum: 23d8c613cd04368698fa4e8e5bc146a006d5c8d88c24dbe5cddcf793e055d9d86544598bc8617b05a6b44954bc337bc193462d580846814df29f8e09d9cbc955 - languageName: node - linkType: hard - "bip174@npm:^2.0.1": version: 2.0.1 resolution: "bip174@npm:2.0.1" @@ -18083,20 +18109,6 @@ __metadata: languageName: node linkType: hard -"bip32@npm:^3.0.1": - version: 3.1.0 - resolution: "bip32@npm:3.1.0" - dependencies: - bs58check: ^2.1.1 - create-hash: ^1.2.0 - create-hmac: ^1.1.7 - ripemd160: ^2.0.2 - typeforce: ^1.11.5 - wif: ^2.0.6 - checksum: 55bdc5dcae6cf83c000262cee9df912fe3012eeb000ff7cff72547e52442b7a779e93e7a19affbaa105d22f8d95299f8964edb2912f11a2bdd7b31433a7b5bad - languageName: node - linkType: hard - "bip39-light@npm:^1.0.7": version: 1.0.7 resolution: "bip39-light@npm:1.0.7" @@ -18199,24 +18211,6 @@ __metadata: languageName: node linkType: hard -"bitcoinjs-lib@npm:@bitgo-forks/bitcoinjs-lib@7.1.0-master.11": - version: 7.1.0-master.11 - resolution: "@bitgo-forks/bitcoinjs-lib@npm:7.1.0-master.11" - dependencies: - bech32: ^2.0.0 - bip174: "npm:@bitgo-forks/bip174@3.1.0-master.4" - bs58check: ^2.1.2 - create-hash: ^1.1.0 - fastpriorityqueue: ^0.7.1 - json5: ^2.2.3 - ripemd160: ^2.0.2 - typeforce: ^1.11.3 - varuint-bitcoin: ^1.1.2 - wif: ^2.0.1 - checksum: f7760c687fe0705cd3bdd45431742fc871995ea451f669061196eb2b1a5500dcede841597e7a6f909b8ee0bbd42e284fd9a0ce997a1ca82c8e73d57300cfa359 - languageName: node - linkType: hard - "bitcoinjs-lib@npm:^5.0.3, bitcoinjs-lib@npm:^5.2.0": version: 5.2.0 resolution: "bitcoinjs-lib@npm:5.2.0" @@ -18993,6 +18987,18 @@ __metadata: languageName: node linkType: hard +"cardinal@npm:^2.1.1": + version: 2.1.1 + resolution: "cardinal@npm:2.1.1" + dependencies: + ansicolors: ~0.3.2 + redeyed: ~2.1.0 + bin: + cdl: ./bin/cdl.js + checksum: e8d4ae46439cf8fed481c0efd267711ee91e199aa7821a9143e784ed94a6495accd01a0b36d84d377e8ee2cc9928a6c9c123b03be761c60b805f2c026b8a99ad + languageName: node + linkType: hard + "caseless@npm:~0.12.0": version: 0.12.0 resolution: "caseless@npm:0.12.0" @@ -19000,15 +19006,6 @@ __metadata: languageName: node linkType: hard -"cashaddress@npm:^1.1.0": - version: 1.1.0 - resolution: "cashaddress@npm:1.1.0" - dependencies: - bigi: ^1.4.2 - checksum: 29d5c6e58502a6641cc9aba07822b328af5a26d9d1d8c3243cc13d1f06a781dbdbbff38d0ab0be46d9ca80664d7de7e0bfb782c6170a1a8b9574fb2b1cc42a9d - languageName: node - linkType: hard - "cashaddrjs@npm:0.4.4": version: 0.4.4 resolution: "cashaddrjs@npm:0.4.4" @@ -21076,17 +21073,6 @@ __metadata: languageName: node linkType: hard -"ecpair@npm:@bitgo/ecpair@2.1.0-rc.0": - version: 2.1.0-rc.0 - resolution: "@bitgo/ecpair@npm:2.1.0-rc.0" - dependencies: - randombytes: ^2.1.0 - typeforce: ^1.18.0 - wif: ^2.0.6 - checksum: 6884491e472ea1e2947f194363b723b88348487b8031512eb8657b9d6d58390586e66adf536707dd5950384442dab96ca059a7afc6f0d3cd975a1c66d0f6aa56 - languageName: node - linkType: hard - "ecpair@npm:^3.0.0-rc.0": version: 3.0.0-rc.0 resolution: "ecpair@npm:3.0.0-rc.0" @@ -23417,13 +23403,6 @@ __metadata: languageName: node linkType: hard -"fastpriorityqueue@npm:^0.7.1": - version: 0.7.5 - resolution: "fastpriorityqueue@npm:0.7.5" - checksum: 1a586d09814c2eebd2c29d85d503ecc016203843c8a93d95e0924a26809da2e35ea14e4ca2f4a138a52ec2faaee9077bb79939cfd0466f7cfcef40dcdd1ffe8a - languageName: node - linkType: hard - "fastq@npm:^1.6.0": version: 1.13.0 resolution: "fastq@npm:1.13.0" @@ -24651,18 +24630,6 @@ __metadata: languageName: node linkType: hard -"hash-base@npm:^3.1.2": - version: 3.1.2 - resolution: "hash-base@npm:3.1.2" - dependencies: - inherits: ^2.0.4 - readable-stream: ^2.3.8 - safe-buffer: ^5.2.1 - to-buffer: ^1.2.1 - checksum: ca7c548098ca2aa3616f8ddb0406c9cadd0fbc35868d885200692b13a3b6d5b30e2b55ab808ff6000c69f11b3c26fd98e5955b1484d79a59fbd07d1d6b65ca4b - languageName: node - linkType: hard - "hash-base@npm:~3.0, hash-base@npm:~3.0.4": version: 3.0.5 resolution: "hash-base@npm:3.0.5" @@ -27179,6 +27146,13 @@ __metadata: languageName: node linkType: hard +"lossless-json@npm:^4.2.0": + version: 4.3.0 + resolution: "lossless-json@npm:4.3.0" + checksum: 11d25eadd5abcd6e554cc4326e6f04ce18f99daae2b0811d559c02e81febda18fe27b816817c35f7725f2f148abb0399e50bef2ea9568be28c42cbc7d99624a6 + languageName: node + linkType: hard + "loupe@npm:^3.1.0, loupe@npm:^3.1.3": version: 3.1.3 resolution: "loupe@npm:3.1.3" @@ -28082,20 +28056,6 @@ __metadata: languageName: node linkType: hard -"nanoassert@npm:^1.0.0": - version: 1.1.0 - resolution: "nanoassert@npm:1.1.0" - checksum: f360fe639db8edc422de9f5a8a7d384ba9c11e9c6fac149f7ad3b0a94e4ec9d5aa44ce55b3e4c7682658efad792604fc96c336b0e80a3590744104ba58af80c7 - languageName: node - linkType: hard - -"nanoassert@npm:^2.0.0": - version: 2.0.0 - resolution: "nanoassert@npm:2.0.0" - checksum: b1d366f9524405f3337192d32dda6ac0b02374e4d0550c9aad33480caf2eb3c84c06f18f41f4c5404c14f6fc1ae6b84692b4375166dcb9f2d04a2ea9b9bccba0 - languageName: node - linkType: hard - "nanoid@npm:^3.1.31, nanoid@npm:^3.3.6": version: 3.3.6 resolution: "nanoid@npm:3.3.6" @@ -29037,6 +28997,26 @@ __metadata: languageName: node linkType: hard +"ox@npm:^0.4.4": + version: 0.4.4 + resolution: "ox@npm:0.4.4" + dependencies: + "@adraffy/ens-normalize": ^1.10.1 + "@noble/curves": ^1.6.0 + "@noble/hashes": ^1.5.0 + "@scure/bip32": ^1.5.0 + "@scure/bip39": ^1.4.0 + abitype: ^1.0.6 + eventemitter3: 5.0.1 + peerDependencies: + typescript: ">=5.4.0" + peerDependenciesMeta: + typescript: + optional: true + checksum: 412f443924ca0400142b287afb97b688cc5fadab1f8ef3f1e586a970c696a39dfaf335444efc5fa85a76d322d35d7023ff5e0c8667cb9ba4a297244ebfacf23e + languageName: node + linkType: hard + "p-debounce@npm:^4.0.0": version: 4.0.0 resolution: "p-debounce@npm:4.0.0" @@ -29145,7 +29125,7 @@ __metadata: languageName: node linkType: hard -"pako@npm:^2.0.3": +"pako@npm:^2.0.3, pako@npm:^2.0.4": version: 2.1.0 resolution: "pako@npm:2.1.0" checksum: 71666548644c9a4d056bcaba849ca6fd7242c6cf1af0646d3346f3079a1c7f4a66ffec6f7369ee0dc88f61926c10d6ab05da3e1fca44b83551839e89edd75a3e @@ -30799,6 +30779,15 @@ pvutils@latest: languageName: node linkType: hard +"redeyed@npm:~2.1.0": + version: 2.1.1 + resolution: "redeyed@npm:2.1.1" + dependencies: + esprima: ~4.0.0 + checksum: 39a1426e377727cfb47a0e24e95c1cf78d969fbc388dc1e0fa1e2ef8a8756450cefb8b0c2598f63b85f1a331986fca7604c0db798427a5775a1dbdb9c1291979 + languageName: node + linkType: hard + "redis-errors@npm:^1.0.0, redis-errors@npm:^1.2.0": version: 1.2.0 resolution: "redis-errors@npm:1.2.0" @@ -31453,16 +31442,6 @@ pvutils@latest: languageName: node linkType: hard -"ripemd160@npm:^2.0.2": - version: 2.0.3 - resolution: "ripemd160@npm:2.0.3" - dependencies: - hash-base: ^3.1.2 - inherits: ^2.0.4 - checksum: da25591f15d3f03d3a26cabc8255634ee9e0ae89fc053846e6b3975bbdbae6941baeb539dba30e0aaec9a726c7442149de064e13c2510332e119e50beaf3314d - languageName: node - linkType: hard - "ripple-address-codec@npm:^5.0.0": version: 5.0.0 resolution: "ripple-address-codec@npm:5.0.0" @@ -32801,6 +32780,25 @@ pvutils@latest: languageName: node linkType: hard +"starknet@npm:^9.3.0": + version: 9.3.0 + resolution: "starknet@npm:9.3.0" + dependencies: + "@noble/curves": ~1.7.0 + "@noble/hashes": ~1.6.0 + "@scure/base": ~1.2.1 + "@scure/starknet": 1.1.0 + "@starknet-io/get-starknet-wallet-standard": ^5.0.0 + "@starknet-io/starknet-types-010": "npm:@starknet-io/types-js@0.10.0" + "@starknet-io/starknet-types-09": "npm:@starknet-io/types-js@~0.9.1" + abi-wan-kanabi: 2.2.4 + lossless-json: ^4.2.0 + pako: ^2.0.4 + ts-mixer: ^6.0.3 + checksum: 412451c3fca3d15bca1a90e7db8e16ebe0ee694574894c3a77f7a100993270739e8253bbdb4eef8c1b03bc6c13455c24452e5db6dcee862666948843e96ee602 + languageName: node + linkType: hard + "statuses@npm:>= 1.5.0 < 2": version: 1.5.0 resolution: "statuses@npm:1.5.0" @@ -33601,17 +33599,6 @@ pvutils@latest: languageName: node linkType: hard -"to-buffer@npm:^1.2.1": - version: 1.2.2 - resolution: "to-buffer@npm:1.2.2" - dependencies: - isarray: ^2.0.5 - safe-buffer: ^5.2.1 - typed-array-buffer: ^1.0.3 - checksum: b0cd2417989a9f3d47273301e8cec2c9798b19a117822424686f385f3ec0239d2defd5fd9f8e76cda0b21e2a2f5de65a58e806506bf4c296c31750c5efd3ae4b - languageName: node - linkType: hard - "to-fast-properties@npm:^2.0.0": version: 2.0.0 resolution: "to-fast-properties@npm:2.0.0" @@ -35072,7 +35059,7 @@ pvutils@latest: languageName: node linkType: hard -"varuint-bitcoin@npm:1.1.2, varuint-bitcoin@npm:^1.0.1, varuint-bitcoin@npm:^1.0.4, varuint-bitcoin@npm:^1.1.2": +"varuint-bitcoin@npm:1.1.2, varuint-bitcoin@npm:^1.0.1, varuint-bitcoin@npm:^1.0.4": version: 1.1.2 resolution: "varuint-bitcoin@npm:1.1.2" dependencies: @@ -36462,7 +36449,7 @@ pvutils@latest: languageName: node linkType: hard -"yargs@npm:^17.5.1": +"yargs@npm:^17.5.1, yargs@npm:^17.7.2": version: 17.7.2 resolution: "yargs@npm:17.7.2" dependencies: