Skip to content

Commit 7399fc3

Browse files
add basics/counter/steel (#149)
1 parent e9546f3 commit 7399fc3

18 files changed

+1705
-0
lines changed

basics/counter/steel/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
target
2+
test-ledger

basics/counter/steel/Cargo.toml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
[workspace]
2+
resolver = "2"
3+
members = ["api", "program"]
4+
5+
[workspace.package]
6+
version = "0.1.0"
7+
edition = "2021"
8+
license = "Apache-2.0"
9+
homepage = ""
10+
documentation = ""
11+
respository = ""
12+
readme = "./README.md"
13+
keywords = ["solana"]
14+
15+
[workspace.dependencies]
16+
counter-api = { path = "./api", version = "0.1.0" }
17+
bytemuck = "1.14"
18+
num_enum = "0.7"
19+
solana-program = "1.18"
20+
steel = "2.1.0"
21+
thiserror = "1.0"

basics/counter/steel/README.md

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Counter
2+
3+
See the [Counter's README](../README.md) for more information.
4+
5+
## Building
6+
7+
```sh
8+
cargo build-sbf
9+
10+
```
11+
## Tests
12+
13+
This project includes both:
14+
- Rust tests: [`program/tests`](/program/tests) directory.
15+
- Node.js tests using [Bankrun](https://kevinheavey.github.io/solana-bankrun/): [`tests`](/tests) directory.
16+
17+
```sh
18+
# rust tests
19+
cargo test-sbf
20+
21+
# node tests
22+
pnpm build-and-test # this will also build the program
23+
#or
24+
pnpm test # if you have already built the program
25+
```

basics/counter/steel/api/Cargo.toml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
[package]
2+
name = "counter-api"
3+
version = "0.1.0"
4+
edition = "2021"
5+
6+
[dependencies]
7+
bytemuck.workspace = true
8+
num_enum.workspace = true
9+
solana-program.workspace = true
10+
steel.workspace = true
11+
thiserror.workspace = true
+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
/// Seed of the counter account PDA.
2+
pub const COUNTER_SEED: &[u8] = b"counter";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
use steel::*;
2+
3+
#[repr(u8)]
4+
#[derive(Clone, Copy, Debug, Eq, PartialEq, TryFromPrimitive)]
5+
pub enum CounterInstruction {
6+
Initialize = 0,
7+
Increment = 1,
8+
}
9+
10+
#[repr(C)]
11+
#[derive(Clone, Copy, Debug, Pod, Zeroable)]
12+
pub struct Initialize {}
13+
14+
#[repr(C)]
15+
#[derive(Clone, Copy, Debug, Pod, Zeroable)]
16+
pub struct Increment {
17+
pub amount: [u8; 8],
18+
}
19+
20+
instruction!(CounterInstruction, Initialize);
21+
instruction!(CounterInstruction, Increment);

basics/counter/steel/api/src/lib.rs

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
pub mod consts;
2+
pub mod instruction;
3+
pub mod sdk;
4+
pub mod state;
5+
6+
pub mod prelude {
7+
pub use crate::consts::*;
8+
pub use crate::instruction::*;
9+
pub use crate::sdk::*;
10+
pub use crate::state::*;
11+
}
12+
13+
use steel::*;
14+
15+
// TODO Set program id
16+
declare_id!("z7msBPQHDJjTvdQRoEcKyENgXDhSRYeHieN1ZMTqo35");

basics/counter/steel/api/src/sdk.rs

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
use steel::*;
2+
3+
use crate::prelude::*;
4+
5+
pub fn initialize(signer: Pubkey) -> Instruction {
6+
Instruction {
7+
program_id: crate::ID,
8+
accounts: vec![
9+
AccountMeta::new(signer, true),
10+
AccountMeta::new(counter_pda().0, false),
11+
AccountMeta::new_readonly(system_program::ID, false),
12+
],
13+
data: Initialize {}.to_bytes(),
14+
}
15+
}
16+
17+
pub fn increment(signer: Pubkey, amount: u64) -> Instruction {
18+
Instruction {
19+
program_id: crate::ID,
20+
accounts: vec![
21+
AccountMeta::new(signer, true),
22+
AccountMeta::new(counter_pda().0, false),
23+
],
24+
data: Increment {
25+
amount: amount.to_le_bytes(),
26+
}
27+
.to_bytes(),
28+
}
29+
}

basics/counter/steel/api/src/state.rs

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
use steel::*;
2+
3+
use crate::consts::COUNTER_SEED;
4+
5+
#[repr(u8)]
6+
#[derive(Clone, Copy, Debug, Eq, PartialEq, IntoPrimitive, TryFromPrimitive)]
7+
pub enum CounterAccount {
8+
Counter = 0,
9+
}
10+
11+
#[repr(C)]
12+
#[derive(Clone, Copy, Debug, PartialEq, Pod, Zeroable)]
13+
pub struct Counter {
14+
pub value: u64,
15+
}
16+
17+
account!(CounterAccount, Counter);
18+
19+
/// Fetch PDA of the counter account.
20+
pub fn counter_pda() -> (Pubkey, u8) {
21+
Pubkey::find_program_address(&[COUNTER_SEED], &crate::id())
22+
}

basics/counter/steel/package.json

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
{
2+
"name": "counter-program",
3+
"version": "1.0.0",
4+
"description": "Counter program for Solana made with the Steel framework",
5+
"scripts": {
6+
"test": "pnpm ts-mocha -p ./tsconfig.json -t 1000000 ./tests/*.test.ts",
7+
"build-and-test": "cargo build-sbf --manifest-path=./program/Cargo.toml --sbf-out-dir=./tests/fixtures && pnpm test",
8+
"build": "cargo build-sbf --manifest-path=./program/Cargo.toml --sbf-out-dir=./program/target/so",
9+
"deploy": "solana program deploy ./program/target/so/counter_program.so"
10+
},
11+
"keywords": [],
12+
"author": "",
13+
"license": "ISC",
14+
"dependencies": {
15+
"@solana/web3.js": "^1.95.4"
16+
},
17+
"devDependencies": {
18+
"@types/chai": "^4.3.7",
19+
"@types/mocha": "10.0.9",
20+
"@types/node": "^22.7.4",
21+
"borsh": "^2.0.0",
22+
"chai": "^4.3.7",
23+
"mocha": "10.7.3",
24+
"solana-bankrun": "0.4.0",
25+
"ts-mocha": "^10.0.0",
26+
"typescript": "5.6.3"
27+
}
28+
}

0 commit comments

Comments
 (0)