Skip to content
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
16 changes: 15 additions & 1 deletion packages/chess-app/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,18 @@
# Bitcoin Computer Chess App
<div align="center">
<img src="./imgs/chess.png" alt="chess-app-screenshot" border="0" style=""/>
<h1>Bitcoin Computer Chess</h1>
<p>
An App for Wagering on Chess
<br />
<a href="http://bitcoincomputer.io/">website</a> &#183; <a href="http://docs.bitcoincomputer.io/">docs</a>
</p>
</div>

This app allows two users to wager on a game of chess. There are no middlemen, the wagers are held in a 2-of-2 multisig address between the players. **The current version requires that the winner trusts that the looser will help to retrieve the winnings, otherwise the wagers remain locked.**

A future version will be completely trustless, governed by a smart contract.

**This is a work in progress and not recommended for production use.**

## Usage

Expand Down
Binary file added packages/chess-app/imgs/chess.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 8 additions & 0 deletions packages/chess-contracts/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,14 @@ Start a Bitcoin Computer Node in the package `node`. Copy the `.env.example` fil
cp .env.example .env
```

### Deploy

Before you can start the chess-app, you need to deploy the chess contract.

```
npm run deploy
```

### Test

```
Expand Down