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

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.

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`