Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/gab-182/escrow
Escorw program written in vanilla Rust, on Solana Blockchain
https://github.com/gab-182/escrow
blockchain rust-lang solana typescript vanilla-rust
Last synced: 22 days ago
JSON representation
Escorw program written in vanilla Rust, on Solana Blockchain
- Host: GitHub
- URL: https://github.com/gab-182/escrow
- Owner: Gab-182
- Created: 2022-03-15T05:28:51.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2022-03-17T13:57:05.000Z (almost 3 years ago)
- Last Synced: 2024-11-17T07:16:47.191Z (3 months ago)
- Topics: blockchain, rust-lang, solana, typescript, vanilla-rust
- Language: JavaScript
- Homepage:
- Size: 71.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Solana Escrow
Escrow program built for Solana blockchain
## TODO
Due to time constraints, only an `initializer.js` has been included in the `/tests` folder to demonstrate
what's possible, and to provide a stepping stone for interested developers.Thus, the following are the THREE KEY FUNCTIONALITIES yet to be implemented:
- Tests that exercise the SPL token program
- Tests that exercise the escrow program
- A UI for the escrow program## Application setup
1. Connect to devnet:
```bash
solana config set --url https://devnet.solana.com
```2. Generate a keypair:
```bash
solana-keygen new
```3. Airdrop some SOL from the devnet faucet
```bash
solana airdrop 1
```4. At the end, deploy your program to the devnet on solana.
`npm run deploy` the program (smart contract) to the specified network in `solana.escrow.config.json`.