https://github.com/cogoo/solana-escrow
https://github.com/cogoo/solana-escrow
Last synced: 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cogoo/solana-escrow
- Owner: cogoo
- Created: 2021-10-12T12:57:30.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-10-12T23:34:06.000Z (over 3 years ago)
- Last Synced: 2025-02-01T09:42:52.015Z (4 months ago)
- Language: Rust
- Size: 38.1 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 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
```