Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ resolver = "3"
# Single source of truth for version/edition across the workspace; members
# inherit via `version.workspace = true` / `edition.workspace = true`.
[workspace.package]
version = "2.0.1"
version = "2.0.2-rc.1"
edition = "2024"

[package]
Expand Down
2 changes: 1 addition & 1 deletion crates/silverscript/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# NOT a maturin build project.
[project]
name = "kaspa-python-sdk-silverscript"
version = "2.0.1"
version = "2.0.2rc1"

[tool.maturin]
module-name = "kaspa.experimental.silverscript"
Expand Down
2 changes: 2 additions & 0 deletions docs/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ search:

## [Unreleased]

*Target: 2.0.2*

### Added
- New `kaspa.experimental.silverscript` module — compile [SilverScript](https://github.com/kaspanet/silverscript) script-based smart-contract source and build transaction scripts from Python. `compile()` returns a `CompiledContract` exposing the locking script, ABI, state layout, and `template_hash` (the canonical 32-byte length-bound hash over the script's template parts around the covenant state region, matching the SilverScript `templateHash(prefix, suffix)` builtin), plus `build_sig_script()` / `build_sig_script_for_covenant_decl()` for unlocking scripts.
- Example under `examples/silverscript/` — a Counter covenant run live on testnet-10, one transaction at a time: genesis, then permissionless `add`/`subtract` state transitions.
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "maturin"

[project]
name = "kaspa"
version = "2.0.1"
version = "2.0.2rc1"
description = "Kaspa Python SDK"
requires-python = ">=3.10,<3.15"
readme = "README.md"
Expand Down