Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Distributing Trust and Blockchain assignment #1

Merged
merged 1 commit into from
Oct 31, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file not shown.
44 changes: 44 additions & 0 deletions Blockchain-Vyper-Auction/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
# Blockchain Combinitorial Auction with Vyper
### Authors:
#### Arjun Nemani 20161027
#### B.Vishal Reddy 201501173
#### Suhan Prabhu 201525118
#### P.Deeraj Reddy 201501093


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

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