| Crates.io | pinocchio-init |
| lib.rs | pinocchio-init |
| version | 0.1.1 |
| created_at | 2025-05-19 04:49:22.603447+00 |
| updated_at | 2025-05-19 05:19:36.993741+00 |
| description | A CLI tool for initializing new Solana programs using Pinocchio. |
| homepage | https://github.com/bidhan-a/pinocchio-init |
| repository | https://github.com/bidhan-a/pinocchio-init |
| max_upload_size | |
| id | 1679305 |
| size | 113,590 |
pinocchio-init is a CLI tool for initializing new Solana programs using Pinocchio.
There are two templates available:
basic - A basic program with a single lib.rs file that logs "Hello, Solana!".
full - A complete counter program with structured state, instructions, and tests.
Select the template that suits your use case and customize it as needed.
You can install pinocchio-init using Cargo:
cargo install pinocchio-init
pinocchio-init <PROGRAM_NAME> [--template=basic|full]
<PROGRAM_NAME>: The name of your new program.--template: (Optional) Choose basic or full template. Defaults to basic.Example:
pinocchio-init my-awesome-program --template=full
MIT