From 2affeb2d387008cb11f4cce80bd89e8d4026edf8 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 10 Oct 2024 14:30:47 +0530 Subject: [PATCH 01/20] Update Snapshot packages (#4914) Co-authored-by: ChaituVR --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 89857276810..4e3d7a7eaf2 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "@shutter-network/shutter-crypto": "1.0.1", "@snapshot-labs/lock": "^0.2.8", "@snapshot-labs/pineapple": "^1.1.0", - "@snapshot-labs/snapshot.js": "^0.12.23", + "@snapshot-labs/snapshot.js": "^0.12.24", "@vue/apollo-composable": "4.0.0-beta.11", "@vueuse/core": "^10.6.1", "@vueuse/head": "^2.0.0", diff --git a/yarn.lock b/yarn.lock index d5dfba06458..f3dcd8b8da2 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1679,10 +1679,10 @@ resolved "https://registry.yarnpkg.com/@snapshot-labs/prettier-config/-/prettier-config-0.1.0-beta.15.tgz#07e5ae35ed36304250462218e115bab1c1609812" integrity sha512-va6zYSl8oIraBJeIZWEatOI292rfJQouyyvEeHv8qi9ns+LgxMsKayQtXSqn9GcmAfdWQVs/P9bDaCQ77FyJYw== -"@snapshot-labs/snapshot.js@^0.12.23": - version "0.12.23" - resolved "https://registry.yarnpkg.com/@snapshot-labs/snapshot.js/-/snapshot.js-0.12.23.tgz#31fea49f8cb1d3fccf9d5898f05edd9c68500d69" - integrity sha512-n3qJUblvZFhaGzqW+TUL32YkNnPl7uAKwrofx1rG6em3E/LjE9Wr2HdbFtdBzIK0QiZQPYdHzQNokjE6jJJ+tw== +"@snapshot-labs/snapshot.js@^0.12.24": + version "0.12.24" + resolved "https://registry.yarnpkg.com/@snapshot-labs/snapshot.js/-/snapshot.js-0.12.24.tgz#9a10e76297571b3c5eb31b2881a6b7514dbfc1e8" + integrity sha512-ggkMhVUzokOXwrHpdLjmnwhm33g7lqkjcx8aBbu4Jvhit2ZYq2SRnZUUCa+Tn5bP6cf7TdnUvvPIS78LCdZstw== dependencies: "@ensdomains/eth-ens-namehash" "^2.0.15" "@ethersproject/abi" "^5.6.4" From 7fa7f849a0d72840af040be61f0c73e7442c328f Mon Sep 17 00:00:00 2001 From: Wan <495709+wa0x6e@users.noreply.github.com> Date: Thu, 10 Oct 2024 18:25:58 +0900 Subject: [PATCH 02/20] fix: fix broken space setting delegation portal (#4913) --- src/components/SettingsDelegationBlock.vue | 48 +++++++++++++++++++--- src/composables/useFormSpaceSettings.ts | 1 + src/helpers/interfaces.ts | 1 + src/helpers/queries.ts | 1 + 4 files changed, 45 insertions(+), 6 deletions(-) diff --git a/src/components/SettingsDelegationBlock.vue b/src/components/SettingsDelegationBlock.vue index c5527fce322..6b6dd2d4bdf 100644 --- a/src/components/SettingsDelegationBlock.vue +++ b/src/components/SettingsDelegationBlock.vue @@ -1,12 +1,22 @@ diff --git a/src/composables/useFormSpaceSettings.ts b/src/composables/useFormSpaceSettings.ts index 3a4f95cdec1..00d82058ef8 100644 --- a/src/composables/useFormSpaceSettings.ts +++ b/src/composables/useFormSpaceSettings.ts @@ -10,6 +10,7 @@ const DEFAULT_VOTE_VALIDATION = { name: 'any', params: {} }; const DEFAULT_DELEGATION = { delegationType: 'compound-governor', delegationContract: '', + delegationNetwork: '1', delegationApi: '' }; const EMPTY_SPACE_FORM = { diff --git a/src/helpers/interfaces.ts b/src/helpers/interfaces.ts index dc64722b030..fc39df55007 100644 --- a/src/helpers/interfaces.ts +++ b/src/helpers/interfaces.ts @@ -189,6 +189,7 @@ export interface ExtendedSpace { export interface DelegatesConfig { delegationType: DelegationTypes; delegationContract: string; + delegationNetwork: string; delegationApi: string; } export interface SpaceValidation { diff --git a/src/helpers/queries.ts b/src/helpers/queries.ts index 09773dfd7ee..eacc199b349 100644 --- a/src/helpers/queries.ts +++ b/src/helpers/queries.ts @@ -515,6 +515,7 @@ export const SPACE_QUERY = gql` delegationPortal { delegationType delegationContract + delegationNetwork delegationApi } treasuries { From 2a69ea8d1642a084343da75dc518e799c0dc18c5 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 13 Oct 2024 20:40:25 +0530 Subject: [PATCH 03/20] [create-pull-request] automated change (#4915) Co-authored-by: ChaituVR --- snapshot-spaces | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snapshot-spaces b/snapshot-spaces index bd1fdc5d844..75986b6b56d 160000 --- a/snapshot-spaces +++ b/snapshot-spaces @@ -1 +1 @@ -Subproject commit bd1fdc5d844c9e7e0cdba72f5c74b460e20eb511 +Subproject commit 75986b6b56db9ec30c0df583ca98c0942f9ce883 From 2b5d63d4ca45099f5483b4b5a5d9bbeb4a53e715 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 16 Oct 2024 11:12:44 +0530 Subject: [PATCH 04/20] Update Snapshot packages (#4918) Co-authored-by: ChaituVR --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 4e3d7a7eaf2..58cab3c6ddb 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "@shutter-network/shutter-crypto": "1.0.1", "@snapshot-labs/lock": "^0.2.8", "@snapshot-labs/pineapple": "^1.1.0", - "@snapshot-labs/snapshot.js": "^0.12.24", + "@snapshot-labs/snapshot.js": "^0.12.25", "@vue/apollo-composable": "4.0.0-beta.11", "@vueuse/core": "^10.6.1", "@vueuse/head": "^2.0.0", diff --git a/yarn.lock b/yarn.lock index f3dcd8b8da2..4489812e7a3 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1679,10 +1679,10 @@ resolved "https://registry.yarnpkg.com/@snapshot-labs/prettier-config/-/prettier-config-0.1.0-beta.15.tgz#07e5ae35ed36304250462218e115bab1c1609812" integrity sha512-va6zYSl8oIraBJeIZWEatOI292rfJQouyyvEeHv8qi9ns+LgxMsKayQtXSqn9GcmAfdWQVs/P9bDaCQ77FyJYw== -"@snapshot-labs/snapshot.js@^0.12.24": - version "0.12.24" - resolved "https://registry.yarnpkg.com/@snapshot-labs/snapshot.js/-/snapshot.js-0.12.24.tgz#9a10e76297571b3c5eb31b2881a6b7514dbfc1e8" - integrity sha512-ggkMhVUzokOXwrHpdLjmnwhm33g7lqkjcx8aBbu4Jvhit2ZYq2SRnZUUCa+Tn5bP6cf7TdnUvvPIS78LCdZstw== +"@snapshot-labs/snapshot.js@^0.12.25": + version "0.12.25" + resolved "https://registry.yarnpkg.com/@snapshot-labs/snapshot.js/-/snapshot.js-0.12.25.tgz#0011290e3761624efba1abeb01f72259f09b5fa2" + integrity sha512-8+VsFt33xxMbMTrS5En3K107Z9Sk8SQpQQpgaiq1Ty/IMX0EGnUcBLCbbJm8fnyK3rB4rQwvwg81N+xTDhcyLw== dependencies: "@ensdomains/eth-ens-namehash" "^2.0.15" "@ethersproject/abi" "^5.6.4" From 9eca001950a464919e7a209a3b5426b396d38e0e Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 16 Oct 2024 11:43:09 +0530 Subject: [PATCH 05/20] Update Snapshot packages (#4919) Co-authored-by: ChaituVR --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 58cab3c6ddb..8fc4698ce77 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "@shutter-network/shutter-crypto": "1.0.1", "@snapshot-labs/lock": "^0.2.8", "@snapshot-labs/pineapple": "^1.1.0", - "@snapshot-labs/snapshot.js": "^0.12.25", + "@snapshot-labs/snapshot.js": "^0.12.26", "@vue/apollo-composable": "4.0.0-beta.11", "@vueuse/core": "^10.6.1", "@vueuse/head": "^2.0.0", diff --git a/yarn.lock b/yarn.lock index 4489812e7a3..0360a7daf2a 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1679,10 +1679,10 @@ resolved "https://registry.yarnpkg.com/@snapshot-labs/prettier-config/-/prettier-config-0.1.0-beta.15.tgz#07e5ae35ed36304250462218e115bab1c1609812" integrity sha512-va6zYSl8oIraBJeIZWEatOI292rfJQouyyvEeHv8qi9ns+LgxMsKayQtXSqn9GcmAfdWQVs/P9bDaCQ77FyJYw== -"@snapshot-labs/snapshot.js@^0.12.25": - version "0.12.25" - resolved "https://registry.yarnpkg.com/@snapshot-labs/snapshot.js/-/snapshot.js-0.12.25.tgz#0011290e3761624efba1abeb01f72259f09b5fa2" - integrity sha512-8+VsFt33xxMbMTrS5En3K107Z9Sk8SQpQQpgaiq1Ty/IMX0EGnUcBLCbbJm8fnyK3rB4rQwvwg81N+xTDhcyLw== +"@snapshot-labs/snapshot.js@^0.12.26": + version "0.12.26" + resolved "https://registry.yarnpkg.com/@snapshot-labs/snapshot.js/-/snapshot.js-0.12.26.tgz#bb96db261cb3e83b89c5f950ccf966ec5f954685" + integrity sha512-9EHApGUq9Zh/lJg05WbOBi1hW4azTWze0hBEOGC5OdOuLn1QHPUusKp6Ru7ZbVg5Wu8UpvLf7KKfRM2x0sxmqw== dependencies: "@ensdomains/eth-ens-namehash" "^2.0.15" "@ethersproject/abi" "^5.6.4" From e2557736027699e86f0a1a92242d8f414fa24a59 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 21:19:58 +0530 Subject: [PATCH 06/20] [create-pull-request] automated change (#4921) Co-authored-by: ChaituVR --- snapshot-spaces | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snapshot-spaces b/snapshot-spaces index 75986b6b56d..1f97ea6f424 160000 --- a/snapshot-spaces +++ b/snapshot-spaces @@ -1 +1 @@ -Subproject commit 75986b6b56db9ec30c0df583ca98c0942f9ce883 +Subproject commit 1f97ea6f42411b0acca21c6c3089af36955aa7bc From 35642570e5da6cfb43608a3019cd09d19e5f0750 Mon Sep 17 00:00:00 2001 From: Chaitanya Date: Thu, 17 Oct 2024 21:29:51 +0530 Subject: [PATCH 07/20] fix: Keep existing labels on spaces and proposals (#4917) --- src/composables/useClient.ts | 2 +- src/composables/useFormSpaceProposal.ts | 3 +++ src/composables/useFormSpaceSettings.ts | 1 + src/helpers/queries.ts | 7 +++++++ src/views/SpaceCreate.vue | 1 + 5 files changed, 13 insertions(+), 1 deletion(-) diff --git a/src/composables/useClient.ts b/src/composables/useClient.ts index 50e7532166d..1909cafbc66 100644 --- a/src/composables/useClient.ts +++ b/src/composables/useClient.ts @@ -68,7 +68,7 @@ export function useClient() { body: payload.body, discussion: payload.discussion, choices: payload.choices, - labels: [], + labels: payload.labels, plugins: JSON.stringify(plugins) }); } else if (type === 'vote') { diff --git a/src/composables/useFormSpaceProposal.ts b/src/composables/useFormSpaceProposal.ts index a4b7732bd37..49d04931ee8 100644 --- a/src/composables/useFormSpaceProposal.ts +++ b/src/composables/useFormSpaceProposal.ts @@ -9,6 +9,7 @@ interface ProposalForm { body: string; discussion: string; choices: { key: number; text: string }[]; + labels: string[]; start: number; end: number; snapshot: number; @@ -29,6 +30,7 @@ const EMPTY_PROPOSAL: ProposalForm = { { key: 0, text: '' }, { key: 1, text: '' } ], + labels: [], start: parseInt((Date.now() / 1e3).toFixed()), end: 0, snapshot: 0, @@ -60,6 +62,7 @@ export function useFormSpaceProposal({ spaceType = 'default' } = {}) { name: string; body: string; choices: { key: number; text: string }[]; + labels: string[]; isBodySet: boolean; }>(`snapshot.proposal.${route.params.key}`, clone(EMPTY_PROPOSAL_DRAFT)); diff --git a/src/composables/useFormSpaceSettings.ts b/src/composables/useFormSpaceSettings.ts index 00d82058ef8..d73d1e06f45 100644 --- a/src/composables/useFormSpaceSettings.ts +++ b/src/composables/useFormSpaceSettings.ts @@ -16,6 +16,7 @@ const DEFAULT_DELEGATION = { const EMPTY_SPACE_FORM = { strategies: [], categories: [], + labels: [], treasuries: [], admins: [], moderators: [], diff --git a/src/helpers/queries.ts b/src/helpers/queries.ts index eacc199b349..08d8c175ebd 100644 --- a/src/helpers/queries.ts +++ b/src/helpers/queries.ts @@ -46,6 +46,7 @@ export const PROPOSAL_QUERY = gql` body discussion choices + labels start end snapshot @@ -460,6 +461,12 @@ export const SPACE_QUERY = gql` moderators members categories + labels { + id + name + description + color + } plugins followersCount template diff --git a/src/views/SpaceCreate.vue b/src/views/SpaceCreate.vue index cda8027ce4e..5c8d00b3ab6 100644 --- a/src/views/SpaceCreate.vue +++ b/src/views/SpaceCreate.vue @@ -298,6 +298,7 @@ function setSourceProposal(proposal) { body: proposal.body, discussion: proposal.discussion, choices: proposal.choices, + labels: proposal.labels, start: proposal.start, end: proposal.end, snapshot: proposal.snapshot, From a55a0de1a10eb1e5085bc9b4050a0a54e6e61578 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 22:24:40 +0530 Subject: [PATCH 08/20] Update Snapshot packages (#4922) Co-authored-by: ChaituVR --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 8fc4698ce77..be0f118d90d 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "@shutter-network/shutter-crypto": "1.0.1", "@snapshot-labs/lock": "^0.2.8", "@snapshot-labs/pineapple": "^1.1.0", - "@snapshot-labs/snapshot.js": "^0.12.26", + "@snapshot-labs/snapshot.js": "^0.12.27", "@vue/apollo-composable": "4.0.0-beta.11", "@vueuse/core": "^10.6.1", "@vueuse/head": "^2.0.0", diff --git a/yarn.lock b/yarn.lock index 0360a7daf2a..f445dc56542 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1679,10 +1679,10 @@ resolved "https://registry.yarnpkg.com/@snapshot-labs/prettier-config/-/prettier-config-0.1.0-beta.15.tgz#07e5ae35ed36304250462218e115bab1c1609812" integrity sha512-va6zYSl8oIraBJeIZWEatOI292rfJQouyyvEeHv8qi9ns+LgxMsKayQtXSqn9GcmAfdWQVs/P9bDaCQ77FyJYw== -"@snapshot-labs/snapshot.js@^0.12.26": - version "0.12.26" - resolved "https://registry.yarnpkg.com/@snapshot-labs/snapshot.js/-/snapshot.js-0.12.26.tgz#bb96db261cb3e83b89c5f950ccf966ec5f954685" - integrity sha512-9EHApGUq9Zh/lJg05WbOBi1hW4azTWze0hBEOGC5OdOuLn1QHPUusKp6Ru7ZbVg5Wu8UpvLf7KKfRM2x0sxmqw== +"@snapshot-labs/snapshot.js@^0.12.27": + version "0.12.27" + resolved "https://registry.yarnpkg.com/@snapshot-labs/snapshot.js/-/snapshot.js-0.12.27.tgz#ed4c3c50f8cf8788831c0250eb8b76350baaf5e3" + integrity sha512-1pP8Ex8vZgvl6KEwqBsVXCJSlKBSxPlr4yknNz9erBAtw1VAppOJ2ZkRHVs0x7+4nrcxnuzU/I3y0GkfLPLTPg== dependencies: "@ensdomains/eth-ens-namehash" "^2.0.15" "@ethersproject/abi" "^5.6.4" From 8d693704c17a127cab13420db4959c3cf8a2a3c7 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 18 Oct 2024 10:26:03 +0530 Subject: [PATCH 09/20] [create-pull-request] automated change (#4923) Co-authored-by: ChaituVR --- snapshot-spaces | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snapshot-spaces b/snapshot-spaces index 1f97ea6f424..8729ea5eca3 160000 --- a/snapshot-spaces +++ b/snapshot-spaces @@ -1 +1 @@ -Subproject commit 1f97ea6f42411b0acca21c6c3089af36955aa7bc +Subproject commit 8729ea5eca3c09be18e6ea3db138757538db661b From d0de0ffe300f4d09e71e0cb3b4c52e680a8a3ecc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 18:24:02 +0530 Subject: [PATCH 10/20] Update Snapshot packages (#4925) Co-authored-by: ChaituVR --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index be0f118d90d..4b6170ab9ba 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "@shutter-network/shutter-crypto": "1.0.1", "@snapshot-labs/lock": "^0.2.8", "@snapshot-labs/pineapple": "^1.1.0", - "@snapshot-labs/snapshot.js": "^0.12.27", + "@snapshot-labs/snapshot.js": "^0.12.28", "@vue/apollo-composable": "4.0.0-beta.11", "@vueuse/core": "^10.6.1", "@vueuse/head": "^2.0.0", diff --git a/yarn.lock b/yarn.lock index f445dc56542..e7a390c007f 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1679,10 +1679,10 @@ resolved "https://registry.yarnpkg.com/@snapshot-labs/prettier-config/-/prettier-config-0.1.0-beta.15.tgz#07e5ae35ed36304250462218e115bab1c1609812" integrity sha512-va6zYSl8oIraBJeIZWEatOI292rfJQouyyvEeHv8qi9ns+LgxMsKayQtXSqn9GcmAfdWQVs/P9bDaCQ77FyJYw== -"@snapshot-labs/snapshot.js@^0.12.27": - version "0.12.27" - resolved "https://registry.yarnpkg.com/@snapshot-labs/snapshot.js/-/snapshot.js-0.12.27.tgz#ed4c3c50f8cf8788831c0250eb8b76350baaf5e3" - integrity sha512-1pP8Ex8vZgvl6KEwqBsVXCJSlKBSxPlr4yknNz9erBAtw1VAppOJ2ZkRHVs0x7+4nrcxnuzU/I3y0GkfLPLTPg== +"@snapshot-labs/snapshot.js@^0.12.28": + version "0.12.28" + resolved "https://registry.yarnpkg.com/@snapshot-labs/snapshot.js/-/snapshot.js-0.12.28.tgz#6f6644038c9df06daaea508b57d0b3d5d7a55cd9" + integrity sha512-F2rwwgkV1NtYeeOy1Tl1qemJvm7Ux/D8mM5k/+uD53ptWsX6//zlv9daajZjT+7h7pYqycKvNJJE1f7Rr0m4cQ== dependencies: "@ensdomains/eth-ens-namehash" "^2.0.15" "@ethersproject/abi" "^5.6.4" From a50e16d15d966c1ece5ad3dd435f0344c6bb8f81 Mon Sep 17 00:00:00 2001 From: Lubov66 Date: Sat, 26 Oct 2024 14:25:36 +0300 Subject: [PATCH 11/20] Update README.md (#4926) --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 87f1c17911d..1e849f9303f 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Discord - + @@ -27,7 +27,7 @@ • Feature requests • - Contribute + Contribute ## Project setup From 448489f3d83abebd69f7ca42f57da3b0df28ba08 Mon Sep 17 00:00:00 2001 From: Chaitanya Date: Fri, 8 Nov 2024 11:47:24 +0530 Subject: [PATCH 12/20] fix: Allow snapshot in fantom safe and add fantom networks to WC (#4930) --- src/helpers/connectors.ts | 3 ++- src/helpers/constants.ts | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/src/helpers/connectors.ts b/src/helpers/connectors.ts index 925cdae7f23..a22375971c2 100644 --- a/src/helpers/connectors.ts +++ b/src/helpers/connectors.ts @@ -11,7 +11,8 @@ const connectors = { projectId: 'e6454bd61aba40b786e866a69bd4c5c6', chains: [], optionalChains: [ - 1, 4, 5, 10, 42, 56, 100, 137, 246, 1088, 42161, 73799, 11155111 + 1, 4, 5, 10, 42, 56, 100, 137, 246, 250, 4002, 1088, 42161, 73799, + 11155111 ], optionalMethods: [ 'eth_sendTransaction', diff --git a/src/helpers/constants.ts b/src/helpers/constants.ts index de5d21fa909..2ad10d2e88a 100644 --- a/src/helpers/constants.ts +++ b/src/helpers/constants.ts @@ -20,7 +20,8 @@ export const KNOWN_HOSTS = [ 'wallet.ambire.com', 'multisig.moonbeam.network', 'worldassociation.org', - 'safe.mainnet.frax.com' + 'safe.mainnet.frax.com', + 'safe.fantom.network' ]; // All subdomains of these domains are allowed From 011918d069afd00f91b516461870901b4e5c84b2 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Nov 2024 07:45:05 +0530 Subject: [PATCH 13/20] [create-pull-request] automated change (#4931) Co-authored-by: ChaituVR --- snapshot-spaces | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/snapshot-spaces b/snapshot-spaces index 8729ea5eca3..26e23c0404b 160000 --- a/snapshot-spaces +++ b/snapshot-spaces @@ -1 +1 @@ -Subproject commit 8729ea5eca3c09be18e6ea3db138757538db661b +Subproject commit 26e23c0404bad1f45a00848ffbb6e3e0e2f1bcb7 From 36df1abf0346b49e34c3508c311117f24d394fff Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Wed, 13 Nov 2024 22:52:00 +0530 Subject: [PATCH 14/20] Update Snapshot packages (#4932) Co-authored-by: ChaituVR --- package.json | 2 +- yarn.lock | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 4b6170ab9ba..55cb2193b43 100644 --- a/package.json +++ b/package.json @@ -44,7 +44,7 @@ "@shutter-network/shutter-crypto": "1.0.1", "@snapshot-labs/lock": "^0.2.8", "@snapshot-labs/pineapple": "^1.1.0", - "@snapshot-labs/snapshot.js": "^0.12.28", + "@snapshot-labs/snapshot.js": "^0.12.29", "@vue/apollo-composable": "4.0.0-beta.11", "@vueuse/core": "^10.6.1", "@vueuse/head": "^2.0.0", diff --git a/yarn.lock b/yarn.lock index e7a390c007f..24ce459da14 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1679,10 +1679,10 @@ resolved "https://registry.yarnpkg.com/@snapshot-labs/prettier-config/-/prettier-config-0.1.0-beta.15.tgz#07e5ae35ed36304250462218e115bab1c1609812" integrity sha512-va6zYSl8oIraBJeIZWEatOI292rfJQouyyvEeHv8qi9ns+LgxMsKayQtXSqn9GcmAfdWQVs/P9bDaCQ77FyJYw== -"@snapshot-labs/snapshot.js@^0.12.28": - version "0.12.28" - resolved "https://registry.yarnpkg.com/@snapshot-labs/snapshot.js/-/snapshot.js-0.12.28.tgz#6f6644038c9df06daaea508b57d0b3d5d7a55cd9" - integrity sha512-F2rwwgkV1NtYeeOy1Tl1qemJvm7Ux/D8mM5k/+uD53ptWsX6//zlv9daajZjT+7h7pYqycKvNJJE1f7Rr0m4cQ== +"@snapshot-labs/snapshot.js@^0.12.29": + version "0.12.29" + resolved "https://registry.yarnpkg.com/@snapshot-labs/snapshot.js/-/snapshot.js-0.12.29.tgz#ea629acccd95afd84d62a1202de03fe2dc84ab53" + integrity sha512-pfyc6ZsuCLoitH0FqYfPiBFZEsYN+i0atWEA3ubQozA/g9sOgDKRyChHoj8A7lEkkNT7gt4J9xKoDk3jo6CTNw== dependencies: "@ensdomains/eth-ens-namehash" "^2.0.15" "@ethersproject/abi" "^5.6.4" From 45becbf0b51506d9a938a1872c7e69d272f2f65b Mon Sep 17 00:00:00 2001 From: Chaitanya Date: Sat, 16 Nov 2024 10:06:59 +0530 Subject: [PATCH 15/20] fix: Whitelist with-delegation strategies and use checksum addresses (#4933) * fix: Whitelist with-delegation strategies and use checksum addresses * refactor --- src/views/DelegateView.vue | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/src/views/DelegateView.vue b/src/views/DelegateView.vue index 844cbaa74b0..49a65124f81 100644 --- a/src/views/DelegateView.vue +++ b/src/views/DelegateView.vue @@ -1,6 +1,6 @@