https://github.com/rustyneuron01/solanabasic
https://github.com/rustyneuron01/solanabasic
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/rustyneuron01/solanabasic
- Owner: rustyneuron01
- Created: 2021-10-04T08:48:29.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-10-04T08:48:30.000Z (over 4 years ago)
- Last Synced: 2025-07-01T17:44:29.445Z (11 months ago)
- Language: Rust
- Size: 1000 Bytes
- Stars: 1
- 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
```