diff --git a/.changeset/great-goats-repair.md b/.changeset/great-goats-repair.md deleted file mode 100644 index f860bc5e..00000000 --- a/.changeset/great-goats-repair.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@rgbpp-sdk/ckb": minor ---- - -feat: Return needPaymasterCell for RGB++ ckb cirtual tx diff --git a/.changeset/serious-actors-explode.md b/.changeset/serious-actors-explode.md deleted file mode 100644 index 2b018f51..00000000 --- a/.changeset/serious-actors-explode.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@rgbpp-sdk/ckb": patch ---- - -Fix the XUDT cell data unpacking logic to load only the first 16 bytes diff --git a/.changeset/smart-pigs-compete.md b/.changeset/smart-pigs-compete.md deleted file mode 100644 index 22ec59a6..00000000 --- a/.changeset/smart-pigs-compete.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@rgbpp-sdk/btc": minor ---- - -Add p-limit and batch queries in the sendRgbppUtxos() and TxBuilder.validateInputs() to improve construction time diff --git a/.changeset/tender-hornets-agree.md b/.changeset/tender-hornets-agree.md deleted file mode 100644 index 72361ace..00000000 --- a/.changeset/tender-hornets-agree.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -"@rgbpp-sdk/service": minor -"@rgbpp-sdk/btc": minor ---- - -Adapt btc-assets-api#154, adding new props and return values to the /balance and /unspent APIs - -- Add `available_satoshi` and `total_satoshi` to the BtcAssetsApi.getBtcBalance() API -- Add `only_non_rgbpp_utxos` to the props of the BtcAssetsApi.getBtcUtxos() API -- Remove `service.getRgbppAssetsByBtcUtxo()` lines from the DataCollector.collectSatoshi() -- Remove `hasRgbppAssets` related variables/function from the DataCache diff --git a/.changeset/warm-tomatoes-worry.md b/.changeset/warm-tomatoes-worry.md deleted file mode 100644 index 0a13b2b4..00000000 --- a/.changeset/warm-tomatoes-worry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@rgbpp-sdk/btc": minor ---- - -Add "needPaymaster" option to the sendRgbppUtxos() API to allow manually specifying whether a paymaster output is required diff --git a/packages/btc/CHANGELOG.md b/packages/btc/CHANGELOG.md index aff4d077..ca3d4ca0 100644 --- a/packages/btc/CHANGELOG.md +++ b/packages/btc/CHANGELOG.md @@ -1,5 +1,26 @@ # @rgbpp-sdk/btc +## v0.3.0 + +### Minor Changes + +- [#200](https://github.com/ckb-cell/rgbpp-sdk/pull/200): Add p-limit and batch queries in the sendRgbppUtxos() and TxBuilder.validateInputs() to improve construction time ([@ShookLyngs](https://github.com/ShookLyngs)) + +- [#208](https://github.com/ckb-cell/rgbpp-sdk/pull/208): Adapt btc-assets-api#154, adding new props and return values to the /balance and /unspent APIs ([@ShookLyngs](https://github.com/ShookLyngs)) + +- Add `available_satoshi` and `total_satoshi` to the BtcAssetsApi.getBtcBalance() API +- Add `only_non_rgbpp_utxos` to the props of the BtcAssetsApi.getBtcUtxos() API +- Remove `service.getRgbppAssetsByBtcUtxo()` lines from the DataCollector.collectSatoshi() +- Remove `hasRgbppAssets` related variables/function from the DataCache + +- [#199](https://github.com/ckb-cell/rgbpp-sdk/pull/199): Add "needPaymaster" option to the sendRgbppUtxos() API to allow manually specifying whether a paymaster output is required ([@ShookLyngs](https://github.com/ShookLyngs)) + +### Patch Changes + +- Updated dependencies [[`d2d963c`](https://github.com/ckb-cell/rgbpp-sdk/commit/d2d963c8f40d0316491df5bdccca4eba7a33977c), [`4c77e69`](https://github.com/ckb-cell/rgbpp-sdk/commit/4c77e69cadc8ce3d24f631c1348dcd7141fb1099), [`4f05b1b`](https://github.com/ckb-cell/rgbpp-sdk/commit/4f05b1bba898b7acb58bdf20ae275164ad94523b)]: + - @rgbpp-sdk/ckb@0.3.0 + - @rgbpp-sdk/service@0.3.0 + ## v0.2.0 ### Minor Changes diff --git a/packages/btc/package.json b/packages/btc/package.json index 51b20c03..bfa9e513 100644 --- a/packages/btc/package.json +++ b/packages/btc/package.json @@ -1,6 +1,6 @@ { "name": "@rgbpp-sdk/btc", - "version": "0.2.0", + "version": "0.3.0", "scripts": { "test": "vitest", "build": "tsc -p tsconfig.build.json", diff --git a/packages/ckb/CHANGELOG.md b/packages/ckb/CHANGELOG.md index 93b550d7..1b01af94 100644 --- a/packages/ckb/CHANGELOG.md +++ b/packages/ckb/CHANGELOG.md @@ -1,5 +1,20 @@ # @rgbpp-sdk/ckb +## v0.3.0 + +### Minor Changes + +- [#197](https://github.com/ckb-cell/rgbpp-sdk/pull/197): feat: Return needPaymasterCell for RGB++ ckb cirtual tx ([@duanyytop](https://github.com/duanyytop)) + +- [#191](https://github.com/ckb-cell/rgbpp-sdk/pull/191): Dynamic fetching cell deps deployed by TypeID ([@duanyytop](https://github.com/duanyytop)) + +### Patch Changes + +- [#212](https://github.com/ckb-cell/rgbpp-sdk/pull/212): Fix the XUDT cell data unpacking logic to load only the first 16 bytes ([@ShookLyngs](https://github.com/ShookLyngs)) + +- Updated dependencies [[`4f05b1b`](https://github.com/ckb-cell/rgbpp-sdk/commit/4f05b1bba898b7acb58bdf20ae275164ad94523b)]: + - @rgbpp-sdk/service@0.3.0 + ## v0.2.0 ### Minor Changes diff --git a/packages/ckb/package.json b/packages/ckb/package.json index 0971879f..862b1aad 100644 --- a/packages/ckb/package.json +++ b/packages/ckb/package.json @@ -1,6 +1,6 @@ { "name": "@rgbpp-sdk/ckb", - "version": "0.2.0", + "version": "0.3.0", "scripts": { "test": "vitest", "build": "tsc -p tsconfig.build.json", diff --git a/packages/rgbpp/CHANGELOG.md b/packages/rgbpp/CHANGELOG.md index a8a4cc28..2e521abc 100644 --- a/packages/rgbpp/CHANGELOG.md +++ b/packages/rgbpp/CHANGELOG.md @@ -1,5 +1,14 @@ # rgbpp +## v0.3.0 + +### Patch Changes + +- Updated dependencies [[`d2d963c`](https://github.com/ckb-cell/rgbpp-sdk/commit/d2d963c8f40d0316491df5bdccca4eba7a33977c), [`4c77e69`](https://github.com/ckb-cell/rgbpp-sdk/commit/4c77e69cadc8ce3d24f631c1348dcd7141fb1099), [`3d41751`](https://github.com/ckb-cell/rgbpp-sdk/commit/3d417518c0224c6cd3cc3e55123cf4a691c0a976), [`4f05b1b`](https://github.com/ckb-cell/rgbpp-sdk/commit/4f05b1bba898b7acb58bdf20ae275164ad94523b), [`d0e62e2`](https://github.com/ckb-cell/rgbpp-sdk/commit/d0e62e2be8e21f02a84753cbc0f2200c8f88f155)]: + - @rgbpp-sdk/ckb@0.3.0 + - @rgbpp-sdk/btc@0.3.0 + - @rgbpp-sdk/service@0.3.0 + ## v0.2.0 ### Minor Changes diff --git a/packages/rgbpp/package.json b/packages/rgbpp/package.json index 42a4a3dd..a78f6fdd 100644 --- a/packages/rgbpp/package.json +++ b/packages/rgbpp/package.json @@ -1,6 +1,6 @@ { "name": "rgbpp", - "version": "0.2.0", + "version": "0.3.0", "scripts": { "build": "tsc -p tsconfig.build.json", "lint": "tsc && eslint --ext .ts src/* && prettier --check 'src/*.ts'", diff --git a/packages/service/CHANGELOG.md b/packages/service/CHANGELOG.md index c8f94e79..e7736579 100644 --- a/packages/service/CHANGELOG.md +++ b/packages/service/CHANGELOG.md @@ -1,5 +1,16 @@ # @rgbpp-sdk/service +## v0.3.0 + +### Minor Changes + +- [#208](https://github.com/ckb-cell/rgbpp-sdk/pull/208): Adapt btc-assets-api#154, adding new props and return values to the /balance and /unspent APIs ([@ShookLyngs](https://github.com/ShookLyngs)) + + - Add `available_satoshi` and `total_satoshi` to the BtcAssetsApi.getBtcBalance() API + - Add `only_non_rgbpp_utxos` to the props of the BtcAssetsApi.getBtcUtxos() API + - Remove `service.getRgbppAssetsByBtcUtxo()` lines from the DataCollector.collectSatoshi() + - Remove `hasRgbppAssets` related variables/function from the DataCache + ## v0.2.0 ### Minor Changes diff --git a/packages/service/package.json b/packages/service/package.json index f55ae9da..50c800a6 100644 --- a/packages/service/package.json +++ b/packages/service/package.json @@ -1,6 +1,6 @@ { "name": "@rgbpp-sdk/service", - "version": "0.2.0", + "version": "0.3.0", "scripts": { "test": "vitest", "build": "tsc -p tsconfig.build.json",