https://github.com/thedefibat/solana-escrow-program
https://github.com/thedefibat/solana-escrow-program
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/thedefibat/solana-escrow-program
- Owner: theDefiBat
- Created: 2021-05-04T01:36:44.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-04T01:36:47.000Z (about 5 years ago)
- Last Synced: 2025-01-21T19:44:19.480Z (over 1 year ago)
- Language: Rust
- Size: 23.4 KB
- Stars: 0
- Watchers: 0
- 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
```