diff --git a/package.json b/package.json index 2d61ea2b228..4fc6e8ee322 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.30", + "@shapeshiftoss/hdwallet-core": "1.62.30", + "@shapeshiftoss/hdwallet-gridplus": "1.62.30", + "@shapeshiftoss/hdwallet-keepkey": "1.62.30", + "@shapeshiftoss/hdwallet-keepkey-webusb": "1.62.30", + "@shapeshiftoss/hdwallet-keplr": "1.62.30", + "@shapeshiftoss/hdwallet-ledger": "1.62.30", + "@shapeshiftoss/hdwallet-ledger-webhid": "1.62.30", + "@shapeshiftoss/hdwallet-ledger-webusb": "1.62.30", + "@shapeshiftoss/hdwallet-metamask-multichain": "1.62.30", + "@shapeshiftoss/hdwallet-native": "1.62.30", + "@shapeshiftoss/hdwallet-native-vault": "1.62.30", + "@shapeshiftoss/hdwallet-phantom": "1.62.30", + "@shapeshiftoss/hdwallet-trezor": "1.62.30", + "@shapeshiftoss/hdwallet-trezor-connect": "1.62.30", + "@shapeshiftoss/hdwallet-vultisig": "1.62.30", + "@shapeshiftoss/hdwallet-walletconnect": "1.62.30", + "@shapeshiftoss/hdwallet-walletconnectv2": "1.62.30", "@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..7bbd13e9bb5 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.30", + "@shapeshiftoss/hdwallet-ledger": "1.62.30", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", diff --git a/packages/chain-adapters/src/sui/SuiChainAdapter.ts b/packages/chain-adapters/src/sui/SuiChainAdapter.ts index b5309602d1f..6aee3b1cfcd 100644 --- a/packages/chain-adapters/src/sui/SuiChainAdapter.ts +++ b/packages/chain-adapters/src/sui/SuiChainAdapter.ts @@ -274,9 +274,10 @@ export class ChainAdapter implements IChainAdapter { tx.transferObjects([coin], to) } + const transactionJson = await tx.toJSON() + const transactionBytes = await tx.build({ client: this.client }) - // Build intent message: intent scope (0) + version (0) + app id (0) + tx bytes const intentMessage = new Uint8Array(3 + transactionBytes.length) intentMessage[0] = 0 // TransactionData intent scope intentMessage[1] = 0 // Version @@ -286,6 +287,7 @@ export class ChainAdapter implements IChainAdapter { return { addressNList: toAddressNList(this.getBip44Params({ accountNumber })), intentMessageBytes: intentMessage, + transactionJson, } } catch (err) { return ErrorHandler(err, { diff --git a/packages/swapper/package.json b/packages/swapper/package.json index 3d1fcee8d97..e2bbf6161ab 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.30", "@shapeshiftoss/types": "workspace:^", "@shapeshiftoss/unchained-client": "workspace:^", "@shapeshiftoss/utils": "workspace:^", diff --git a/packages/swapper/src/swappers/CetusSwapper/endpoints.ts b/packages/swapper/src/swappers/CetusSwapper/endpoints.ts index 58f134c462c..9f8e07c0905 100644 --- a/packages/swapper/src/swappers/CetusSwapper/endpoints.ts +++ b/packages/swapper/src/swappers/CetusSwapper/endpoints.ts @@ -83,6 +83,7 @@ export const cetusApi: SwapperApi = { refreshAllCoins: true, }) + const transactionJson = await txb.toJSON({ client: suiClient }) const transactionBytes = await txb.build({ client: suiClient }) const intentMessage = new Uint8Array(3 + transactionBytes.length) @@ -104,6 +105,7 @@ export const cetusApi: SwapperApi = { return { addressNList, intentMessageBytes: intentMessage, + transactionJson, } }, diff --git a/yarn.lock b/yarn.lock index caf8b72f3c6..c5a78fc2aa9 100644 --- a/yarn.lock +++ b/yarn.lock @@ -11165,8 +11165,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.30 + "@shapeshiftoss/hdwallet-ledger": 1.62.30 "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" "@shapeshiftoss/utils": "workspace:^" @@ -11229,15 +11229,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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-coinbase@npm:1.62.30" dependencies: "@coinbase/wallet-sdk": ^3.6.6 - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": 1.62.30 eth-rpc-errors: ^4.0.3 lodash: ^4.17.21 - checksum: 4581a8de94fc2750d31f5c1131be82ca635f5f1717279033e1feedafc9d68c8ce34795ad2c7dc7d8c540a687a48fb84aea52ba4de8bdff718a81b59fe8879a3d + checksum: d532b242e04da15ad6a7222134819766a1ea9087658c2be703bcc3324679870064740d98ef260b6a371f210903c19df1e4e3f363d5d204e8a537723368c4930e languageName: node linkType: hard @@ -11259,9 +11259,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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-core@npm:1.62.30" dependencies: "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 "@shapeshiftoss/proto-tx-builder": 0.10.0 @@ -11273,7 +11273,7 @@ __metadata: lodash: ^4.17.21 rxjs: ^6.4.0 type-assertions: ^1.1.0 - checksum: b48989b69d614a0e25a0af4b94ec73176657a83073d4579d503584c30a2346207faf8c611a257b173c5660d6df7c46b8297def9db56c88c7e6431ff51ba0b82b + checksum: b743b04d54bf9d9be8627a27543da547206df6c2d3b69858405a419945586002f3eee9410e8ca9430161e2d479b90cac701cba15cb9dce60e531a0c4c0666036 languageName: node linkType: hard @@ -11295,39 +11295,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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-gridplus@npm:1.62.30" 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.30 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: 9fdf90b435999a8920c8a12108d5bc50cfa200e77dcec064c1881de9a4c5713114fb571003541a06207469235e5f2b698b7c06de25aea909c994715942fa9353 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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-keepkey-webusb@npm:1.62.30" dependencies: - "@shapeshiftoss/hdwallet-core": 1.62.29 - "@shapeshiftoss/hdwallet-keepkey": 1.62.29 - checksum: 22ccd86e7bbc7bab363240bdc3774c3b3b86586c962c8335dc56801abd3977c44a2335b3bb4eb1c2dc0af22f1da0ee8be8df846c10111dc1822351cbd46eb013 + "@shapeshiftoss/hdwallet-core": 1.62.30 + "@shapeshiftoss/hdwallet-keepkey": 1.62.30 + checksum: d111a2f03a7f2dcfef81bd3feaa4c985dd4d394b2adad5b094b6d734e39526fd7cfbc2bf99653423eed7bcb7f5b288cc1e6f081f7d30bffae31d2fd2e5d2aa31 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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-keepkey@npm:1.62.30" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 "@ethereumjs/common": 3.2.0 @@ -11335,7 +11335,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.30 "@shapeshiftoss/proto-tx-builder": 0.10.0 bignumber.js: ^9.0.1 bnb-javascript-sdk-nobroadcast: 2.16.15 @@ -11348,44 +11348,44 @@ __metadata: lodash: ^4.17.21 p-lazy: ^3.1.0 semver: ^7.3.8 - checksum: e3477086ff37bf247ca1d2d85ee6f6e2f7090b8fd2f5bf5f9bdd4f862b2a5e207c48f4cb478b47fd31aa1cb1b9af0033b7106a162ac8ad66a5290fcc47bf6b35 + checksum: e54937e6b9602bb3c3ed439db0e752ec4b1ea6cd5ae146bb76c977eaa9cbc2824a87124649ca7a74885286f0f8ac0567ef8846b499024f9d09b5c63e17911223 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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-keplr@npm:1.62.30" 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.30 "@shapeshiftoss/proto-tx-builder": 0.10.0 "@shapeshiftoss/types": 3.1.3 base64-js: ^1.5.1 lodash: ^4.17.21 - checksum: 842a2343429109a7a4c7e9887b90d3960ac162b669803446f5ab78a69ee7b11c02c7dcc4dbc4ac10726ca816a86e213a7920ba7c2c5bd93822f6f19b7a6a3010 + checksum: c3b889655c2e2526836dd414ed099d599feca13be258af3a72023494d4aca7fa362a729cae44be0b88f77644fecc693272d656fe810d8f8384de51e2cbb7998e 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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-ledger-webhid@npm:1.62.30" 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.30 + "@shapeshiftoss/hdwallet-ledger": 1.62.30 "@types/w3c-web-hid": ^1.0.2 - checksum: 609e60e290a7d49441009db423212c0c8857d5a6949951d91a21f492fdbdec1b31fa067bbad6392f9d7556aa939763b1ac63777a2722814afcef9d4a7b8a8c64 + checksum: 01cf95daabf78b8d0b63358cb1a69d6b711e4a876b444c480097d94f5d3b86b8cb3aff5fc99bb76b877fa28559b52c6d7c7b3fee2f7ece9d45fd659be223d2f6 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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-ledger-webusb@npm:1.62.30" dependencies: "@ledgerhq/hw-app-btc": 10.13.0 "@ledgerhq/hw-app-cosmos": 6.32.9 @@ -11393,17 +11393,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 - "@shapeshiftoss/hdwallet-ledger": 1.62.29 + "@shapeshiftoss/hdwallet-core": 1.62.30 + "@shapeshiftoss/hdwallet-ledger": 1.62.30 "@types/w3c-web-usb": ^1.0.4 p-queue: ^7.4.1 - checksum: fb9b72098a3548b3b08d3565b172b01bc7bc3f532ec11b7798bb9e13bd049dd730444dc809139fd8f7d8a2f0dd426d9ca7ba29d2278d08eb46715b47cc05246b + checksum: b6eb24f94df44e677942ceebd8d7d788f1f1cc0f8e75a3117504435f1757729d01eada41e1e6e3ecf66cbe2045bf4dd0398e2cc3dc619dffa1592ebacfcc00ce 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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-ledger@npm:1.62.30" dependencies: "@bitgo/utxo-lib": ^11.18.0 "@ethereumjs/common": 3.2.0 @@ -11418,7 +11418,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.30 "@solana/web3.js": 1.95.8 base64-js: ^1.5.1 bchaddrjs: ^0.4.4 @@ -11428,33 +11428,33 @@ __metadata: ethereumjs-util: ^6.1.0 ethers: 5.7.2 lodash: ^4.17.21 - checksum: 367da52ef725ab0ee8e0e7b630f12ac64ded6dce3c67a0f015d523214f92b3efadeced7d865d61cba06a047f8cbaa5a436b83a8adee69d35c756ac11f0bcacc0 + checksum: 362fcadb2e31de4f9352322ac0b34df682d59b862df99637946d3f36c0aa9754cdc8fe2d6979efcc2afb1b6421cedf8ce7e94bfa6af1bb4c244b4d20c01f861c 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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-metamask-multichain@npm:1.62.30" 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.30 "@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: 1a251921ea664ba927483713d04f39af6b52b1164edd0a64b02aef9572b8381756665ba445f058805f8c13a85df8e3989c4ac939706e809822d9029ba4040aff 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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-native-vault@npm:1.62.30" dependencies: "@bitcoinerlab/secp256k1": ^1.1.1 - "@shapeshiftoss/hdwallet-native": 1.62.29 + "@shapeshiftoss/hdwallet-native": 1.62.30 bip39: ^3.0.4 hash-wasm: ^4.11.0 idb-keyval: ^6.0.3 @@ -11462,18 +11462,18 @@ __metadata: p-lazy: ^3.1.0 type-assertions: ^1.1.0 uuid: ^8.3.2 - checksum: f51b32343597bce50b12b72dc2e6373a4dd14f6a9a08e780bf26125d54b8e536d5d8233589a9ae4059ff0e0e9eb0cd8f92db45c80d2d6de0a2046e4c38ab0034 + checksum: 4390863c7b51694f135b3c88c6c5224efb81b58e567adbdc468d13ece2cf29ef9693b42f545d510d2475899735103f6920f7ffb65e4384f7e83af8434c35de48 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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-native@npm:1.62.30" 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.30 "@shapeshiftoss/proto-tx-builder": 0.10.0 "@zxing/text-encoding": ^0.9.0 bchaddrjs: ^0.4.9 @@ -11495,7 +11495,7 @@ __metadata: p-lazy: ^3.1.0 scrypt-js: ^3.0.1 tendermint-tx-builder: 1.0.16 - checksum: b892e39287a0b2c6bae0800fc80fe75fdd617b1e4102e1aeda3ac698eb5044aa8241f4d7dae9230eb87b31fab140340bb95e47fb06fd6b9339572169c3af0a57 + checksum: 0a430490c4878166cef998d3525dd4da389bf158fd5f99aeeaf7245e89b1fcd5ae32c5b21fed61efc073f30dfe805c3de4f831cb659597ea05733b747efec368 languageName: node linkType: hard @@ -11532,84 +11532,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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-phantom@npm:1.62.30" dependencies: "@shapeshiftoss/bitcoinjs-lib": 7.0.0-shapeshift.2 - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": 1.62.30 "@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: 99d8aa32c6f60ef5ed18b1946bafc001dffee4f4b4b12161e6e85189d06b690dcad48a94f94ebf9c9ba4bd5fbf66dd0eaba08198f31ad2382d16243f69cfaf81 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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-trezor-connect@npm:1.62.30" dependencies: - "@shapeshiftoss/hdwallet-core": 1.62.29 - "@shapeshiftoss/hdwallet-trezor": 1.62.29 + "@shapeshiftoss/hdwallet-core": 1.62.30 + "@shapeshiftoss/hdwallet-trezor": 1.62.30 "@trezor/connect-web": ^9.6.4 - checksum: 11e80a846314fb913bde3b34b8ee8b058b1e8d682383be5385ecad4db10799edb674a61fd9b30471d04522413f602a1aa8ce618edc385da3f3d5446951cf8d48 + checksum: 792620b0a7d98d1eb6f53b54276892d061f12de3a4795c0268131b6fa6ae9f41324bc08874923b72ba4bf00987e403f9d6e25e530e91e0d45dc34c9700099764 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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-trezor@npm:1.62.30" dependencies: "@ethereumjs/common": 3.2.0 "@ethereumjs/tx": 4.2.0 - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": 1.62.30 base64-js: ^1.5.1 bchaddrjs: ^0.4.4 lodash: ^4.17.21 - checksum: 7f69699ec6cd13003676d3bfc338543cacf1e1db979d87976bc40aa2e45d1bf599390c40fd18fe09125226f4a114e60e3056cf4134e45f798b5ca888bdcc9dd0 + checksum: 96780c309cb109fe4e948f75b214e0ce2ad79e853c650b19eda58f91b00ab6bfb27001bc59b2fcbefa8fd3c4376b7a3c3f596bc55fd6e6c42f32a7bd6f1f8133 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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-vultisig@npm:1.62.30" 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.30 "@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: edb6a79969ed34449bfc0c6588e507212c514f14a7e3d386be8046f3a34b6d740328f0797a65756f647e3aa1e2e1066409388c7a43e8bca6bc3aba7def2c6c41 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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-walletconnect@npm:1.62.30" dependencies: - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": 1.62.30 "@walletconnect/qrcode-modal": ^1.7.8 "@walletconnect/web3-provider": ^1.7.8 ethers: ^5.6.5 - checksum: 23e513c78252df79092a06ccea921dfe6bb30d3f1fbf174869e954655d7c2e8072784d8611a471be59da6a1ecdf1ac19ba78f40fc386d5d9faf293e999261341 + checksum: b6519896717974d87afabb46632ad5fe270f1eb367a782026c2045f07d8419e74216c047fdd8312c83ebbf251c63057994998562ac0ea5eec34c1fab57319397 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.30": + version: 1.62.30 + resolution: "@shapeshiftoss/hdwallet-walletconnectv2@npm:1.62.30" dependencies: - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": 1.62.30 "@walletconnect/ethereum-provider": ^2.20.2 "@walletconnect/modal": ^2.6.2 ethers: ^5.6.5 - checksum: dee492655c22b727e49dfcb146845fc58eaacb61c54da71e5668f2f4cf597d3337a902be98ed6132bd1ad4627fc4367f2da8b96f8042ecb1cc19429c2335b5ef + checksum: ebd273f4115e2c96d408ae829072e42a09eb1e937e870592830320e83530058122561e1533204885f94883c2e81e9823c37d020f2a23deeb423f9617562c7c6b languageName: node linkType: hard @@ -11719,7 +11719,7 @@ __metadata: "@shapeshiftoss/caip": "workspace:^" "@shapeshiftoss/chain-adapters": "workspace:^" "@shapeshiftoss/contracts": "workspace:^" - "@shapeshiftoss/hdwallet-core": 1.62.29 + "@shapeshiftoss/hdwallet-core": 1.62.30 "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^" "@shapeshiftoss/utils": "workspace:^" @@ -11854,24 +11854,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.30 + "@shapeshiftoss/hdwallet-core": 1.62.30 + "@shapeshiftoss/hdwallet-gridplus": 1.62.30 + "@shapeshiftoss/hdwallet-keepkey": 1.62.30 + "@shapeshiftoss/hdwallet-keepkey-webusb": 1.62.30 + "@shapeshiftoss/hdwallet-keplr": 1.62.30 + "@shapeshiftoss/hdwallet-ledger": 1.62.30 + "@shapeshiftoss/hdwallet-ledger-webhid": 1.62.30 + "@shapeshiftoss/hdwallet-ledger-webusb": 1.62.30 + "@shapeshiftoss/hdwallet-metamask-multichain": 1.62.30 + "@shapeshiftoss/hdwallet-native": 1.62.30 + "@shapeshiftoss/hdwallet-native-vault": 1.62.30 + "@shapeshiftoss/hdwallet-phantom": 1.62.30 + "@shapeshiftoss/hdwallet-trezor": 1.62.30 + "@shapeshiftoss/hdwallet-trezor-connect": 1.62.30 + "@shapeshiftoss/hdwallet-vultisig": 1.62.30 + "@shapeshiftoss/hdwallet-walletconnect": 1.62.30 + "@shapeshiftoss/hdwallet-walletconnectv2": 1.62.30 "@shapeshiftoss/swapper": "workspace:^" "@shapeshiftoss/types": "workspace:^" "@shapeshiftoss/unchained-client": "workspace:^"