https://github.com/consolelabs/superteam-dao-contract
https://github.com/consolelabs/superteam-dao-contract
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/consolelabs/superteam-dao-contract
- Owner: consolelabs
- Created: 2022-12-26T04:33:40.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-31T17:43:46.000Z (over 3 years ago)
- Last Synced: 2025-02-28T16:14:05.788Z (over 1 year ago)
- Language: Rust
- Size: 52.5 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Superteam Dao Dapp
Superteam dao dapp is a Bounty log proof of work onchain.
| Program | Devnet | Mainnet Beta |
|------------------------------------------------------------|--------|------------- |
| [superteam-dao-contract](/programs/superteam-dao-contract) | `9fHpouSqNrqBKLka9WeUXkRuh2Qt97nvqtP1Km99LKXb` | coming soon |
| [freeze-nft-contract](/programs/freeze-nft-contract) | `7V56BshogTppQUSshpoFcwvyc8hfMtbCwoTWVKBoFokC` | coming soon |
## Installation
Require `node`, `yarn`, `anchor`, `rust` and `solana` installed.
```sh
# Compile the Solana program (smart contract)
anchor build
anchor 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
### Documents
- [Getting started](/docs/GETTING_START.md)
- [Tech ecosystem](/docs/TECH_ECOSYSTEM.md)
- [Writing tests](/tests/superteam-dao-contract.ts)
- [Deployment](/docs/DEPLOYMENT.md)