An open API service indexing awesome lists of open source software.

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

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
```