https://github.com/devpavan04/safex-claims
An implementation of kleros arbitrable and evidence compatible contract to create and rule disputes.
https://github.com/devpavan04/safex-claims
Last synced: about 1 year ago
JSON representation
An implementation of kleros arbitrable and evidence compatible contract to create and rule disputes.
- Host: GitHub
- URL: https://github.com/devpavan04/safex-claims
- Owner: devpavan04
- Created: 2021-04-11T05:08:36.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-04-14T05:31:37.000Z (about 5 years ago)
- Last Synced: 2025-02-05T21:54:15.143Z (over 1 year ago)
- Language: JavaScript
- Homepage: https://devpavan04.github.io/safex-claims/
- Size: 4.5 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Safex Claims
#### An implementation of kleros arbitrable and evidence compatible contract to create and rule disputes.
#
### Deployments
#### SafexMain Smart Contract is deployed to Ropsten Testnet - [0x69d36535524997af56c2cb28af019d0f997e5044](https://ropsten.etherscan.io/address/0x69d36535524997af56c2cb28af019d0f997e5044)
#### Access Safex Claims DApp at [SafexClaims](https://devpavan04.github.io/safex-claims/).
#
### Run the DApp Locally
#### Install truffle
```
npm install -g truffle
```
#### Install ganache-cli
```
npm i ganache-cli
```
#### Run ganache-cli
```
ganache-cli --port 7545 --quiet
```
#### Open new terminal window and clone this repository
```
git clone https://github.com/devpavan04/safex-claims.git
```
#### Install dependencies
```
cd safex-claims
npm install
cd client
npm install
```
#### Compile smart contract
```
cd ..
truffle compile
```
#### Deploy smart contract to ganache
```
truffle migrate
```
#### Test smart contract
```
truffle test
```
#### Start DApp
```
npm start
```
#### Open metamask browser wallet and select network to Localhost 7545.