Skip to content

Commit

Permalink
Merge pull request #31 from DIG-Network/release/v0.0.1-alpha.34
Browse files Browse the repository at this point in the history
Release/v0.0.1 alpha.34
  • Loading branch information
MichaelTaylor3D authored Sep 29, 2024
2 parents bc87ab6 + ef6572a commit dbb192d
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 4 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.0.1-alpha.34](https://github.com/DIG-Network/dig-incentive-server/compare/v0.0.1-alpha.33...v0.0.1-alpha.34) (2024-09-29)

### [0.0.1-alpha.33](https://github.com/DIG-Network/dig-incentive-server/compare/v0.0.1-alpha.32...v0.0.1-alpha.33) (2024-09-28)

### [0.0.1-alpha.32](https://github.com/DIG-Network/dig-incentive-server/compare/v0.0.1-alpha.31...v0.0.1-alpha.32) (2024-09-28)
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "dig-incentive-server",
"version": "0.0.1-alpha.33",
"version": "0.0.1-alpha.34",
"description": "",
"type": "commonjs",
"main": "./dist/index.js",
Expand Down
3 changes: 2 additions & 1 deletion src/tasks/payouts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@ const mutex = new Mutex();
const roundsPerEpoch = 1008; // 1 round every 10 mins starting on the first hour of the epoch
const mojosPerXch = BigInt(1000000000000);

const Z = 1.645; // Z-score for 90% confidence level
//const Z = 1.645; // Z-score for 90% confidence level
const Z = 0.253;
const p = 0.5; // Estimated proportion of the population with the attribute
const E = 0.1; // Margin of error (10%)

Expand Down

0 comments on commit dbb192d

Please sign in to comment.