Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/juliencrn/solana-anchor-crud
The Complete Guide to Full Stack Solana Development tutorial
https://github.com/juliencrn/solana-anchor-crud
anchor phantom react rust solana solana-program
Last synced: about 2 months ago
JSON representation
The Complete Guide to Full Stack Solana Development tutorial
- Host: GitHub
- URL: https://github.com/juliencrn/solana-anchor-crud
- Owner: juliencrn
- Created: 2022-05-28T00:42:33.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-05-28T00:42:49.000Z (over 2 years ago)
- Last Synced: 2024-10-06T01:41:39.024Z (4 months ago)
- Topics: anchor, phantom, react, rust, solana, solana-program
- Language: JavaScript
- Homepage:
- Size: 86.9 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# My Solana App
Solana powered app built following this tutorial: https://dev.to/edge-and-node/the-complete-guide-to-full-stack-solana-development-with-react-anchor-rust-and-phantom-3291
## Installation
Require `node`, `yarn`, `anchor`, `rust` and `solana` installed.
```sh
# Compile the Solana program (smart contract)
anchor buildanchor test
```### Develop
```sh
# In 2 terminal panes;
# 1. Start the Solana blockchain locally
solana-test-validator
# 2. Get logs
solana logs
```### Project structure
- app - Where our frontend code will go
- programs - This is where the Rust code lives for the Solana program
- test - Where the JavaScript tests for the program live
- migrations - A basic deploy script