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

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

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
```