Skip to content

Commit 401a9cb

Browse files
github-actions[bot]Hanssen0
authored andcommitted
bump: assumable rgbpp-sdk version
1 parent 7a854cc commit 401a9cb

File tree

10 files changed

+42
-16
lines changed

10 files changed

+42
-16
lines changed

.changeset/gentle-kangaroos-suffer.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

.changeset/sour-sloths-destroy.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/btc/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# @rgbpp-sdk/btc
22

3+
## 0.7.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`e243be6`](https://github.com/utxostack/rgbpp-sdk/commit/e243be6bbfc5883b0bc4fab4758e151a5d501d29), [`44caf9b`](https://github.com/utxostack/rgbpp-sdk/commit/44caf9b09e2f93229cddf860b8755d9f7d8d8c16)]:
8+
- @rgbpp-sdk/ckb@0.7.1
9+
- @rgbpp-sdk/service@0.7.1
10+
311
## 0.7.0
412

513
### Minor Changes

packages/btc/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rgbpp-sdk/btc",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"scripts": {
55
"test": "vitest",
66
"build": "tsup",

packages/ckb/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,24 @@
11
# @rgbpp-sdk/ckb
22

3+
## 0.7.1
4+
5+
### Patch Changes
6+
7+
- [`e243be6`](https://github.com/utxostack/rgbpp-sdk/commit/e243be6bbfc5883b0bc4fab4758e151a5d501d29): fix: paginate get_cells to handle RPC limit ([@fghdotio](https://github.com/fghdotio))
8+
9+
Implement pagination for `get_cells` to handle the RPC response limit. This ensures all cells can be collected regardless of the total number available.
10+
11+
- [`44caf9b`](https://github.com/utxostack/rgbpp-sdk/commit/44caf9b09e2f93229cddf860b8755d9f7d8d8c16): refactor: add fallback implementation for `getLiveCells` when batch RPC is unavailable ([@fghdotio](https://github.com/fghdotio))
12+
13+
- Updated dependencies []:
14+
- @rgbpp-sdk/service@0.7.1
15+
316
## 0.7.0
417

518
### Minor Changes
619

720
- [#291](https://github.com/utxostack/rgbpp-sdk/pull/291): Support RGB++ compatible xUDT assets([@duanyytop](https://github.com/duanyytop))
21+
822
- Fetch compatible xUDT `cellDeps` to build CKB transactions from the `typeid-contract-cell-deps` GitHub repository
923
- Update the `ckb` package to support RGB++ compatible xUDT assets leaping and transferring
1024
- Add optional parameter `compatibleXudtTypeScript` to the functions of the `rgbpp` package to transfer RGB++ compatible xUDT assets
@@ -14,21 +28,25 @@
1428
- [#293](https://github.com/utxostack/rgbpp-sdk/pull/293): Add offline btc data source & ckb collector ([@fghdotio](https://github.com/fghdotio))
1529

1630
- [#294](https://github.com/utxostack/rgbpp-sdk/pull/294): Add UTXOAirdropBadge Testnet deployment information ([@duanyytop](https://github.com/duanyytop))
31+
1732
- Add UTXOAirdropBadge and metadata Testnet deployment information
1833
- Fetch UTXOAirdropBadge and metadata Testnet deployment information from GitHub and Vercel server
1934
- Add `isUtxoAirdropBadgeType` and `isTokenMetadataType` for `btc-assets-api` to encode the token information and metadata of the UTXOAirdropBadge
2035

2136
- [#297](https://github.com/utxostack/rgbpp-sdk/pull/297): Add USDI to compatible xUDT list ([@duanyytop](https://github.com/duanyytop))
37+
2238
- Fetch and cache compatible xUDT list from Vercel or GitHub server
2339
- Use local static compatible xUDT list when the cache is empty
2440
- Remove jsdelivr CDN because CDN cache time is too long, causing UTXO Airdrop cellDeps to become outdated
2541

2642
- [#302](https://github.com/utxostack/rgbpp-sdk/pull/302): Encapsulate transaction fee supplementation methods ([@fghdotio](https://github.com/fghdotio))
43+
2744
- `appendIssuerCellToBtcBatchTransferToSign` for supplementing fees in RGB++ xUDT transactions
2845
- `prepareBtcTimeCellSpentUnsignedTx` for BTC timelock unlock transaction building and fee supplementation
2946
- `appendIssuerCellToSporesCreateUnsignedTx` for supplementing fees in Spores creation transactions
3047

3148
- [#303](https://github.com/utxostack/rgbpp-sdk/pull/303): Add offline mode support for compatible xUDT type scripts ([@fghdotio](https://github.com/fghdotio))
49+
3250
- Introduce an optional `offline` boolean parameter to the following methods:
3351
- `isUDTTypeSupported`
3452
- `isCompatibleUDTTypesSupported`

packages/ckb/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rgbpp-sdk/ckb",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"scripts": {
55
"test": "vitest",
66
"build": "tsup",

packages/rgbpp/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# rgbpp
22

3+
## 0.7.1
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [[`e243be6`](https://github.com/utxostack/rgbpp-sdk/commit/e243be6bbfc5883b0bc4fab4758e151a5d501d29), [`44caf9b`](https://github.com/utxostack/rgbpp-sdk/commit/44caf9b09e2f93229cddf860b8755d9f7d8d8c16)]:
8+
- @rgbpp-sdk/ckb@0.7.1
9+
- @rgbpp-sdk/btc@0.7.1
10+
- @rgbpp-sdk/service@0.7.1
11+
312
## 0.7.0
413

514
### Minor Changes

packages/rgbpp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "rgbpp",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"scripts": {
55
"test": "vitest",
66
"build": "tsup",

packages/service/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
# @rgbpp-sdk/service
22

3+
## 0.7.1
4+
35
## 0.7.0
46

57
### Minor Changes
68

79
- [#291](https://github.com/utxostack/rgbpp-sdk/pull/291): Support RGB++ compatible xUDT assets([@duanyytop](https://github.com/duanyytop))
10+
811
- Add `assets/type` API to the service package
912

1013
- [#293](https://github.com/utxostack/rgbpp-sdk/pull/293): Add offline btc data source & ckb collector ([@fghdotio](https://github.com/fghdotio))

packages/service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@rgbpp-sdk/service",
3-
"version": "0.7.0",
3+
"version": "0.7.1",
44
"scripts": {
55
"test": "vitest",
66
"build": "tsup",

0 commit comments

Comments
 (0)