Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alessandrokonrad/ethereum-funding
An Ethereum crowdfunding component written in React Js and Web3.
https://github.com/alessandrokonrad/ethereum-funding
component crowdfunding crypto cryptocurrency dapp ethereum ethereum-contract funding metamask react smart-contracts wallet web3 web3js
Last synced: about 1 month ago
JSON representation
An Ethereum crowdfunding component written in React Js and Web3.
- Host: GitHub
- URL: https://github.com/alessandrokonrad/ethereum-funding
- Owner: alessandrokonrad
- Created: 2019-08-28T21:08:57.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T00:03:15.000Z (almost 2 years ago)
- Last Synced: 2024-05-01T19:29:35.334Z (8 months ago)
- Topics: component, crowdfunding, crypto, cryptocurrency, dapp, ethereum, ethereum-contract, funding, metamask, react, smart-contracts, wallet, web3, web3js
- Language: JavaScript
- Homepage:
- Size: 11.7 MB
- Stars: 14
- Watchers: 2
- Forks: 7
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Milkomeda Crowdfunding
![demo](https://user-images.githubusercontent.com/35738310/64013051-47c49100-cb1f-11e9-8877-c09a944261b5.PNG)
Demo
(make sure Metamask is installed, otherwise you can't interact with the dapp)
Check smart contract for this example:
http://use-util.cloud.milkomeda.com:4000/address/0x7ae28c580DccA503c7412CE94e844db6f75BE585/transactions## Getting started
1. clone the repository
2. run npm install
3. install Metamask as Chrome extension
4. create a wallet in Metamask### Create smart contract
under src/contract/ you can find the contract.sol file. This is the contract I use for this example.
To use your own contract follow these steps:1. go to the Remix IDE
2. paste in the contract.sol file
3. deploy the contract on the network you want (e.g. mainnet or ropsten or Milkomeda)
4. copy the abi and the contract address
5. go to src/contract/abi.js and replace the abi with yours
6. go to src/contract/contract.js and replace the contract address with yours## Project setup
### `npm start`
Runs the app in the development mode.
Open [http://localhost:3000](http://localhost:3000) to view it in the browser.The page will reload if you make edits.
You will also see any lint errors in the console.### `npm run build`
Builds the app for production to the `build` folder.
It correctly bundles React in production mode and optimizes the build for the best performance.The build is minified and the filenames include the hashes.
Your app is ready to be deployed!See the section about [deployment](https://facebook.github.io/create-react-app/docs/deployment) for more information.