https://github.com/stynamic/gca
Genuine Charity App is a decentralized application build over Ethereum blockchain. It eliminates the third party in charity work.
https://github.com/stynamic/gca
nextjs solidity web3js
Last synced: 27 days ago
JSON representation
Genuine Charity App is a decentralized application build over Ethereum blockchain. It eliminates the third party in charity work.
- Host: GitHub
- URL: https://github.com/stynamic/gca
- Owner: stynamic
- Created: 2022-06-16T07:33:28.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2022-06-16T11:40:33.000Z (almost 4 years ago)
- Last Synced: 2025-03-24T06:34:15.320Z (about 1 year ago)
- Topics: nextjs, solidity, web3js
- Language: JavaScript
- Homepage: https://genuine-charity-app.vercel.app/
- Size: 199 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# gca (Genuine Charity App)
Genuine Charity App is a decentralized application build over Ethereum blockchain.
----
STEP 1:
Grab the repository and install packages
* clone the repository
`$ git clone https://github.com/stynamic/gca.git`
`$ cd gca`
* install dependency packages
`$ npm install`
STEP 2:
Compile and Deploy
* compile `npm run compile`
* deploy `npm run deploy`
(copy the address of deployed contract from console)
STEP 3:
Edit `gca/ethereum/keys.js` file and assign the variables
* account mnemonic
`const PHRASE = 'PASTE_HERE';`
* provider url from infura or local RPC url
`const PROVIDER_URL = 'PASTE_HERE';`
* contract address from deployment process (STEP 2)
`const CONTRACT_ADDRESS = 'PASTE_HERE';`
STEP 4:
Ready to compile and run the DAPP
* run `npm run dev`