Skip to content
This repository has been archived by the owner on Sep 3, 2019. It is now read-only.

Commit

Permalink
Moved
Browse files Browse the repository at this point in the history
  • Loading branch information
dwalintukan authored Sep 3, 2019
1 parent 1cd3f4a commit 3b10987
Showing 1 changed file with 1 addition and 51 deletions.
52 changes: 1 addition & 51 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,51 +1 @@
# Install and Usage
Download the last binary at our releases page: https://github.com/bodhiproject/bodhi-app/releases

## Mac

1. Run `Bodhi-x.x.x.dmg`
2. Drag the Bodhi icon to the `Applications` folder
3. You may get a warning dialog that says "Bodhi can't be opened because it is from an unidentified developer." If you do, find the `Bodhi` app in the Finder and right-click it and `Open`. This will open another dialog, which you will press `Open` again.
4. Enjoy!

## Windows

1. Please disable your antivirus or whitelist the Bodhi app before running it. Some antiviruses will come back as a false positive so if you don't disable it and it could automatically quarantine the app. This will make the app disappear.
2. The Qtum app might also pop up as an antivirus false positive. Please disable or whitelist your antivirus program.
3. Run `Bodhi-Setup-x.x.x.exe`
4. Enjoy!

## Linux

1. Run `Bodhi-x.x.x-i386.AppImage` or `Bodhi-x.x.x-x86_64.AppImage`
2. Enjoy!

# Winning Rates Formulae
Here are the formula calculations for determining how much BOT and QTUM you will win on an Event.

QTUM Return Rate:
```
// 1% percent of losing QTUM gets split by BOT winners
losersQtumReward = totalLosingQtumBets * 1 / 100
// total losing QTUM less the 1% reward that goes to BOT winners
losersAdjustedQtum = totalLosingQtumBets - losersQtumReward
// QTUM won from QTUM bets only
qtumWon = (yourQtumWinningBets / totalQtumWinningBets * losersAdjustedQtum) + yourQtumWinningBets
```

BOT Return Rate:
```
// BOT won from your BOT winning votes
botWon = (yourBotWinningBets / totalBotWinningBets * losersTotal) + yourBotWinningBets
// QTUM reward won from BOT winning votes
botQtumWon = yourBotWinningBets / totalBotWinningBets * losersQtumReward
```

Total Return:
```
qtum = qtumWon + botQtumWon
bot = botWon
```
We've moved to https://gitlab.com/bodhiproject!

0 comments on commit 3b10987

Please sign in to comment.