Skip to content

Commit

Permalink
Merge pull request #17 from DIG-Network/release/v0.0.1-alpha.18
Browse files Browse the repository at this point in the history
Release/v0.0.1 alpha.18
  • Loading branch information
MichaelTaylor3D authored Sep 25, 2024
2 parents 11922bd + 320d592 commit a634c84
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 9 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.18](https://github.com/DIG-Network/dig-incentive-server/compare/v0.0.1-alpha.17...v0.0.1-alpha.18) (2024-09-25)

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

### [0.0.1-alpha.16](https://github.com/DIG-Network/dig-incentive-server/compare/v0.0.1-alpha.15...v0.0.1-alpha.16) (2024-09-25)
Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

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

4 changes: 2 additions & 2 deletions 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.17",
"version": "0.0.1-alpha.18",
"description": "",
"type": "commonjs",
"main": "./dist/index.js",
Expand All @@ -24,7 +24,7 @@
"LICENSE"
],
"dependencies": {
"@dignetwork/dig-sdk": "^0.0.1-alpha.86",
"@dignetwork/dig-sdk": "^0.0.1-alpha.87",
"async-mutex": "^0.5.0",
"chia-server-coin": "^0.0.5",
"datalayer-driver": "^0.1.21",
Expand Down
4 changes: 3 additions & 1 deletion src/tasks/payouts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,9 @@ const runIncentiveProgram = async (
const paymentHint = DigPeer.createPaymentHint(Buffer.from(program.storeId, "hex"));
const message = Buffer.from(`Incentive program payout for storeId: ${program.storeId}, epoch ${currentEpoch}, round ${currentRound}`, "utf-8");
console.log(`Payment hint: ${paymentHint.toString("hex")} - ${message.toString('hex')}: ${message.toString("utf-8")}`);
const memo = [paymentHint, message];
// For the alpha program we are going to forgo the hint and just use the message so people can see it in their chia wallet
//const memo = [paymentHint, message];
const memot = [message]

await DigPeer.sendEqualBulkPayments(
program.walletName,
Expand Down

0 comments on commit a634c84

Please sign in to comment.