https://github.com/jeronimobarea/solana-rust-escrow-program
https://github.com/jeronimobarea/solana-rust-escrow-program
Last synced: 3 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/jeronimobarea/solana-rust-escrow-program
- Owner: jeronimobarea
- Created: 2022-02-09T14:10:44.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-02-09T14:10:45.000Z (over 3 years ago)
- Last Synced: 2025-02-03T22:29:55.820Z (4 months ago)
- Language: Rust
- 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
```