A tool to incentivize developers to contribute to open source projects by rewarding them with bounties. Like the ticketing system in JIRA, but with bounties. Users open bounties for issues they want to see fixed on Github, and developers can claim them. Once the issue is fixed, the developer gets the bounty.
Case studies
- BountySource
- 🥵 Fiver
- Liberapay is a platform that allows users to donate money to open source projects. It is similar to Patreon, but for open source projects. (https://www.patreon.com/)
- Kickstarter
- 🥵 Upwork
- 🥵 Gitpay
- Gitcoin
- 🥵 https://www.reddit.com/r/github/comments/11bu8p3/how_to_find_issues_with_bounties_on_github/
- 🥵 https://github.com/disclose/bug-bounty-platforms
- Flow chart for the design
- Notes for on-chain program
- Solana dev faucet
- Issues
- https://solana.stackexchange.com/questions/15175/react-app-with-anchor-0-30-1-error-walletsendtransactionerror-unexpected-erro/19112#19112
- https://stackoverflow.com/questions/68755285/solana-how-to-get-cluster-versions
- https://www.quicknode.com/guides/solana-development/transactions/how-to-get-transaction-logs-on-solana
- https://www.rareskills.io/post/solana-logs-transaction-history
- https://solana.stackexchange.com/questions/9803/how-can-i-see-what-the-currently-deployed-version-of-solana-is
- https://solana.stackexchange.com/questions/7153/how-do-you-change-your-solana-cli-version
- https://github.com/PlasmoHQ/plasmo
- https://github.com/GoogleChrome/chrome-extensions-samples
- https://github.com/turbostarter/extro
- https://github.com/lxieyang/chrome-extension-boilerplate-react
- https://github.com/Jonghakseo/chrome-extension-boilerplate-react-vite
- Notes for backend
- Multi-signature
./scripts/db-build-migration.sh
./scripts/be-build.sh
cd deployments
docker compose up -d
The rust toolchain is required to build the project. The following commands will install the rust toolchain and the required dependencies.
📌 Install instructions
# Install the rust toolchain
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Installing using Anchor version manager
# Install the Anchor version manager
cargo install --git https://github.com/coral-xyz/anchor avm --locked --force
# Install the build dependencies
sh -c "$(curl -sSfL https://release.anza.xyz/stable/install)"
# Check the version of Anchor
solana --version
# Install the latest version of Anchor
avm install latest
# Check the version of Anchor
anchor --version
📌 Common commands
solana config get # Get the current Solana cluster configuration
solana config set --url https://api.devnet.solana.com # Set the Solana cluster configuration
solana balance # Get the balance of the current wallet
solana airdrop 2 ~/.config/solana/id.json # Airdrop 1 SOL to the current wallet
solana address # Get the public key of the current wallet
solana keygen new --outfile ~/.config/solana/id.json # Generate a new keypair
solana transfer 1 [public-key] # Transfer 1 SOL to the specified public key
solana transfer --allow-unfunded-recipient 1 [public-key] # Transfer 1 SOL to the specified public key even if it's unfunded
solana transfer --allow-unfunded-recipient 1 [public-key] --from ~/.config/solana/id.json # Transfer 1 SOL from the current wallet to the specified public key even if it's unfunded
# https://docs.anza.xyz/cli/usage#solana-logs
solana logs --url localhost
# Initialize a new project
anchor init [new-workspace-name]
- Cryptocurrency agnostic payable
- Chrome extension to detect issues on Github and open bounties
- Mint a contribution/skill NFT for each bounty (can put to resume)
- Mint community impact NFT for each donation
- Analyze the impact of bounties on open source projects
- 😊
- solana-labs/dapp-scaffold
- 🤔 https://solana.stackexchange.com/questions/9352/dynamically-use-pda-with-transfer-hooks
- https://github.com/wormholelabs-xyz/example-queries-solana-pda
- https://stackoverflow.com/questions/70150946/systemprogramcreateaccount-data-size-limited-to-10240-in-inner-instructions
- https://solana.stackexchange.com/questions/2715/why-cant-i-close-a-solana-program-and-redeploy-to-the-same-program-id
- https://solana.com/docs/programs/deploying
- https://solana.stackexchange.com/questions/2840/best-ways-to-store-long-string-as-pda-seed
- https://www.reddit.com/r/docker/comments/f7eoh0/build_and_push_your_docker_images_using_github/
- https://www.learncloudnative.com/blog/2020-02-20-github-action-build-push-docker-images
- https://github.com/marketplace/actions/build-and-push-docker-images
- 🙂
- 🤨