Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yenilikci/dropbox-clone-blockchain-reactjs-solidity
add ipfs hashes to blockchain with reactjs and solidity
https://github.com/yenilikci/dropbox-clone-blockchain-reactjs-solidity
dapp ganache ipfs react solidity truffle
Last synced: about 4 hours ago
JSON representation
add ipfs hashes to blockchain with reactjs and solidity
- Host: GitHub
- URL: https://github.com/yenilikci/dropbox-clone-blockchain-reactjs-solidity
- Owner: yenilikci
- Created: 2022-01-16T11:04:02.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-17T02:07:24.000Z (almost 3 years ago)
- Last Synced: 2023-03-06T14:35:07.704Z (over 1 year ago)
- Topics: dapp, ganache, ipfs, react, solidity, truffle
- Language: JavaScript
- Homepage:
- Size: 1.22 MB
- Stars: 6
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# dropbox-blockchain
# requirements
- download nodejs [🔗](https://nodejs.org/en/download/ "🔗")
- install truffle
`npm install --g truffle`
- download ganache [🔗](https://trufflesuite.com/ganache/ " 🔗")
- add metamask extension [🔗](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn "🔗")# prepare the project
- `cd Desktop`
- `git clone [email protected]:yenilikci/dropbox-blockchain.git`
- `cd dropbox-blockchain`
- `npm i`
- `npm run start`
> start ganache
> set host and port in truffle config file (dropbox-blockchain > truffle-config.js)
networks: {
development: {
host: "127.0.0.1",
port: 7545,
network_id: "*"
}
}don't forget to add your network
Metamask > Settings > Networks > Add a network
enter the rpc server connection and client id information
connect to your account :)