We at Group Patronage aim to provide a decentralized crowdfunding platform that addresses the common challenges faced by small-scale startups and medium-sized businesses when it comes to raising funds.
Raising capital is often a major hurdle for many startups and businesses, especially those at the early stages of development. Traditional fundraising methods can be cumbersome, lacking transparency, and restrict access to a limited pool of potential investors.
To address these challenges, we are developing a decentralized crowdfunding platform. By utilizing a decentralized platform, we introduce transparency, broaden access to a wider investor community, and streamline the fundraising process.
Create a project using this example:
npx thirdweb create --contract --template hardhat-javascript-starter
You can start editing the page by modifying contracts/Contract.sol
.
To add functionality to your contracts, you can use the @thirdweb-dev/contracts
package which provides base contracts and extensions to inherit. The package is already installed with this project. Head to our Contracts Extensions Docs to learn more.
After any changes to the contract, run:
npm run build
# or
yarn build
to compile your contracts. This will also detect the Contracts Extensions Docs detected on your contract.
When you're ready to deploy your contracts, just run one of the following command to deploy you're contracts:
npm run deploy
# or
yarn deploy
If you want to release a version of your contracts publicly, you can use one of the followings command:
npm run release
# or
yarn release
✨Star it :fork_and_knife:Fork it and Contribute to it <3
- Fork this repository (Click the Fork button in the top right of this page, click your Profile Image)
- Clone your fork down to your local machine
https://github.com/group-patronage/group-patronage.git
- Create a branch
git checkout -b branch-name
- Make your changes (choose from any task below)
- Commit and push
git add .
git commit -m 'Commit message'
git push origin branch-name
- Create a new pull request from your forked repository (Click the
New Pull Request
button located at the top of your repo) - Wait for your PR review and merge approval!
- Star this repository if you had fun!
By contributing, you agree that your contributions will be licensed under its MIT License.