https://github.com/omgbbqhaxx/solana
Solana program library template
https://github.com/omgbbqhaxx/solana
Last synced: about 2 months ago
JSON representation
Solana program library template
- Host: GitHub
- URL: https://github.com/omgbbqhaxx/solana
- Owner: omgbbqhaxx
- Created: 2021-04-24T09:02:09.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-04-24T09:02:11.000Z (about 4 years ago)
- Last Synced: 2025-01-30T11:46:24.341Z (3 months ago)
- Language: Rust
- Size: 1.95 KB
- Stars: 0
- Watchers: 3
- 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 v1.6.2 or later 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
```