https://github.com/genza999/solana_program_template
https://github.com/genza999/solana_program_template
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/genza999/solana_program_template
- Owner: Genza999
- Created: 2022-04-26T05:26:46.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-04-26T05:26:47.000Z (about 4 years ago)
- Last Synced: 2025-01-17T08:20:32.105Z (over 1 year ago)
- Language: Rust
- Size: 1.95 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Environment Setup
1. Install Rust from https://rustup.rs/
2. Install Solana from https://docs.solana.com/cli/install-solana-cli-tools#use-solanas-install-tool
### Build and test for program compiled natively
```
$ cargo build
$ cargo test
```
### Build and test the program compiled for BPF
```
$ cargo build-bpf
$ cargo test-bpf
```