Skip to content

Commit ea05f3a

Browse files
tilo-14tilo-14
andauthored
chore: bump versions (#14)
* feat: add anchor program examples for compressed tokens * fix: address PR #9 review comments - Remove AI index line from README.md - Delete keypair.json from create-token-account program - Simplify test println statements to only output transaction signature The transaction signature provides all necessary information for verification and is more useful than verbose descriptive text. * ts tests1 * chore: remove TypeScript tests and add .gitignore - Remove all TypeScript test files (tests/*.ts) - Remove package.json and tsconfig.json - Remove .claude/settings.json and BURN_ARCHITECTURE.md - Add .gitignore for node_modules, target, TS files - Update Anchor.toml test script to use cargo test-sbf Rust integration tests remain in programs/*/tests/test.rs * must still cleanup * add metadata * add macros * rm log * add macro sdk separation * reorder * fixes tests * first final * rename and bug fix * anchor * fix: remove stale macro-basics refs, clean gitignore * latest * chore: bump versions * add interface * update * clean up * fix laserstream * fix streaming tokens * remove program-examples from streaming-tokens branch Belongs in a separate PR. --------- Co-authored-by: tilo-14 <tilo@luminouslabs.com>
1 parent ef41125 commit ea05f3a

25 files changed

Lines changed: 7064 additions & 2616 deletions

toolkits/streaming-tokens/Cargo.lock

Lines changed: 6443 additions & 2128 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

toolkits/streaming-tokens/Cargo.toml

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,28 @@
22
name = "streaming-tokens"
33
version = "0.1.0"
44
edition = "2021"
5+
default-run = "streaming-tokens"
56

67
[dependencies]
78
helius-laserstream = "0.1"
89
tokio = { version = "1", features = ["full"] }
910
futures = "0.3"
1011
anyhow = "1"
1112
dotenvy = "0.15"
12-
bs58 = "0.5"
13+
bs58 = "0.5"
14+
borsh = "0.10"
15+
tracing = "0.1"
16+
tracing-subscriber = "0.3"
17+
18+
light-token-interface = "0.3.0"
19+
light-compressed-account = { version = "0.9.0", features = ["std"] }
20+
light-token-client = "0.1.0"
21+
light-client = { version = "0.19.0", features = ["v2"] }
22+
solana-sdk = "2"
23+
24+
# Pin blake3 to avoid constant_time_eq edition2024 issue
25+
blake3 = "=1.5.5"
26+
27+
[[bin]]
28+
name = "streaming-tokens"
29+
path = "src/main.rs"

0 commit comments

Comments
 (0)