From 29d2b5f2af6e459b01551745d9947e329cdc53aa Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Wed, 5 Mar 2025 22:37:31 +0100 Subject: [PATCH 1/3] Update README.md --- src/strategies/rep3-badges/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strategies/rep3-badges/README.md b/src/strategies/rep3-badges/README.md index 2924af733..133ddd598 100644 --- a/src/strategies/rep3-badges/README.md +++ b/src/strategies/rep3-badges/README.md @@ -6,7 +6,7 @@ Using the protocol, DAOs can give various types of badges to their members. Thes This architecture lets communities track and visualise their member activity and, on the other hand, lets community members build their portfolio of work through on-chain credentials. These naturally have a higher signalling value than more traditional types of portfolios like resumés. -Badges given through the rep3 platform are also fully interoperable with several web3 tools, especially those that are used for gating resources behind a token. These badges, at a contract level, are custom implmentations of ERC-721 tokens. This is a deliberate decision to balance the trade-off between maintaining the integrity of these badges (w.r.t. the work they represent) and permitting key rotation by users. +Badges given through the rep3 platform are also fully interoperable with several web3 tools, especially those that are used for gating resources behind a token. These badges, at a contract level, are custom implementations of ERC-721 tokens. This is a deliberate decision to balance the trade-off between maintaining the integrity of these badges (w.r.t. the work they represent) and permitting key rotation by users. The rest of this document details the technical specifications and integration process of our protocol. Please note that this document might be confusing to understand or even have some outdated parts. We are in the process of updating these as we begin to focus on protocol-level integrations in addition to focussing on tool adoption. From b302cb8cfe0ae0f07b66510acf07406b0c08fa8a Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Wed, 5 Mar 2025 22:40:45 +0100 Subject: [PATCH 2/3] Update utils.ts --- src/strategies/hopr-stake-and-balance-qv/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strategies/hopr-stake-and-balance-qv/utils.ts b/src/strategies/hopr-stake-and-balance-qv/utils.ts index c8a72cff6..d2135d9ad 100644 --- a/src/strategies/hopr-stake-and-balance-qv/utils.ts +++ b/src/strategies/hopr-stake-and-balance-qv/utils.ts @@ -55,7 +55,7 @@ export function getHostedSubgraphUrl( } /** - * Try to query subgraphs from three differnt endpoints (hosted service, studio for development, studio in production), if applicable + * Try to query subgraphs from three different endpoints (hosted service, studio for development, studio in production), if applicable * @param hostedSubgraphUrl hosted subgrpah url * @param stuidoDevSubgraphUrl development url foro studio subgraph * @param studioProdSubgraphUrl production url foro studio subgraph From 83814684369e622ecdbdf2d9c8e22fd74b07cbdd Mon Sep 17 00:00:00 2001 From: kilavvy <140459108+kilavvy@users.noreply.github.com> Date: Wed, 5 Mar 2025 22:42:18 +0100 Subject: [PATCH 3/3] Update README.md --- src/strategies/recusal-list/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/strategies/recusal-list/README.md b/src/strategies/recusal-list/README.md index bd22d205c..b3669ff35 100644 --- a/src/strategies/recusal-list/README.md +++ b/src/strategies/recusal-list/README.md @@ -1,7 +1,7 @@ # recusal-list This is strategy for disallowing certain address from voting due to conflict of interest or other reasons for recusal. -You can pass any strategy as an optionnal parameter to combine the recusal with another one. +You can pass any strategy as an optional parameter to combine the recusal with another one. Below is an example of parameters. The address list renotes which addresses to restrict. The strategy and its params defines the strategy to use if needed.