diff --git a/.release-please-manifest.json b/.release-please-manifest.json index bac4ebc..bacdd30 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "1.28.0" + ".": "1.30.0" } diff --git a/.release-please-manifest.staging.json b/.release-please-manifest.staging.json index bac4ebc..f9fc846 100644 --- a/.release-please-manifest.staging.json +++ b/.release-please-manifest.staging.json @@ -1,3 +1,3 @@ { - ".": "1.28.0" + ".": "1.29.0-rc" } diff --git a/CHANGELOG.md b/CHANGELOG.md index 2cdd152..506f942 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,29 @@ * **smart_contracts:** refresh smart contracts data ([5ad4609](https://github.com/qubic/static/commit/5ad460913bf912e7f84a86f356b29f25e06908c6)) +## [1.30.0](https://github.com/qubic/static/compare/v1.29.0...v1.30.0) (2026-08-14) + + +### Features + +* **smart_contracts:** refresh smart contracts data ([fdf462a](https://github.com/qubic/static/commit/fdf462a5a4e6f0eaa869ad6e3cd79782dcde50a0)) + +## [1.29.0](https://github.com/qubic/static/compare/v1.28.0...v1.29.0) (2026-08-14) + + +### Features + +* add Bit2Me exchange address to exchanges.json ([f63a3d1](https://github.com/qubic/static/commit/f63a3d1e7b07143292191ee669392cd7cf1f5df4)) +* **exchanges:** add Bit2Me exchange address ([8337144](https://github.com/qubic/static/commit/8337144f06784bd76887d7a697f4455fbf7c471a)) + +## [1.29.0-rc](https://github.com/qubic/static/compare/v1.28.0...v1.29.0-rc) (2026-08-14) + + +### Features + +* add Bit2Me exchange address to exchanges.json ([f63a3d1](https://github.com/qubic/static/commit/f63a3d1e7b07143292191ee669392cd7cf1f5df4)) +* **exchanges:** add Bit2Me exchange address ([8337144](https://github.com/qubic/static/commit/8337144f06784bd76887d7a697f4455fbf7c471a)) + ## [1.27.1](https://github.com/qubic/static/compare/v1.27.0...v1.27.1) (2026-06-14) diff --git a/data/exchanges.json b/data/exchanges.json index 221f8df..70e056a 100644 --- a/data/exchanges.json +++ b/data/exchanges.json @@ -67,6 +67,10 @@ { "name": "Seven Seas", "address": "LZLDOEIBQWIUGGMZGOISLOAACDGAFVAMAYXSSJMLQBHSHWDBPMSDFTGAYRMN" + }, + { + "name": "Bit2Me", + "address": "RCIMKHPGSPKDIDUKYVKZPUWYUAABOAEOMATIRNMKTASTUCJGURETZKLESSTL" } ] } \ No newline at end of file diff --git a/data/smart_contracts.json b/data/smart_contracts.json index aff85b0..911d56a 100644 --- a/data/smart_contracts.json +++ b/data/smart_contracts.json @@ -245,6 +245,11 @@ "id": 102, "name": "Unsubscribe Oracle", "sourceIdentifier": "UnsubscribeOracle" + }, + { + "id": 103, + "name": "Trigger OC", + "sourceIdentifier": "TriggerOC" } ], "allowTransferShares": true, @@ -897,6 +902,21 @@ "name": "Transfer Share Management Rights", "fee": 200, "sourceIdentifier": "TransferShareManagementRights" + }, + { + "id": 9, + "name": "Create Asset Raffle", + "sourceIdentifier": "createAssetRaffle" + }, + { + "id": 10, + "name": "Buy Asset Raffle Ticket", + "sourceIdentifier": "buyAssetRaffleTicket" + }, + { + "id": 11, + "name": "Cancel Asset Raffle", + "sourceIdentifier": "cancelAssetRaffle" } ], "allowTransferShares": true, @@ -1378,6 +1398,11 @@ "id": 13, "name": "Vote Gov Change", "sourceIdentifier": "VoteGovChange" + }, + { + "id": 14, + "name": "Admin Reconcile Stake", + "sourceIdentifier": "AdminReconcileStake" } ], "firstUseEpoch": 218, diff --git a/package.json b/package.json index 0790429..1745c94 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "qubic-static-api", - "version": "1.28.0", + "version": "1.30.0", "description": "Static data and assets for Qubic blockchain", "private": true, "packageManager": "pnpm@9.11.0",