Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dmrdvn/guessify-on-solana

Guessfiy dApp I developed on Solana!
https://github.com/dmrdvn/guessify-on-solana

Last synced: 9 days ago
JSON representation

Guessfiy dApp I developed on Solana!

Awesome Lists containing this project

README

        

# Guessify dAPP Platform on Solana!

The project is still under development!

## Overview
Guessify app is a distributed entertainment platform on Solana.
This dApp is deployed on the Solana network in the web3 ecosystem and targets web3 users.
Users can share their guess for the future on this platform and place bets on their predictors based on these predictors.
To immortalize their successful predictions, they can mint them as NFTs and share them with their friends.

In Guessify, which aims to have high user interaction, users will understand the web3 world better and will have already reserved their place in this Web3 world.

The project is still in the development stage. Therefore, errors are likely to occur.
To contribute to the project, you can let me know about any errors you find or open an Issue.

Thank you for your valuable contributions.

With love ❤️

## Updates Notes
💪 Available Version
- Users can register on the platform and customize their profile.
- Users can create a prediction and bet on other predictions.
- Users can withdraw the rewards of the predictions they have won to their Metamask wallet.
- Users can change the language and theme of the site.

🧑‍💻 Next Versions
- Users can like and comment on prediction posts of other users shared in the timeline.
- Each user can gain Predictor Badges based on the experience they gain. (Head Predictor, Novice Predictor, etc.)
- Each predictor can create a special NFT for their winning prediction.
- Predictors can sell the NFTs they earn/produce on the marketplace.
- Detailed statistics of shared predictions.
- User can interact with.
- Users can purchase a web3 ID to benefit from all the features of the platform.
- Users can filter and browse "Trending Predictions" available on the platform.
- Users can share their predictions as different post types.

## Prerequisites
- Node.js
- 10.x or later
- NPM version
- 5.2 or later
- solana-cli 1.18.4
- anchor-cli 0.29.0

## Setup on MacOS
```
// Install rust and cargo
$ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
$ rustc --version

// Install Solana CLI
$ sh -c "$(curl -sSfL https://release.solana.com/v1.18.4/install)"
$ solana --version

// Install Anchor CLI
$ cargo install --git https://github.com/coral-xyz/anchor --tag v0.29.0 anchor-cli --locked
$ anchor --version

// Clone the repository
$ https://github.com/dmrdvn/guessify-on-solana.git

// Run below command for compile project
$ anchor build

// Open a new terminal and Run test validator
$ solana-test-validator

// Run below command for deploy on Solana Localnet
$ anchor deploy

```