From 5f0dd0d497e03c175d9814fc90959cbaca3ee6a7 Mon Sep 17 00:00:00 2001 From: Zachary Brown Date: Fri, 5 May 2023 10:33:51 -0700 Subject: [PATCH 1/3] docs: improve README formatting --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 27e61ccc..a277ddb8 100644 --- a/README.md +++ b/README.md @@ -119,9 +119,9 @@ In the `CHIA_ROOT` directory (usually `~/.chia/mainnet` on Linux), CADT will add * **DEFAULT_FEE**: [Fee](https://docs.chia.net/mempool/) for each transaction on the Chia blockchain in mojos. The default is 300000000 mojos (0.0003 XCH) and can be set higher or lower depending on how [busy](https://dashboard.chia.net/d/46EAA05E/mempool-transactions-and-fees?orgId=1) the Chia network is. If a fee is set very low, it may cause a delay in transaction processing. * **DEFAULT_COIN_AMOUNT**: Units are mojo. Each DataLayer transaction needs a coin amount and the default is 300000000 mojo. * **DATALAYER_FILE_SERVER_URL**: Chia DataLayer HTTP URL and port. If serving DataLayer files from S3, this would be the public URL of the S3 bucket. Must be publicly available. -* GOVERNANCE: Section on settings for the Governance body to connect to. +* **GOVERNANCE**: Section on settings for the Governance body to connect to. * **GOVERNANCE_BODY_ID**: This determines the governance body your CADT network will be connected to. While there could be multiple governance body IDs, the default of 23f6498e015ebcd7190c97df30c032de8deb5c8934fc1caa928bc310e2b8a57e is the right ID for most people. -* TASKS: Section for configuring sync intervals +* **TASKS**: Section for configuring sync intervals * **AUDIT_SYNC_TASK_INTERVAL**: Default 30 * **DATAMODEL_SYNC_TASK_INTERVAL**: Default 60 * **GOVERNANCE_SYNC_TASK_INTERVAL**: Default 86400 From 403fe86b7410c9d63db11ae718efe3b63180ad06 Mon Sep 17 00:00:00 2001 From: Zachary Brown Date: Fri, 5 May 2023 22:58:37 -0700 Subject: [PATCH 2/3] build: apt repo trigger change --- .github/workflows/build.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 33007d66..2b395fea 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -301,5 +301,5 @@ jobs: - name: Trigger apt repo update run: | - curl -s -XPOST -H "Authorization: Bearer ${{ secrets.GLUE_ACCESS_TOKEN }}" --data '{"release_version":"${{ steps.tag-name.outputs.TAGNAME }}"}' ${{ secrets.GLUE_API_URL }}/api/v1/cadt/${{ github.sha }}/start - curl -s -XPOST -H "Authorization: Bearer ${{ secrets.GLUE_ACCESS_TOKEN }}" --data '{"release_version":"${{ steps.tag-name.outputs.TAGNAME }}"}' ${{ secrets.GLUE_API_URL }}/api/v1/cadt/${{ github.sha }}/success/deploy + curl -s -XPOST -H "Authorization: Bearer ${{ secrets.GLUE_ACCESS_TOKEN }}" --data '{"cadt_repo":"cadt","release_version":"${{ steps.tag-name.outputs.TAGNAME }}"}' ${{ secrets.GLUE_API_URL }}/api/v1/cadt/${{ github.sha }}/start + curl -s -XPOST -H "Authorization: Bearer ${{ secrets.GLUE_ACCESS_TOKEN }}" --data '{"cadt_repo":"cadt","release_version":"${{ steps.tag-name.outputs.TAGNAME }}"}' ${{ secrets.GLUE_API_URL }}/api/v1/cadt/${{ github.sha }}/success/deploy From 30ce3822e7ab29e3135cf5cfeef044cd40b2e190 Mon Sep 17 00:00:00 2001 From: Zachary Brown Date: Fri, 5 May 2023 23:01:45 -0700 Subject: [PATCH 3/3] chore: bump v1.3.1 --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 142a0b1c..d19099a8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cadt", - "version": "1.3.0", + "version": "1.3.1", "private": true, "bin": "build/server.js", "type": "module",