Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
f1e71fb
Start draft PR
gapcomputer May 22, 2025
36d891e
Create initial token generation smart contract structure
gapcomputer May 22, 2025
a547781
Add initial tests for token generation smart contract
gapcomputer May 22, 2025
9a073c3
Add Cargo.toml for Rust project configuration
gapcomputer May 22, 2025
87c93bd
Start draft PR
parker110-crypto May 22, 2025
274d386
Add Cargo.toml with project dependencies
parker110-crypto May 22, 2025
a1ef5ba
Create initial token generation smart contract structure
parker110-crypto May 22, 2025
c312246
Add initial tests for token generation smart contract
parker110-crypto May 22, 2025
347c227
Start draft PR
pneppl100 May 22, 2025
6308b39
Start draft PR
KOIIFLONG May 22, 2025
56812a1
Implement comprehensive error handling system for smart contracts
KOIIFLONG May 22, 2025
40837d6
Add comprehensive tests for smart contract error handling
KOIIFLONG May 22, 2025
5df1b24
Add Cargo.toml with error handling dependencies
KOIIFLONG May 22, 2025
9f86401
Add token generation calculation utility
pneppl100 May 22, 2025
86de3b3
Add test suite for token generation utility
pneppl100 May 22, 2025
956ee6c
Add Vitest configuration
pneppl100 May 22, 2025
2aefa72
Add package.json with test scripts
pneppl100 May 22, 2025
445ecc2
Start draft PR
KOIIFLONG May 22, 2025
e24c79f
Merged branch pr-1-gapcomputer-koii-dumper-reveal for PR https://gith…
KOIIFLONG May 22, 2025
f1c2046
Merged branch pr-2-gapcomputer-koii-dumper-reveal for PR https://gith…
KOIIFLONG May 22, 2025
f3a9783
Merged branch pr-3-gapcomputer-koii-dumper-reveal for PR https://gith…
KOIIFLONG May 22, 2025
d6a6cf9
Merged branch pr-4-gapcomputer-koii-dumper-reveal for PR https://gith…
KOIIFLONG May 22, 2025
f82122d
Fix import path for error handling tests
KOIIFLONG May 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
27 changes: 27 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
[package]
name = "koii-token-generator"
version = "0.1.0"
edition = "2021"

[lib]
name = "koii_token_generator"
path = "src/lib/token_generator.rs"
crate-type = ["cdylib", "lib"]

[features]
no-entrypoint = []

[dependencies]
anchor-lang = "0.28.0"
anchor-spl = "0.28.0"
solana-program = "1.16.0"
thiserror = "1.0"

[dev-dependencies]
solana-program-test = "1.16.0"
solana-sdk = "1.16.0"
tokio = { version = "1", features = ["full"] }
rstest = "0.18.2"

[profile.release]
overflow-checks = true
1 change: 1 addition & 0 deletions node_modules/.bin/esbuild

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

1 change: 1 addition & 0 deletions node_modules/.bin/nanoid

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

1 change: 1 addition & 0 deletions node_modules/.bin/rollup

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

1 change: 1 addition & 0 deletions node_modules/.bin/tsc

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

1 change: 1 addition & 0 deletions node_modules/.bin/tsserver

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

1 change: 1 addition & 0 deletions node_modules/.bin/vite

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

1 change: 1 addition & 0 deletions node_modules/.bin/vite-node

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

1 change: 1 addition & 0 deletions node_modules/.bin/vitest

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

1 change: 1 addition & 0 deletions node_modules/.bin/why-is-node-running

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

Loading