Skip to content

Commit 8f4ce54

Browse files
chore(deps): bump bitcoin-address-validation from 2.2.3 to 3.0.0 in /sdk (#564)
* chore(deps): bump bitcoin-address-validation from 2.2.3 to 3.0.0 in /sdk Bumps [bitcoin-address-validation](https://github.com/ruigomeseu/bitcoin-address-validation) from 2.2.3 to 3.0.0. - [Changelog](https://github.com/ruigomeseu/bitcoin-address-validation/blob/master/CHANGELOG.md) - [Commits](https://github.com/ruigomeseu/bitcoin-address-validation/commits) --- updated-dependencies: - dependency-name: bitcoin-address-validation dependency-version: 3.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> * fix: add missing signet network to bitcoinNetworks --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: nakul1010 <nakul.amate@gmail.com>
1 parent acd0de8 commit 8f4ce54

File tree

3 files changed

+16
-12
lines changed

3 files changed

+16
-12
lines changed

sdk/package-lock.json

Lines changed: 14 additions & 11 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"@magiceden-oss/runestone-lib": "^1.0.2",
4545
"@scure/base": "^1.2.4",
4646
"@scure/btc-signer": "^1.6.0",
47-
"bitcoin-address-validation": "^2.2.3",
47+
"bitcoin-address-validation": "^3.0.0",
4848
"bitcoinjs-lib": "^6.1.6",
4949
"ethers": "^6.13.5",
5050
"viem": "^2.22.19",

sdk/src/wallet/utxo.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ export type BitcoinNetworkName = Exclude<Network, 'regtest'>;
1212
const bitcoinNetworks: Record<BitcoinNetworkName, typeof NETWORK> = {
1313
mainnet: NETWORK,
1414
testnet: TEST_NETWORK,
15+
signet: TEST_NETWORK,
1516
};
1617

1718
export const getBtcNetwork = (name: BitcoinNetworkName) => {

0 commit comments

Comments
 (0)