diff --git a/CHANGELOG.md b/CHANGELOG.md index 94a86a3..bb4981e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,23 @@ +# [1.21.0](https://github.com/qubic/static/compare/v1.20.0...v1.21.0) (2026-03-18) + + +### Features + +* **smart_contracts:** refresh smart contracts data ([7ed9922](https://github.com/qubic/static/commit/7ed9922dbca3f59e84da2243d2e2989a9c2b7903)) + +# [1.20.0](https://github.com/qubic/static/compare/v1.19.1...v1.20.0) (2026-03-13) + + +### Bug Fixes + +* update QVault procedure labels ([65d6fbe](https://github.com/qubic/static/commit/65d6fbe645775735a52f1d40df5f2761399126e1)) +* update script no longer overwrites fees and handles contract rewrites ([9c09462](https://github.com/qubic/static/commit/9c09462b4c713cb7543413a4041b297de8f497b7)) + + +### Features + +* add protocol.json with transaction input types and fix environment switcher ([cdee078](https://github.com/qubic/static/commit/cdee078347f2a38562d7de38a2fd476b8353d90f)) + # [1.20.0-rc.1](https://github.com/qubic/static/compare/v1.19.1...v1.20.0-rc.1) (2026-03-13) diff --git a/data/smart_contracts.json b/data/smart_contracts.json index 1f1dfc8..dcdf207 100644 --- a/data/smart_contracts.json +++ b/data/smart_contracts.json @@ -1052,6 +1052,59 @@ ], "firstUseEpoch": 204, "sharesAuctionEpoch": 203 + }, + { + "filename": "VottunBridge.h", + "name": "VOTTUN", + "label": "Vottun Bridge", + "githubUrl": "https://github.com/qubic/core/blob/main/src/contracts/VottunBridge.h", + "contractIndex": 25, + "address": "ZAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAZUQI", + "allowTransferShares": false, + "procedures": [ + { + "id": 1, + "name": "Create Order", + "sourceIdentifier": "createOrder" + }, + { + "id": 2, + "name": "Complete Order", + "sourceIdentifier": "completeOrder" + }, + { + "id": 3, + "name": "Refund Order", + "sourceIdentifier": "refundOrder" + }, + { + "id": 4, + "name": "Transfer to Contract", + "sourceIdentifier": "transferToContract" + }, + { + "id": 5, + "name": "Add Liquidity", + "sourceIdentifier": "addLiquidity" + }, + { + "id": 6, + "name": "Create Proposal", + "sourceIdentifier": "createProposal" + }, + { + "id": 7, + "name": "Approve Proposal", + "sourceIdentifier": "approveProposal" + }, + { + "id": 8, + "name": "Cancel Proposal", + "sourceIdentifier": "cancelProposal" + } + ], + "firstUseEpoch": 206, + "sharesAuctionEpoch": 205 } ] } \ No newline at end of file diff --git a/package.json b/package.json index 7b21893..791caaf 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "qubic-static-api", - "version": "1.20.0-rc.1", + "version": "1.21.0", "description": "Static data and assets for Qubic blockchain", "private": true, "packageManager": "pnpm@9.11.0",