https://github.com/jakelin/ethereum-splitter
A simple smart contract for splitting the fund
https://github.com/jakelin/ethereum-splitter
Last synced: 6 months ago
JSON representation
A simple smart contract for splitting the fund
- Host: GitHub
- URL: https://github.com/jakelin/ethereum-splitter
- Owner: JakeLin
- License: mit
- Created: 2019-07-25T05:34:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-08-22T02:23:33.000Z (over 6 years ago)
- Last Synced: 2025-01-20T10:12:14.159Z (about 1 year ago)
- Language: JavaScript
- Size: 77.1 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# splitter
A simple smart contract for splitting the fund
## How to use
### Migrating
One of the option to test the contract quickly is to use the truffle develop network.
```
> truffle develop // to start the develop local network
> truffle migrate // migrate to the develop local network
```
### Testing
We use JavaScript to test our contract.
```
> truffle test
```
### WEB DAPP
The Dapp is developed by React.js, we can start it locally
```
> cd web
> yarn
> yarn start
```