Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nemani/blockchain-vyper-auction
This repository contains code for a Single-minded Combinatorial Auction Contract written in Vyper, as part of "Distributing Trust and Blockchain" Course at IIIT Hyderabad, in Monsoon 2018
https://github.com/nemani/blockchain-vyper-auction
Last synced: 8 days ago
JSON representation
This repository contains code for a Single-minded Combinatorial Auction Contract written in Vyper, as part of "Distributing Trust and Blockchain" Course at IIIT Hyderabad, in Monsoon 2018
- Host: GitHub
- URL: https://github.com/nemani/blockchain-vyper-auction
- Owner: nemani
- Created: 2018-09-13T03:05:49.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-24T17:39:42.000Z (over 6 years ago)
- Last Synced: 2024-11-02T02:02:19.664Z (about 2 months ago)
- Language: Python
- Homepage:
- Size: 263 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blockchain Combinitorial Auction with Vyper
### Authors:
#### Arjun Nemani 20161027
#### B.Vishal Reddy 201501173
#### Suhan Prabhu 201525118
#### P.Deeraj Reddy 201501093This repository contains code for a Single-minded Combinatorial Auction Contract written in Vyper, as part of "Distributing Trust and Blockchain" Course at IIIT Hyderabad, in Monsoon 2018
Steps to run:
Step 1: Install truffle
```bash
$ npm -g install truffle
```Step 2: Install deps
```bash
$ npm install
```Step 3: Build Contracts
```bash
$ npm run build
```Step 4: Migrate Contracts
```bash
$ truffle develop
```
then when you get the truffle console type:```
truffle(develop)> migrate
```Step 5: Run Tests
```bash
$ npm run test
```