From a9bb626eea9217f7f534b5547289db212c4c60f2 Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Mon, 21 Aug 2023 11:57:48 +0200 Subject: [PATCH 1/2] fix typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index df38bd5..12e4e49 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,7 @@ RabbitMQ message wise flow as mentioned in [Project Architecture](#project-archi 1. `Snapshot Commit Message`: - Store snapshots on decentralized storage protocols like IPFS and/or Web3 Storage. - Submit snapshots to the smart contract for consensus. -2. `Snaptshot Finalized Message`: +2. `Snapshot Finalized Message`: - Receives finalized snapshot. - Compare committed snapshot with finalized snapshot. - Generate snapshotter report for snapshot submissions accordingly. From ff8990f4a3f2712c782fd1f8f801fb0c542ccbae Mon Sep 17 00:00:00 2001 From: omahs <73983677+omahs@users.noreply.github.com> Date: Mon, 21 Aug 2023 11:58:56 +0200 Subject: [PATCH 2/2] fix typos --- docs/Introduction.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/Introduction.md b/docs/Introduction.md index 32ac200..f400e4f 100644 --- a/docs/Introduction.md +++ b/docs/Introduction.md @@ -33,7 +33,7 @@ The project consists of the following services: ### Payload Commit Service The payload commit service has the following functionalities: -1. Listens to Rabbitmq "Snaptshot Commit" messages. +1. Listens to Rabbitmq "Snapshot Commit" messages. 2. Store the snapshot on IPFS and/web3.storage (based on configuration). - stores cid from IPFS and web3.storage in Redis cache for the given project at provided epochID. 3. Creates EIP-712 based structured data hash and generates the signature. @@ -69,7 +69,7 @@ Common utils that are used by multiple Golang services are available in [goutils - [caching](../go/caching) - Generic caching interface - [logger](../go/goutils/logger/) - Logger initialization and setup code - [redisutils](../go/goutils/redisutils/) - Redis client initialization and common operations wrapper code -- [settings](../go/goutils/settings/) - Parsing the settings and settings deaults +- [settings](../go/goutils/settings/) - Parsing the settings and settings defaults - [slackutils](../go/goutils/slackutils/) - Code to interact with slack workflow - [datamodel](../go/goutils/datamodel/) - Data models used across services - [ipfsutils](../go/goutils/ipfsutils/) - IPFS client initialization and common functionality