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

https://github.com/drewcook/solana-escrow

The PaulX blog post, aka Solana Bible
https://github.com/drewcook/solana-escrow

blockchain escrow rust smart-contracts solana web3

Last synced: 3 months ago
JSON representation

The PaulX blog post, aka Solana Bible

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