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
7 changes: 5 additions & 2 deletions docs/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -182,10 +182,10 @@ edition = "2021"
path = "src/lib.rs"

[dependencies.klever-sc]
version = "0.45.0" # use latest from crates.io
version = "0.45.1" # use latest from crates.io

[dev-dependencies.klever-sc-scenario]
version = "0.45.0" # use latest from crates.io
version = "0.45.1" # use latest from crates.io
```

### Minimal Contract
Expand Down Expand Up @@ -220,6 +220,9 @@ pub trait MyContract {
### Build & Deploy

```bash
# Update dependencies (after bumping versions in Cargo.toml)
~/klever-sdk/ksc all update

# Build
~/klever-sdk/ksc all build

Expand Down
2 changes: 1 addition & 1 deletion docs/skills/05-modules.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Do NOT create a custom admin module. Use the SDK's built-in module:

```toml
[dependencies.klever-sc-modules]
version = "0.45.0" # use latest from crates.io
version = "0.45.1" # use latest from crates.io
```

### Usage
Expand Down
7 changes: 7 additions & 0 deletions docs/skills/06-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,13 @@
| **ksc** | Smart contract compiler (Rust -> WASM) | `~/klever-sdk/ksc` |
| **koperator** | CLI for blockchain operations | `~/klever-sdk/koperator` |

## Update Dependencies

```bash
# Update Cargo.lock in all wasm crates to latest versions
~/klever-sdk/ksc all update
```

## Build

```bash
Expand Down
17 changes: 5 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,35 +58,28 @@
"node": ">=18.14.0"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@eslint/js": "^10.0.1",
"@types/jest": "^30.0.0",
"@types/node": "^25.2.3",
"eslint": "^9.28.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"globals": "^17.3.0",
"jest": "^30.2.0",
"prettier": "^3.8.1",
"ts-jest": "^29.4.6",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.55.0"
},
"pnpm": {
"overrides": {
"qs": ">=6.14.2",
"ajv@>=8": ">=8.18.0",
"minimatch@<10": ">=10.2.1"
}
"typescript-eslint": "^8.57.1"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.26.0",
"@modelcontextprotocol/sdk": "^1.27.1",
"@redis/json": "^5.10.0",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"cors": "^2.8.6",
"dotenv": "^17.2.4",
"express": "^5.2.1",
"express-rate-limit": "^8.2.1",
"express-rate-limit": "^8.2.2",
"redis": "^5.10.0",
"zod": "^4.3.6"
}
Expand Down
Loading