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
- Host: GitHub
- URL: https://github.com/drewcook/solana-escrow
- Owner: drewcook
- Created: 2022-02-09T02:18:49.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-09T02:18:50.000Z (over 3 years ago)
- Last Synced: 2024-12-31T02:34:16.888Z (5 months ago)
- Topics: blockchain, escrow, rust, smart-contracts, solana, web3
- Language: Rust
- Homepage: https://paulx.dev/blog/2021/01/14/programming-on-solana-an-introduction/
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- 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
```