Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Issue #2479] Tie streams to hat #2562

Merged
merged 16 commits into from
Nov 28, 2024
Merged

Conversation

Da-Colon
Copy link
Contributor

@Da-Colon Da-Colon commented Nov 21, 2024

Closes #2479

Alrighty, Goes with decentdao/decent-contracts#128 over in the contracts.

@Da-Colon Da-Colon self-assigned this Nov 21, 2024
Copy link

netlify bot commented Nov 21, 2024

Deploy Preview for decent-interface-dev ready!

Name Link
🔨 Latest commit cf7b133
🔍 Latest deploy log https://app.netlify.com/sites/decent-interface-dev/deploys/67474800921c3c00084a9230
😎 Deploy Preview https://deploy-preview-2562.app.dev.decentdao.org
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@Da-Colon Da-Colon changed the title [Issue 2479] tie streams to hat [Issue 2479] Tie streams to hat Nov 21, 2024
@Da-Colon Da-Colon changed the title [Issue 2479] Tie streams to hat [Issue #2479] Tie streams to hat Nov 22, 2024
src/hooks/DAO/loaders/useHatsTree.ts Outdated Show resolved Hide resolved
@DarksightKellar
Copy link
Contributor

DarksightKellar commented Nov 22, 2024

Whoops did not mean to approve just yet since "no QA yet". Meant to leave a comment

@DarksightKellar DarksightKellar dismissed their stale review November 22, 2024 14:10

Didn't mean to approve

@adamgall
Copy link
Member

@Da-Colon @fractal-framework/[email protected] is being published right now and should be available for consumption in ~3 mins from the time of this comment.

@adamgall
Copy link
Member

Also @Da-Colon just to be clear

Until the contracts are published, did not commit the tempAbis and network addresses that I use for testing.

Why did you have new ABIs? The ABIs shouldn't have changed.

@Da-Colon
Copy link
Contributor Author

Also @Da-Colon just to be clear

Until the contracts are published, did not commit the tempAbis and network addresses that I use for testing.

Why did you have new ABIs? The ABIs shouldn't have changed.

Because I'm sleep deprived

Copy link
Contributor

@DarksightKellar DarksightKellar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Cool lgtm

src/components/ui/forms/DatePicker.tsx Outdated Show resolved Hide resolved
src/types/roles.tsx Outdated Show resolved Hide resolved
src/store/roles/useRolesStore.ts Outdated Show resolved Hide resolved
Copy link
Member

@adamgall adamgall left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the latest commit, is there a race condition here? Seems like this code will only work correctly if and only if the KeyValuePairs data comes in (and gets stored in the map) before the updateRolesWithStreams function runs.

Is that a valid concern?

@Da-Colon
Copy link
Contributor Author

Da-Colon commented Nov 23, 2024

In the latest commit, is there a race condition here? Seems like this code will only work correctly if and only if the KeyValuePairs data comes in (and gets stored in the map) before the updateRolesWithStreams function runs.

Is that a valid concern?

I don't think so? Since its coming in is being fetched at the same time as the hatTreeId which kicks off the retreival of that hats and setHatsTree is first called. I believe that these will correctly get set prior to setHatTree being called next.

I thought about update setHatTreeId into like setHatTreeEventData (The name is why I didn't) to set the loop first. In that I effect. I could just flip These like this for the same effect.

   setHatIdsToStreamIds(getHatIdsToStreamIds(safeEvents, sablierV2LockupLinear, chain.id));
        setHatsTreeId({
          contextChainId: chain.id,
          hatsTreeId: getHatsTreeId(safeEvents, chain.id),
        });

Since these are coming from the same getEvents called and extracted out.

I"ve done several refreshes and haven't seen any weird behavior so far. But I guess thats no saying much.

@Da-Colon
Copy link
Contributor Author

In the latest commit, is there a race condition here? Seems like this code will only work correctly if and only if the KeyValuePairs data comes in (and gets stored in the map) before the updateRolesWithStreams function runs.
Is that a valid concern?

I don't think so? Since its coming in is being fetched at the same time as the hatTreeId which kicks off the retreival of that hats and setHatsTree is first called. I believe that these will correctly get set prior to setHatTree being called next.

I thought about update setHatTreeId into like setHatTreeEventData (The name is why I didn't) to set the loop first. In that I effect. I could just flip These like this for the same effect.

   setHatIdsToStreamIds(getHatIdsToStreamIds(safeEvents, sablierV2LockupLinear, chain.id));
        setHatsTreeId({
          contextChainId: chain.id,
          hatsTreeId: getHatsTreeId(safeEvents, chain.id),
        });

Since these are coming from the same getEvents called and extracted out.

I"ve done several refreshes and haven't seen any weird behavior so far. But I guess thats no saying much.

@DarksightKellar @mudrila Do either of you have any thoughts on this?

@mudrila
Copy link
Contributor

mudrila commented Nov 26, 2024

In the latest commit, is there a race condition here? Seems like this code will only work correctly if and only if the KeyValuePairs data comes in (and gets stored in the map) before the updateRolesWithStreams function runs.
Is that a valid concern?

I don't think so? Since its coming in is being fetched at the same time as the hatTreeId which kicks off the retreival of that hats and setHatsTree is first called. I believe that these will correctly get set prior to setHatTree being called next.
I thought about update setHatTreeId into like setHatTreeEventData (The name is why I didn't) to set the loop first. In that I effect. I could just flip These like this for the same effect.

   setHatIdsToStreamIds(getHatIdsToStreamIds(safeEvents, sablierV2LockupLinear, chain.id));
        setHatsTreeId({
          contextChainId: chain.id,
          hatsTreeId: getHatsTreeId(safeEvents, chain.id),
        });

Since these are coming from the same getEvents called and extracted out.
I"ve done several refreshes and haven't seen any weird behavior so far. But I guess thats no saying much.

@DarksightKellar @mudrila Do either of you have any thoughts on this?

Yeah, I do see Adam's point - @Da-Colon did I get this right that you've changed implementation to what you suggested?

@Da-Colon
Copy link
Contributor Author

yeah I'll go with the thing I suggested of just handling both of these via a single state setter.

@Da-Colon
Copy link
Contributor Author

Check out latest commit @DarksightKellar || @mudrila. look good?

@Da-Colon Da-Colon merged commit 4629cb0 into develop Nov 28, 2024
7 checks passed
@Da-Colon Da-Colon deleted the issue/2479-tie-streams-to-hat branch November 28, 2024 08:57
DarksightKellar added a commit that referenced this pull request Dec 4, 2024
commit f3d4743a22f40c49c26aee83b049fa41733cfd52
Merge: 5ab5ca06d b3dc469f8
Author: Adam Gall <[email protected]>
Date:   Wed Dec 4 13:09:36 2024 -0500

    Merge pull request #2587 from decentdao/new-homepage

commit 5ab5ca06d1ccfc9d6d5bc5de1aa591c3ccccf774
Merge: b4a9f8ae5 f34962c73
Author: Kelvin <[email protected]>
Date:   Wed Dec 4 18:00:20 2024 +0000

    Merge pull request #2581 from decentdao/2527-update-withdraw

    `[PRD]` | Update withdraw modal UI

commit b4a9f8ae528fc4be7e5eb16f6bb48c1878ee07f4
Merge: 2a29b79d2 c67013bbf
Author: Kelvin <[email protected]>
Date:   Wed Dec 4 17:59:42 2024 +0000

    Merge pull request #2578 from decentdao/cleanup-prd-merges-so-far

    Some cleanup work to close up PRD offshoot issues

commit f34962c73b459584e05a08e7f2ddf86fdb53c116
Merge: ed2c1bf59 89049b7c4
Author: Kellar <[email protected]>
Date:   Wed Dec 4 15:57:55 2024 +0000

    Merge branch 'develop' into 2527-update-withdraw

commit ed2c1bf59fcf6138106d6699e7ee0636442044c6
Author: Kellar <[email protected]>
Date:   Wed Dec 4 15:55:01 2024 +0000

    Tune withdraw modal UI

commit 2a29b79d204f72afaf82db80099e99c0ef0190b8
Merge: 89049b7c4 196968ebd
Author: Adam Gall <[email protected]>
Date:   Wed Dec 4 10:54:23 2024 -0500

    Merge pull request #2588 from decentdao/bugfix/-font-name-update

    `[Bugfix]` Third Party Css files needs updated font name

commit c67013bbf26ea99e906420e71c1ebd4406062a70
Merge: 686528e53 89049b7c4
Author: Kellar <[email protected]>
Date:   Wed Dec 4 15:39:40 2024 +0000

    Merge branch 'develop' into cleanup-prd-merges-so-far

commit 686528e537800502f89f45e2f4d40fe170c3207a
Author: Kellar <[email protected]>
Date:   Wed Dec 4 15:37:57 2024 +0000

    Go cyberpsycho and RIPPP out every last innard of Wrap functionality and code

commit b3dc469f8ab4a0d6643710c919dfd7f0a330a229
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 16:18:40 2024 -0500

    Remove Spacer and just use regular CSS

commit 17bba3c9fcd0765826befc36dfe706df504ca56f
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 16:18:12 2024 -0500

    Remove unused prop

commit fd4435f6c8cfa84a51b113b556e5efa90c4c4d4f
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 15:51:23 2024 -0500

    Align "My DAOs" and "Search bar" at end

commit 74c4ad38f05cdb003947de56b095b25875568c95
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 15:40:35 2024 -0500

    Update text sizes in Getting Started cards

commit d9655d2d9c683301ec63d14202db2f33eca0ea22
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 15:34:01 2024 -0500

    Make border show up when hovered

commit 3c884ef6a61b4d6d543a9c4f71644f776a9c503c
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 15:31:39 2024 -0500

    Update all 200ms transitions to be 300ms

commit 5e968647df29c3b2a287710779e57f5c425a6cfd
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 15:31:18 2024 -0500

    Add hover color and transition to Getting Started cards

commit 78d4c4f4dff160c73daa1c41e094735766dc9751
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 15:28:38 2024 -0500

    Fix arrow button size

commit 0fe88fda26c4163b52116ccc44f006fef91169ae
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 15:26:02 2024 -0500

    Don't constrain size of "connect wallet / account" header button on mobile

commit 4cd5d804e39e8cf36ff539d9c8bdf22f81705ebb
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 15:11:22 2024 -0500

    Change mag glass color

commit 06f9432fe9858853f92e241efa22589fcdb2bed5
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 15:02:45 2024 -0500

    Remove some copy

commit 4435a5acd9ddb5b339de483aad997ef8da1e854f
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 14:41:49 2024 -0500

    Add "Getting Started" section

commit 196968ebd1f44b0add8ab6f784ecd6a7e21de227
Author: David Colon <[email protected]>
Date:   Tue Dec 3 14:27:48 2024 -0500

    Update font family from 'DM Sans Variable' to 'DM Sans' in Calendar and Toast styles

commit b324b34c64eae7495a2cfe79203ced29df63f5b5
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 14:24:40 2024 -0500

    Remove unused code

commit c15350672dcba6e4cb9861ab0673e47db971a825
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 13:30:31 2024 -0500

    Add DAOSearch to home page in proper location on desktop and mobile

commit 88a48722b73ceacc402f76ddec8ec1bf19b63d04
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 13:29:21 2024 -0500

    Update DAOSearch component to have proper colors and blurry overlay background

commit 4e37a494794bf519e4391a8f3f037317c0951910
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 13:29:21 2024 -0500

    Update z-indices on a couple of elements

commit d97e56206389baabd5188f5beae9e0cef13a7933
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 13:29:21 2024 -0500

    Fix DAO name not showing up in Search results

commit 70feeee72e4bd253423d853912cdb481401b07a8
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 13:28:17 2024 -0500

    Better instantiation of a ref

commit 95184a228c155fbfe15a4219a5c799a47d9264b2
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 13:28:17 2024 -0500

    Remove "search safe" magnifying glass and modal on mobile

commit 603f9bd0fe9f066134858222f2b3bc358e0c046e
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 13:28:17 2024 -0500

    Remove search bar from desktop header

commit 5c17b686ced715dd5ab9ead94d526cb1ca422587
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 13:28:17 2024 -0500

    Remove Create DAO button on home page

commit 8139fcf8c9824c22bdaf9203be49c633feb0ef84
Author: Adam Gall <[email protected]>
Date:   Tue Dec 3 13:27:17 2024 -0500

    Remove Decent logo on home page on mobile

commit 89049b7c474cbe6bb21e2f6a30f8ce29ec5e4db6
Merge: 5c7126f25 d7805529f
Author: David Colon <[email protected]>
Date:   Tue Dec 3 10:50:39 2024 -0500

    Merge pull request #2585 from decentdao/issue/2577-update-text-style-tokens

    `[Issue #2577]` update text style tokens

commit d7805529fb909a57f5957c8911613d15da4e5975
Merge: fd5f8a8b8 5c7126f25
Author: David Colon <[email protected]>
Date:   Tue Dec 3 10:46:17 2024 -0500

    Merge branch 'develop' of github.com:decentdao/decent-interface into issue/2577-update-text-style-tokens

commit 5c7126f25ee23544636a7836f50725b092e18c00
Merge: 4b4a2e82f 1758b79ed
Author: Kelvin <[email protected]>
Date:   Tue Dec 3 11:52:28 2024 +0000

    Merge pull request #2584 from decentdao/issue/2545-add-more-socials

    `[PRD]` | `[Issue #2545]` add more socials

commit 4b4a2e82fe0445681347fac43407fff27b6b58a5
Merge: 0632f1f56 8cdfbc663
Author: David Colon <[email protected]>
Date:   Mon Dec 2 15:58:47 2024 -0500

    Merge pull request #2583 from decentdao/2525-role-details-updates

    `[PRD]` Role details updates

commit 1758b79ed6d10a4daaa8d4cce7bc305d56f613a3
Merge: 819a2b2ff 0632f1f56
Author: David Colon <[email protected]>
Date:   Mon Dec 2 15:47:04 2024 -0500

    Merge branch 'develop' into issue/2545-add-more-socials

commit 819a2b2ffe2ec9e30dec22dfa406e29d07aa9070
Author: David Colon <[email protected]>
Date:   Mon Dec 2 15:46:41 2024 -0500

    fix: update Telegram URL with the correct handle

commit 0632f1f5668cc386f06fee7561bbe6b6c4b6f6a4
Merge: 029ba3aae 67d1c1e45
Author: David Colon <[email protected]>
Date:   Mon Dec 2 15:43:09 2024 -0500

    Merge pull request #2566 from decentdao/issue/2529-cache-it

    `[PRD]` | `[Issue #2529]` Organization Hierarchy Cache

commit 49e48f0e7da73a3e97e43e193c175eac31dfb4f3
Author: David Colon <[email protected]>
Date:   Mon Dec 2 14:33:18 2024 -0500

    fix: update social media URLs for Twitter and Discord

commit 67d1c1e45f3c5e2244ce7da47d1a744dfdccd120
Author: David Colon <[email protected]>
Date:   Mon Dec 2 14:30:39 2024 -0500

    refactor: update daoSnapshotENS to subgraphInfo in ProposalsHome component

commit 7d36a2ecc170d7bc214f9ca830e3383334fceb17
Merge: 6a47c167d 029ba3aae
Author: David Colon <[email protected]>
Date:   Mon Dec 2 14:24:32 2024 -0500

    Merge branch 'develop' of github.com:decentdao/decent-interface into issue/2529-cache-it

commit 6a47c167da68a6e369c33f02cbc4f4627f1ac2f3
Author: David Colon <[email protected]>
Date:   Mon Dec 2 13:48:51 2024 -0500

    refactor: filter governanceTypes to remove duplicates in DaoHierarchyNode component

commit 9b9bb42030a8d01b67c80d002cf883c127f4271c
Merge: e62aecbc7 f698f95e1
Author: David Colon <[email protected]>
Date:   Mon Dec 2 12:19:33 2024 -0500

    Merge pull request #2574 from decentdao/breakout-issue/typing-dao-info

    `[Type Update]` DAO Info Typing

commit f698f95e1e3d9868f6378ff7aa8cacbccdd0501b
Merge: ed0f426c1 5a9faf6d9
Author: David Colon <[email protected]>
Date:   Mon Dec 2 12:19:15 2024 -0500

    Merge pull request #2579 from decentdao/issue/2530-hierarchy-voting-schema-display

    `[PRD]` | `[Issue #2530]` | Hierarchy voting strategies display

commit 029ba3aae60218ceea26dd83846e51a3f6ed6e22
Merge: 4629cb0c9 a51cd2edf
Author: Kyrylo Klymenko <[email protected]>
Date:   Mon Dec 2 15:20:28 2024 +0100

    Merge pull request #2580 from decentdao/2534-templates-ux

    Add browse templates to DAO home

commit fd5f8a8b8da8157e4d85af37c992add86a0e89f7
Author: David Colon <[email protected]>
Date:   Sat Nov 30 22:47:36 2024 -0500

    fix: add missing newline at end of text.styles.tokens.json for proper formatting

commit 20f8b1be77e242d733374de8d73ebc3260beb8fc
Author: David Colon <[email protected]>
Date:   Sat Nov 30 22:41:38 2024 -0500

    refactor: update textStyle prop in ExampleLabel to use 'snippets-small' for consistency

commit 089cb6ce6e4ce0790a2dfb38f3c9d15e0a7bac4b
Author: David Colon <[email protected]>
Date:   Sat Nov 30 22:36:49 2024 -0500

    refactor: remove unnecessary textStyle prop from Text components in ActivityFreeze

commit ba29562c44a3e04c2ce7efa420927e58a2686251
Author: David Colon <[email protected]>
Date:   Sat Nov 30 22:36:17 2024 -0500

    refactor: simplify text components and update text style for consistency in ConfirmModifyGovernanceModal

commit f285fea4dcd0392b7c604d57392b06e550d5a147
Author: David Colon <[email protected]>
Date:   Sat Nov 30 21:55:33 2024 -0500

    refactor: update font-family to 'DM Sans' and add 'DM Mono' for improved typography

commit 3d60570ad62eced15335e605dfca84178f08922a
Author: David Colon <[email protected]>
Date:   Sat Nov 30 21:44:14 2024 -0500

    refactor: update text styles to use 'labels-small' for consistency across Role components

commit e873a69788040ea33f6493891817fd6e4a8ee13d
Author: David Colon <[email protected]>
Date:   Sat Nov 30 21:44:08 2024 -0500

    refactor: update text styles to use 'labels-large' and 'body-small' for consistency across components

commit 5faafd017cbaaed0ad596f438f6d964ac54fb567
Author: David Colon <[email protected]>
Date:   Sat Nov 30 21:41:21 2024 -0500

    refactor: update text styles to use 'labels-large' instead of 'label-base' in multiple components

commit ffad6c1d691d975baf68e86b75705628a3c5f61a
Author: David Colon <[email protected]>
Date:   Sat Nov 30 21:38:50 2024 -0500

    refactor: update button and text styles to use 'labels-large' instead of 'button-small'

commit 3f38f4ae49e6e8efd7737aa12be504f6a57b9e64
Author: David Colon <[email protected]>
Date:   Sat Nov 30 21:37:39 2024 -0500

    update button and iconButton styles: replace 'button-base' with 'body-large' for consistency

commit b118691ce097a02fb18d7d491c88248c77413988
Author: David Colon <[email protected]>
Date:   Sat Nov 30 21:36:49 2024 -0500

    update button and iconButton sizes: replace 'button-large' with 'body-large' for consistency

commit b4190a74020b9634280285c78abf95fbc0366921
Author: David Colon <[email protected]>
Date:   Sat Nov 30 21:32:45 2024 -0500

    update text styles: replace 'display-lg' with 'heading-small' in multiple components

commit 2beb0abac5bbdb1296f368f6531a5826adde8588
Author: David Colon <[email protected]>
Date:   Sat Nov 30 21:32:06 2024 -0500

    update text styles: replace 'display-xl' with 'heading-medium' in multiple components

commit 504e3b6db2910a6cc850c04b8e75f89780021d7d
Author: David Colon <[email protected]>
Date:   Sat Nov 30 21:31:21 2024 -0500

    update text styles: replace 'display-2xl' with 'heading-large' in multiple components

commit 09fa52dd2fc52abb95992d17c0a7f36c8c302860
Author: David Colon <[email protected]>
Date:   Sat Nov 30 21:27:06 2024 -0500

    update text styles: replace 'display-4xl' with 'heading-large' in multiple components

commit 04c2b887d7f41766a02eaac901c291408680a80e
Author: David Colon <[email protected]>
Date:   Sat Nov 30 21:24:55 2024 -0500

    remove unused textStyle property from various components; in favor of globally set `body-small`

commit a2bf82b1fdedc902501ee484ecb9ee35128bcf44
Author: David Colon <[email protected]>
Date:   Sat Nov 30 21:20:38 2024 -0500

    update global theme styles: change font family to 'DM Sans' and update text style

commit e12bf267c31c3f88f49d6b48aafc053693bd30eb
Author: David Colon <[email protected]>
Date:   Sat Nov 30 21:20:33 2024 -0500

    refactor typography structure and update styles in text.styles.tokens.json

commit ad6b829404989a3daf68dc0d278ec61ddf352b36
Author: David Colon <[email protected]>
Date:   Sat Nov 30 06:35:04 2024 -0500

    fix: add missing newline at end of navigation.json file

commit 5fbcb5541bf09d6ed03f385c9ee924de667a7f90
Author: David Colon <[email protected]>
Date:   Sat Nov 30 06:34:49 2024 -0500

    refactor footer and external link components for improved accessibility and translation support

commit 129912fb0c88f56516da798396ac8a4a09757d79
Author: David Colon <[email protected]>
Date:   Sat Nov 30 05:57:24 2024 -0500

    add navigation icons for social media links in footer

commit f918c39434e292ebe3fc3dda1f7ada50d4b9a3ec
Author: David Colon <[email protected]>
Date:   Sat Nov 30 05:55:35 2024 -0500

    add social media URLs for Twitter, Telegram, and Discord

commit 2253f5b97c42661b0bee6c7c0b0ad70549783827
Author: David Colon <[email protected]>
Date:   Sat Nov 30 05:54:47 2024 -0500

    remove chat link from external navigation

commit 5a9faf6d93e0db7aff91a0dba6761d2a28b256c1
Merge: 782c53bce ed0f426c1
Author: David Colon <[email protected]>
Date:   Sat Nov 30 02:38:24 2024 -0500

    Merge branch 'breakout-issue/typing-dao-info' of github.com:decentdao/decent-interface into issue/2530-hierarchy-voting-schema-display

commit 8cdfbc663caf62a0731981c20ea3818595fa93fa
Author: Kellar <[email protected]>
Date:   Fri Nov 29 19:41:54 2024 +0000

    Show terms tabs always. Make payments tab first since empty terms tab by default is jarring. Remove redundant payments title

commit 0e0fdd04e134cee9c25a21bf525e69bb56f0ed50
Author: Kellar <[email protected]>
Date:   Fri Nov 29 19:37:03 2024 +0000

    bugfix

commit 7fe5d574a1ae1d9b0492cf95099f093cda9c0bd4
Author: Kellar <[email protected]>
Date:   Fri Nov 29 19:36:22 2024 +0000

    Minor layout fixes

commit 1ce1f850b88654bd13bcb455f8e76b689a029017
Author: Kellar <[email protected]>
Date:   Fri Nov 29 19:36:05 2024 +0000

    Update some UI elements in role details drawer

commit ed0f426c17026b089fe21f1269bd69b8d20467de
Author: David Colon <[email protected]>
Date:   Fri Nov 29 10:51:08 2024 -0500

    refactor: remove null type from parentAddress for improved type safety across transaction builders

commit 003be47c87458a40bfd09f27088d8b995b3562a1
Author: David Colon <[email protected]>
Date:   Fri Nov 29 10:48:25 2024 -0500

    refactor: update safeAddress handling to ensure null safety across hooks and components

commit 730c57c1176a7e44756667deb79990415117b178
Author: David Colon <[email protected]>
Date:   Fri Nov 29 10:37:08 2024 -0500

    refactor: update DAO-related types to handle null values for improved safety and clarity

commit 1dae1771028c7a0ef65d719a7fe80e6e75aed2bd
Author: Kellar <[email protected]>
Date:   Thu Nov 28 16:53:07 2024 +0000

    Update withdraw modal

commit f4cea8e39aca1da3095fce445e05c72b2e33938c
Author: Kellar <[email protected]>
Date:   Thu Nov 28 15:45:41 2024 +0000

    Add dev mode governance defaults + margin on top of delegate submit button

commit a51cd2edf1221d1063d80e1280e3cf289ed908d9
Author: Kellar <[email protected]>
Date:   Thu Nov 28 15:29:24 2024 +0000

    lil tune up

commit e11f0bd4ad4ad52af2312f6d6fae753784309f80
Author: Kellar <[email protected]>
Date:   Thu Nov 28 15:21:34 2024 +0000

    update copy

commit f1ca78f8b45b69ce03a114af546be62c189797f0
Author: Kellar <[email protected]>
Date:   Thu Nov 28 15:19:49 2024 +0000

    add padding, back arrow

commit e32baf390c03452df03af78b6cff1077299e2848
Author: Kellar <[email protected]>
Date:   Thu Nov 28 15:15:07 2024 +0000

    Add browse templates menu item

commit 8e91d5cece784357b46ee0943482251a10988ac1
Merge: 8bdf18929 4629cb0c9
Author: Kelvin <[email protected]>
Date:   Thu Nov 28 13:40:32 2024 +0000

    Merge branch 'develop' into cleanup-prd-merges-so-far

commit 782c53bce9b6848277d5a4776c4caf33f09066ca
Merge: 21f4de650 77881bfb4
Author: David Colon <[email protected]>
Date:   Thu Nov 28 04:21:04 2024 -0500

    Merge branch 'breakout-issue/typing-dao-info' of github.com:decentdao/decent-interface into issue/2530-hierarchy-voting-schema-display

commit 77881bfb43dd762ae5b3b04e4172d36805fb0a4c
Author: David Colon <[email protected]>
Date:   Thu Nov 28 04:20:54 2024 -0500

    refactor: rename modules variable to decentModules for improved clarity in useSubmitProposal hook

commit 21f4de65061c2679156beadfd6eaad85b4af2f52
Author: David Colon <[email protected]>
Date:   Thu Nov 28 04:13:55 2024 -0500

    refactor: replace FractalModuleData with DecentModule in DaoHierarchyNode for consistency

commit a5fa7f2d261454db56fa33e90b0fdf38a07e5189
Merge: dd821a19a 41bfc900c
Author: David Colon <[email protected]>
Date:   Thu Nov 28 04:13:21 2024 -0500

    Merge branch 'breakout-issue/typing-dao-info' of github.com:decentdao/decent-interface into issue/2530-hierarchy-voting-schema-display

commit 41bfc900cb565e50b68bfcba893354184a6fa261
Author: David Colon <[email protected]>
Date:   Thu Nov 28 04:12:19 2024 -0500

    refactor: remove unused lookupModules import from useUpdateSafeData hook

commit 4fe6a61b03d1b80add2cf0163d353e08775828fb
Author: David Colon <[email protected]>
Date:   Thu Nov 28 04:11:26 2024 -0500

    refactor: replace FractalModuleData with DecentModule for improved clarity and consistency

commit 588301de122080b9c30a7f0d8d8ede8ed1bc0088
Author: David Colon <[email protected]>
Date:   Thu Nov 28 04:10:37 2024 -0500

    refactor: rename daoModules to modules for consistency across components and hooks

commit 680e8ddb399778be3d05a961a9d08fd378cbf819
Author: David Colon <[email protected]>
Date:   Thu Nov 28 04:09:46 2024 -0500

    refactor: rename modules to modulesAddresses for clarity in DaoInfoStore and GnosisSafe types

commit 4629cb0c91e1ebb6166b46ca01b6bb74324e3a44
Merge: a17cae137 cf7b133a6
Author: David Colon <[email protected]>
Date:   Thu Nov 28 03:57:18 2024 -0500

    Merge pull request #2562 from decentdao/issue/2479-tie-streams-to-hat

    `[Issue #2479]` Tie streams to hat

commit dd821a19a3dd0425b43717676b7a9966136cc16a
Author: David Colon <[email protected]>
Date:   Thu Nov 28 03:53:50 2024 -0500

    refactor: update layout of voting strategies in DAONodeInfoCard component

commit 62fb574888c7e5a179ef9d0ec9b1f4fe5ed17746
Author: David Colon <[email protected]>
Date:   Thu Nov 28 03:45:50 2024 -0500

    fix: handle null node response in DaoHierarchyNode component

commit aa11d66a6c880ba9810f099bc552627db690097e
Author: David Colon <[email protected]>
Date:   Thu Nov 28 03:41:25 2024 -0500

    feat: add voting strategies to DAO hierarchy and update DAONodeInfoCard

commit 8bdf189290cb7dba41b1374f07d9d138f465a939
Author: Kellar <[email protected]>
Date:   Wed Nov 27 21:01:37 2024 +0000

    Increase `AddressInput` debounce time

commit ef499410b1dc9529505d1e0de34cb51d6f9bb1f2
Author: Kellar <[email protected]>
Date:   Wed Nov 27 20:39:18 2024 +0000

    Fix allocation input spacing

commit 0d483269e23eadba58320c039ad94b30b4820008
Author: Kellar <[email protected]>
Date:   Wed Nov 27 20:03:51 2024 +0000

    Fix import token field showing error before first input

commit 21de6ac41c01552c3ac843a8fdc2d96b750d199f
Author: Kellar <[email protected]>
Date:   Wed Nov 27 19:30:15 2024 +0000

    Rip out wrap/unwrap functionality

commit 51a2c84c911dd84a0fefe347a85b4287f5f93d8a
Author: David Colon <[email protected]>
Date:   Wed Nov 27 14:06:40 2024 -0500

    refactor: inline props structure in DAONodeInfoCard component

commit db056a22c034f827bd6809313dfbbab569d47b44
Author: David Colon <[email protected]>
Date:   Wed Nov 27 14:06:05 2024 -0500

    refactor: replace Flex with Box in DAONodeInfoCard and improve layout structure

commit 7564c4faac7ce4ffed704e8a2c5692c6e0b50a51
Author: Kellar <[email protected]>
Date:   Wed Nov 27 19:12:50 2024 +0000

    Auto adjust threshold if removing an owner causes owner count to be less than current threshold

commit 74efe545691a48311bf470576d888c2d9f434294
Author: Kellar <[email protected]>
Date:   Wed Nov 27 19:10:53 2024 +0000

    Extract `NumberStepperInput` component. Use in multisig threshold input

commit 00d39a712bb3729094f119784f811b88676c419e
Author: Kellar <[email protected]>
Date:   Wed Nov 27 19:03:03 2024 +0000

    Fix pill external link styling

commit cf7b133a62d222902f2b432aac53bd24a494bc87
Author: David Colon <[email protected]>
Date:   Wed Nov 27 11:25:29 2024 -0500

    only filter for isTermed (for now)

commit b42111d17c076cd2dc6132b5eb1bff7815d3b698
Merge: ffba62147 a17cae137
Author: David Colon <[email protected]>
Date:   Wed Nov 27 10:41:25 2024 -0500

    Merge branch 'develop' into issue/2479-tie-streams-to-hat

commit a17cae1374a1166421c9d9a6c87223ca4538035b
Merge: d33232610 7b219d8eb
Author: Kelvin <[email protected]>
Date:   Wed Nov 27 15:33:29 2024 +0000

    Merge pull request #2571 from decentdao/2541-compose-gov-copy

    `[PRD]` Update compose governance copy + period input UI

commit d33232610dabaa2c7a9b39d7a3d47eb6062b698c
Merge: a326a153d 3206c6e54
Author: Kelvin <[email protected]>
Date:   Wed Nov 27 15:33:09 2024 +0000

    Merge pull request #2575 from decentdao/2528-move-create-subdao

    `[PRD]` Move create subdao to organisations page

commit a326a153d1bbdae88999c2a35b06e761702bb7c7
Merge: 9990c1ad1 43c8cb87a
Author: Kelvin <[email protected]>
Date:   Wed Nov 27 14:50:28 2024 +0000

    Merge pull request #2548 from decentdao/2522-dashboard-copy-updates

    `[PRD]` Dashboard updates

commit 3206c6e54b6d7ad920099826cdc6a68e46c9aea2
Merge: 717441cc2 9990c1ad1
Author: Kelvin <[email protected]>
Date:   Wed Nov 27 14:49:44 2024 +0000

    Merge branch 'develop' into 2528-move-create-subdao

commit 7b219d8eb9e033f95fca4ad571077e4bf891712f
Author: Kellar <[email protected]>
Date:   Wed Nov 27 14:48:17 2024 +0000

    bugfix

commit 3869ee298c6cabbdc8192dd575059a6dc36553da
Merge: a6a7004c8 9990c1ad1
Author: Kelvin <[email protected]>
Date:   Wed Nov 27 14:47:53 2024 +0000

    Merge branch 'develop' into 2541-compose-gov-copy

commit a6a7004c815bcca1eb36f604454c0d11b6cc79dd
Author: Kellar <[email protected]>
Date:   Wed Nov 27 14:47:07 2024 +0000

    remove redundant tooltips

commit 9990c1ad14989ca70349b7b4b5440d5834868bcc
Merge: 200526bb0 6bb413561
Author: Kelvin <[email protected]>
Date:   Wed Nov 27 14:34:27 2024 +0000

    Merge pull request #2567 from decentdao/2523-safe-home-ux-updates

    `[PRD]` Safe home ux updates

commit 43c8cb87a57a4294d020db53f53a3e79c31d0e95
Merge: b12699200 200526bb0
Author: David Colon <[email protected]>
Date:   Wed Nov 27 09:34:01 2024 -0500

    Merge branch 'develop' into 2522-dashboard-copy-updates

commit 200526bb0e58cda4ea979391b9ec5c99ff72732a
Merge: cb7b22c5c bd30c0e1a
Author: Kelvin <[email protected]>
Date:   Wed Nov 27 14:32:45 2024 +0000

    Merge pull request #2572 from decentdao/2538-update-signers-config

    `[PRD]` Update owner config UI

commit bd30c0e1a21b6e5108a2ffbb8ede2fae45c6167e
Merge: 40a9f65af 349f003b6
Author: Kellar <[email protected]>
Date:   Wed Nov 27 14:25:28 2024 +0000

    Merge branch '2538-update-signers-config' of github.com:decentdao/decent-interface into 2538-update-signers-config

commit 40a9f65afa24c3886ecfc1578bd1fd737768a8f9
Author: Kellar <[email protected]>
Date:   Wed Nov 27 14:25:03 2024 +0000

    Render owners input label at top of growable list

commit ffba621474703a53eb8020bcfb718473549916a3
Merge: 796b30276 cb7b22c5c
Author: David Colon <[email protected]>
Date:   Wed Nov 27 09:19:33 2024 -0500

    Merge branch 'develop' into issue/2479-tie-streams-to-hat

commit 796b30276bc90a40276ea4a1c51c833faef0187d
Author: David Colon <[email protected]>
Date:   Wed Nov 27 09:18:45 2024 -0500

    Refactor roles store to consolidate hat key-value pair data handling

commit 6bb4135618ed8ef652274f08b6d68069601eb698
Merge: 0fb7fefca cb7b22c5c
Author: Kelvin <[email protected]>
Date:   Wed Nov 27 14:04:21 2024 +0000

    Merge branch 'develop' into 2523-safe-home-ux-updates

commit 20eee2db87a663068183d5c61efca218e7078df5
Author: David Colon <[email protected]>
Date:   Wed Nov 27 08:51:54 2024 -0500

    clean up error UI

commit 2c0fdd70d76eac273bcc0203a7a917ab294a7f9f
Merge: 779f296b6 e62aecbc7
Author: David Colon <[email protected]>
Date:   Wed Nov 27 08:27:55 2024 -0500

    Merge branch 'issue/2529-cache-it' into breakout-issue/typing-dao-info

commit 779f296b60bec2c67d03fc4a42ec886cb19bd56a
Author: David Colon <[email protected]>
Date:   Wed Nov 27 08:25:01 2024 -0500

    remove comment, let it ride for now

commit 24fc95af93ab5f139b7e2f7b382c867a4617d10a
Author: David Colon <[email protected]>
Date:   Wed Nov 27 08:12:32 2024 -0500

    refactor: update DaoHierarchyNode to improve data loading and error handling, and adjust type definitions for better clarity

commit b0ec5dbce6b608a4b67d565c0536aea45853d1ae
Author: David Colon <[email protected]>
Date:   Wed Nov 27 08:12:28 2024 -0500

    refactor: enhance useFractalNode to integrate safeAPI and decentModules for improved data handling

commit bd130666772596856c516b9d1aa0f9d21d87bb6d
Author: David Colon <[email protected]>
Date:   Wed Nov 27 08:12:20 2024 -0500

    refactor: remove unused setDecentModules call in useUpdateSafeData hook

commit 1f540b694bcb3a66a674d51218d7a0793b18814d
Author: David Colon <[email protected]>
Date:   Wed Nov 27 07:29:36 2024 -0500

    refactor: update useDaoInfoStore to utilize subgraphInfo and adjust related components for improved data handling

commit e62aecbc7ccb122630c1f6df9225234ccdbe7eeb
Author: David Colon <[email protected]>
Date:   Tue Nov 26 16:30:59 2024 -0500

    refactor: simplify props structure in DAONodeInfoCard component

commit 3c35f8466883211da65daeb8277b7ccc1edef17f
Author: David Colon <[email protected]>
Date:   Tue Nov 26 16:28:44 2024 -0500

    remove duplicate link component

commit 717441cc27e710a42a6c040746a13434c9568486
Merge: 14e2233ac cb7b22c5c
Author: Kyrylo Klymenko <[email protected]>
Date:   Tue Nov 26 20:33:36 2024 +0100

    Merge branch 'develop' into 2528-move-create-subdao

commit 349f003b6195c7d8816f2c4fe6cd79938499da20
Merge: e93680732 cb7b22c5c
Author: Kyrylo Klymenko <[email protected]>
Date:   Tue Nov 26 20:32:49 2024 +0100

    Merge branch 'develop' into 2538-update-signers-config

commit b126992006e9a47857aed8cb8e8e6f8f1d6fcc67
Merge: ea981620e cb7b22c5c
Author: Kyrylo Klymenko <[email protected]>
Date:   Tue Nov 26 20:21:13 2024 +0100

    Merge branch 'develop' into 2522-dashboard-copy-updates

commit cb7b22c5ce954ec5ecd4d4840a5be2764a2644c3
Merge: 92b9b880b 6334e1448
Author: Kyrylo Klymenko <[email protected]>
Date:   Tue Nov 26 20:20:55 2024 +0100

    Merge pull request #2547 from decentdao/2520-reorder-nav

    `[PRD]` Re-order nav links, remove proposal links

commit 14e2233ac55a40319f02cecbd2495b8730f5cb35
Author: Kellar <[email protected]>
Date:   Tue Nov 26 15:54:45 2024 +0000

    Move create subdao to organisations page

commit e9368073255d366be03c0b7d5ded364844731db6
Author: Kellar <[email protected]>
Date:   Tue Nov 26 15:04:52 2024 +0000

    Update owner config UI

commit d65b2c8315187f4a870e568191cec76db2fbe1b3
Author: Kellar <[email protected]>
Date:   Tue Nov 26 12:09:40 2024 +0000

    Add lilac ExternalLink style variant (to update tooltip style)

commit 0ca063ceb5d9b89adc7c406fb99988e2723958cd
Author: David Colon <[email protected]>
Date:   Tue Nov 26 07:07:01 2024 -0500

    refactor: rename fractalModules to daoModules and update related references across components and hooks

commit 3582df25c8a75c5624132b9cb50a614d80eaeb57
Author: David Colon <[email protected]>
Date:   Tue Nov 26 07:06:56 2024 -0500

    refactor: update useFractalNode to use subgraph queries and improve DAO data handling

commit ebe87c19cc461441c26263b654f2e97a04703e15
Author: David Colon <[email protected]>
Date:   Tue Nov 26 07:06:34 2024 -0500

    refactor: remove unused hooks related to Fractal modules and DAO loading

commit a70e4ec13bff29bbf4cea6bbd5b9038dee0893ae
Merge: ab9d19fff 92b9b880b
Author: Kellar <[email protected]>
Date:   Tue Nov 26 11:44:02 2024 +0000

    Merge remote-tracking branch 'decentdao/develop' into 2541-compose-gov-copy

commit ab9d19fffe6169f491255899c455f52ea7105723
Author: Kellar <[email protected]>
Date:   Tue Nov 26 11:39:31 2024 +0000

    Add validation for executionPeriod, with minimum 1 minute

commit 9768377da789b12212a9d7a04972cd36151d370b
Author: Kellar <[email protected]>
Date:   Tue Nov 26 11:39:10 2024 +0000

    Make LabelComponent's label white, as per design

commit 50af72562928c3c38b52fa58bf463df462bbef24
Author: Kellar <[email protected]>
Date:   Tue Nov 26 11:38:49 2024 +0000

    Extract, use DayStepperInput for tomelock & execution periods

commit 2da8579ed951985e0ecb70887d0aa11426e09b8a
Author: Kellar <[email protected]>
Date:   Tue Nov 26 11:38:10 2024 +0000

    Use translation, remove log

commit 68b4ed19e9855ca70e6e31f174967ff394acefa9
Author: Kellar <[email protected]>
Date:   Tue Nov 26 11:21:53 2024 +0000

    Bug fixes; add min voting period validation of 1 min

commit b2674cb6002241b41a21c49955be402658c5b912
Author: Kellar <[email protected]>
Date:   Tue Nov 26 11:21:01 2024 +0000

    Update voting period UI

commit 7fa5c292273bfb04dfa763d26fc43328c7f840f4
Author: David Colon <[email protected]>
Date:   Tue Nov 26 03:08:28 2024 -0500

    refactor: replace nodeHierarchy with subgraphInfo in DAO components and hooks

commit 638640e2411cb97f79b54fbbd0e9b68e3e25adbc
Author: David Colon <[email protected]>
Date:   Tue Nov 26 03:05:05 2024 -0500

    refactor: update DAOInfo structure and improve type handling in SafeController

commit 5707413d9010f73c10da1b9ee60733f3c9bebf81
Author: David Colon <[email protected]>
Date:   Tue Nov 26 03:04:59 2024 -0500

    add new DAOInfo typing

commit ea981620eaac3e6cf8bc7d9831ca0a683b17d5ab
Author: Kellar <[email protected]>
Date:   Mon Nov 25 11:20:44 2024 +0000

    Change "executed" -> "passed"

commit 0fb7fefca68eff9019fb449f157d610ebe2afe27
Author: Kellar <[email protected]>
Date:   Mon Nov 25 10:53:02 2024 +0000

    Fix mobile delegate, create buttons UI

commit b5796ac728d2e1912948d03dd754d6a0622c0730
Merge: c0f69d9e4 92b9b880b
Author: Kellar <[email protected]>
Date:   Mon Nov 25 10:46:25 2024 +0000

    Merge remote-tracking branch 'decentdao/develop' into 2523-safe-home-ux-updates

commit c0f69d9e42a1840153d8f011e08ea86d05e87df7
Author: Kellar <[email protected]>
Date:   Thu Nov 21 16:11:30 2024 +0000

    Remove add child dao option from dao menu

commit 9c71097b8d20ee03ebcf324fafdb59114bd620ac
Author: Kellar <[email protected]>
Date:   Thu Nov 21 16:05:50 2024 +0000

    copy updates

commit 66fffe24b5e0987bd304cfb912e7601ebbc96fad
Author: Kellar <[email protected]>
Date:   Thu Nov 21 16:05:41 2024 +0000

    Update grey external link variant style

commit d038852f3e4ef51e03486494e3e554810d0a38a5
Author: David Colon <[email protected]>
Date:   Sun Nov 24 00:18:55 2024 -0500

    switch up logic to allow multiple streams per hat to be stored

commit a7e410aa12365b7ebc4d24ff600e10f742db65b7
Author: David Colon <[email protected]>
Date:   Sat Nov 23 13:12:09 2024 -0500

    remove break out

commit 55a4cd4976e87554d885dad37cb141351e84df3c
Author: David Colon <[email protected]>
Date:   Sat Nov 23 10:22:22 2024 -0500

    add cache version

commit 232a875f996a60dc3bb1d80f54474cd7dcf710ae
Merge: ef1262149 92b9b880b
Author: David Colon <[email protected]>
Date:   Fri Nov 22 17:35:17 2024 -0500

    Merge branch 'develop' into issue/2529-cache-it

commit 47cf0bedf3ed92db7459be77c71dffa85e9d7f98
Author: David Colon <[email protected]>
Date:   Fri Nov 22 17:28:38 2024 -0500

    do not save to store

commit 8f787b67451a33d601a68ac6a087c4181d098188
Author: David Colon <[email protected]>
Date:   Fri Nov 22 16:19:43 2024 -0500

    let it just be the start of day selected

commit 92b9b880b8a699049bc27d1bca192d55cbdee327
Merge: 023fc6b4c a8ebdf3a9
Author: Adam Gall <[email protected]>
Date:   Fri Nov 22 15:40:00 2024 -0500

    Merge pull request #2568 from decentdao/remove-unused-dependencies

    Remove unused dependencies from package.json

commit c0977194b65188ac58d8bac460cc352ae9fcc209
Author: Kelvin <[email protected]>
Date:   Fri Nov 22 19:00:34 2024 +0000

    idk what I'm doing I'm bliiiind. Hoping this'll stretch the buttons out

commit d25692ddb088d1edf889ab2fa15818dead135f6c
Author: Kelvin <[email protected]>
Date:   Fri Nov 22 18:51:55 2024 +0000

    remove some vertical margins

commit 53e54fa941de9b89725ddaef65a146adac9e75b1
Author: Kelvin <[email protected]>
Date:   Fri Nov 22 18:29:40 2024 +0000

    Add mobile versions of create and delegate btns. No idea how this'll look lol let's see

commit c1400a5022184c69afd108211668f88da25e0aea
Author: Kelvin <[email protected]>
Date:   Fri Nov 22 18:29:09 2024 +0000

    update delegate, create button sizes

commit 3633ae31a5913235f118bc8185389a2b2d163390
Author: Kelvin <[email protected]>
Date:   Fri Nov 22 18:09:27 2024 +0000

    hopefully fix copy

commit f58104119b2c6a55f22c316d1fa2af6173e32e0a
Author: Kelvin <[email protected]>
Date:   Fri Nov 22 17:56:43 2024 +0000

    Redirect to home page after proposal create success

commit a8ebdf3a9c999717fcfa90a6745033fca6a98108
Author: Adam Gall <[email protected]>
Date:   Fri Nov 22 11:26:19 2024 -0500

    Remove unused dependencies from package.json

commit 023fc6b4c15ec582932bce2e2310ff6d878b805f
Merge: d2f7c1a53 abdfed8e5
Author: Adam Gall <[email protected]>
Date:   Fri Nov 22 10:56:55 2024 -0500

    Merge pull request #2561 from decentdao/safe-view-settings-updates

    Issue 2560 - Safe View/Settings Updates

commit d2f7c1a53f49d2d8d937a69f4fa367f844c5c97d
Merge: df11cc96b 1e7692d33
Author: Adam Gall <[email protected]>
Date:   Fri Nov 22 10:55:46 2024 -0500

    Merge pull request #2550 from decentdao/remove-voting-weight-from-readonlyvalues

    Remove voting weight from `readOnlyValues`

commit ef1262149a8f5df034c62373f01b45a8a81d61f6
Author: David Colon <[email protected]>
Date:   Fri Nov 22 10:38:28 2024 -0500

    Refactor DaoHierarchyNode to use transformNode function for improved data handling and update DaoHierarchyInfo type structure

commit 6334e144812196249c2818ac4b09051bc322cd9d
Merge: c13fb09b0 df11cc96b
Author: Kelvin <[email protected]>
Date:   Fri Nov 22 15:36:10 2024 +0000

    Merge branch 'develop' into 2520-reorder-nav

commit 4ecf833b72fc774c0eb6007e7e63b643b112e4d3
Merge: 2527c15da df11cc96b
Author: Kelvin <[email protected]>
Date:   Fri Nov 22 15:30:20 2024 +0000

    Merge branch 'develop' into 2523-safe-home-ux-updates

commit d882324cc735fbbc1b6447d0f632aa14c0e8c7b5
Merge: 31bb81d2c df11cc96b
Author: David Colon <[email protected]>
Date:   Fri Nov 22 10:23:50 2024 -0500

    Merge branch 'develop' into issue/2529-cache-it

commit 31bb81d2c397b61f4172f3419683ed73070790ef
Author: David Colon <[email protected]>
Date:   Fri Nov 22 10:23:03 2024 -0500

    Refactor DaoHierarchyNode to use DaoHierarchyInfo type and update caching structure

commit 2527c15da4ee3706136aa417056c7857982d162b
Author: Kelvin <[email protected]>
Date:   Fri Nov 22 15:21:01 2024 +0000

    cleanup

commit df11cc96b71d2f75bf769e323e2d84335d471237
Merge: 59d57d438 90e2b1338
Author: David Colon <[email protected]>
Date:   Fri Nov 22 10:17:31 2024 -0500

    Merge pull request #2564 from decentdao/issue/2563-role-schema-uncaught-error

    `[Issue #2563]` Schema uncaught error

commit 3e86f59dac7b62fd97d139dfd3322ba9d368a145
Author: David Colon <[email protected]>
Date:   Fri Nov 22 09:59:36 2024 -0500

    Add getTermedPaymentStreams function for improved payment stream filtering

commit 254745fa9d2312d06b21e56ac9e8f452bf2f5aca
Author: Kelvin <[email protected]>
Date:   Fri Nov 22 14:50:34 2024 +0000

    Remove unused file

commit cfbc762585dffa9e59198a057fbceef23d6fdb54
Author: Kelvin <[email protected]>
Date:   Fri Nov 22 14:50:08 2024 +0000

    Add delegate and create proposal buttons

commit c1b1e752db11f72ce51794ec97b69998a0a5377d
Author: David Colon <[email protected]>
Date:   Fri Nov 22 09:46:23 2024 -0500

    Rename variable foundStreamIDs to assignedStreamed for clarity in useHatsTree hook

commit fa66a844876626a1f92e8c14890bce7810da6287
Author: David Colon <[email protected]>
Date:   Fri Nov 22 09:41:59 2024 -0500

    EOL pretty fix

commit abdfed8e51e24838ce198ab829afecd0357b72b3
Author: Adam Gall <[email protected]>
Date:   Fri Nov 22 09:33:51 2024 -0500

    One-off update to automatic chain switching error message

commit e1f6b55d2229ee3de13a88a3c4676816f177453a
Author: David Colon <[email protected]>
Date:   Fri Nov 22 09:27:20 2024 -0500

    Update @fractal-framework/fractal-contracts to version 1.4.2 in package.json and package-lock.json

commit 7696e74a0a584d5f54bb51e940963b3d647b93ed
Author: David Colon <[email protected]>
Date:   Fri Nov 22 09:19:11 2024 -0500

    Implement caching for DAO hierarchy nodes to enhance performance and reduce API calls

commit 7e54387b19ebaa4facf3afd9f4a70b46b9c28c83
Author: David Colon <[email protected]>
Date:   Fri Nov 22 08:52:09 2024 -0500

    Add HierarchyDAOInfo cache key and interface for improved caching structure

commit e8d882f8a720747397d2ab54a1cd7f92a471bfde
Author: David Colon <[email protected]>
Date:   Fri Nov 22 08:52:05 2024 -0500

    Refactor DaoHierarchyNode and DAONodeInfoCard components for improved state management and loading handling

commit e823490a45a9726c7644d245fef2f62f71cb459a
Author: Kelvin <[email protected]>
Date:   Fri Nov 22 13:25:20 2024 +0000

    Add filter options to ProposalsHome

commit 465dfc6dd6182afd5e1d642c02b1164e4246c5cd
Author: Kelvin <[email protected]>
Date:   Fri Nov 22 12:59:35 2024 +0000

    Rename `Activities` -> `ProposalsHome`
    Add some WIP code
    Replace proposal rendering code with call to `ProposalsList` component
    Have it make use of proposals from `useProposalsSortedAndFiltered`

commit e3301a4823aa548ca732e051df90a5aa805d8e26
Author: Kelvin <[email protected]>
Date:   Fri Nov 22 12:49:46 2024 +0000

    Match ProposalList code with that in "activities"

commit 90e2b1338ca08c59f42409cfaef83ffea64ce196
Author: David Colon <[email protected]>
Date:   Thu Nov 21 20:18:06 2024 -0500

    Fix undefined values in useRolesSchema by safely accessing context array elements

commit ec160ec5d4719fcbcc972cb342617d2436612420
Author: David Colon <[email protected]>
Date:   Thu Nov 21 20:14:47 2024 -0500

    DatePicker is selected at the current 'time'

commit 2d0c14a53e38631834a0b52e49ee64f8e0a03151
Author: David Colon <[email protected]>
Date:   Thu Nov 21 18:37:16 2024 -0500

    Integrate hatIdsToStreamIds into useHatsTree for filtering payment streams

commit 31cd3f6f37bf3f6ab94d691dc3aab1062d22a7df
Author: David Colon <[email protected]>
Date:   Thu Nov 21 18:36:48 2024 -0500

    Add getHatIdsToStreamIds function and integrate with useKeyValuePairs hook

commit ad895d8b41db8cf1a049b35db71d01faa3faec94
Author: David Colon <[email protected]>
Date:   Thu Nov 21 18:36:11 2024 -0500

    Add hatIdsToStreamIds to RolesStoreData and update interface methods

commit 59d57d438862041d924e4db051e827cbad0ed21b
Merge: 6a63b836f badc31b8a
Author: Adam Gall <[email protected]>
Date:   Thu Nov 21 11:59:45 2024 -0500

    Merge pull request #2559 from decentdao/cache-favorite-names

    Cache favorite names

commit badc31b8ad32593ed4231323d93b80ba6247c18d
Merge: e4142837b 6a63b836f
Author: Adam Gall <[email protected]>
Date:   Thu Nov 21 11:53:46 2024 -0500

    Merge branch 'develop' into cache-favorite-names

commit e4142837b0a5fe8c05b249943c7813e6f718b865
Author: Adam Gall <[email protected]>
Date:   Thu Nov 21 11:52:36 2024 -0500

    Use variable not string

commit f6bda78887d1d9ee433bb47234d1f6ff6639e5ca
Author: Adam Gall <[email protected]>
Date:   Thu Nov 21 11:27:06 2024 -0500

    Single propose button, updated copy, conditional "snapshot" copy

commit 43860e76fa7f084a47d97da2a071278a0279cf84
Author: Adam Gall <[email protected]>
Date:   Thu Nov 21 10:51:17 2024 -0500

    Update some strings from Safe to DAO within Favorites/Search

commit 6a63b836f5b6c305d24b84387619a133b545216e
Merge: 9bff8e954 69c739dab
Author: Kelvin <[email protected]>
Date:   Thu Nov 21 14:12:10 2024 +0000

    Merge pull request #2558 from decentdao/2536-create-safe-copy

    2536 create safe copy

commit 9f05daa22a16d3f73224ee849227d00965dbea9d
Author: Adam Gall <[email protected]>
Date:   Thu Nov 21 08:57:49 2024 -0500

    Separate SafeMenuItemProps and SafeDisplayRowProps, because an 'undefined' name only makes sense in one of those cases

commit f332c375b299a9bcde3e04e7b602f9af0fc8ab28
Author: Adam Gall <[email protected]>
Date:   Thu Nov 21 08:52:32 2024 -0500

    Move where error is thrown

commit 974548c96d656f6e581b762ad2da6675a2a9406a
Author: Adam Gall <[email protected]>
Date:   Thu Nov 21 08:47:29 2024 -0500

    Only create at most one public client per network

commit 69c739dab4c7ccef4f665efba3e75edf7f7cf7a2
Merge: 5b0fbcb68 9bff8e954
Author: Kelvin <[email protected]>
Date:   Thu Nov 21 13:07:05 2024 +0000

    Merge branch 'develop' into 2536-create-safe-copy

commit 9bff8e95401e3f5c39421cf007003e89428c23b2
Merge: 8473cbdd4 7b108c126
Author: Kelvin <[email protected]>
Date:   Thu Nov 21 13:03:28 2024 +0000

    Merge pull request #2556 from decentdao/2537-ens-validation

    2537 create safe ens validation

commit 8473cbdd4f3352f7ea8454f90e4a826c5a602e57
Merge: b4598a31c d99657374
Author: Kelvin <[email protected]>
Date:   Thu Nov 21 13:01:38 2024 +0000

    Merge pull request #2555 from decentdao/2539-config-safe-copy

    Update multisig config copy

commit 7d2add8d2c397c1513f9b9b9ec85f69d6e271f59
Author: Adam Gall <[email protected]>
Date:   Wed Nov 20 20:51:20 2024 -0500

    Add "isFavorite" function to useFavorites hook, make FavoriteIcon dumber

commit d99657374ed66c782d25d2c4a8c4a1784aacf575
Author: Kellar <[email protected]>
Date:   Wed Nov 20 21:55:18 2024 +0000

    more copy updates

commit 5946134c400ffe3cc8d7dc8569cdcf0ea58acae8
Author: Kellar <[email protected]>
Date:   Wed Nov 20 21:43:59 2024 +0000

    update owner count helper copy

commit 7b108c1267c9b3ab77dbfa4a51e6e27b546ff7d9
Author: Kellar <[email protected]>
Date:   Wed Nov 20 21:30:00 2024 +0000

    Nice try slipping in lol. This is why we have foolproof PR reviews

commit 5b0fbcb68d8bd39dae2068868315a429eb6ab12f
Author: Kellar <[email protected]>
Date:   Wed Nov 20 21:25:08 2024 +0000

    Add style variant to ExternalLink for kwik update to tooltip link look

commit b4598a31c87736e729a07059b32c3ed0cfa62d74
Merge: b08b20d77 9b1100453
Author: Adam Gall <[email protected]>
Date:   Wed Nov 20 16:24:39 2024 -0500

    Merge pull request #2554 from decentdao/2543-update-logo

    update decent logo

commit d8d56c1add0edc4fa10fa64ec36c3f43d87ebe42
Author: Kellar <[email protected]>
Date:   Wed Nov 20 21:22:55 2024 +0000

    Sneak in made with love hover update to merged PR

commit 38a1ff0afbbd261196b75f9752f93c756f44b7b1
Author: Kellar <[email protected]>
Date:   Wed Nov 20 21:07:19 2024 +0000

    Sneak in another copy update on merged PR

commit db76cc66c510abd797dfed22e79acb3b97831927
Author: Kellar <[email protected]>
Date:   Wed Nov 20 21:04:53 2024 +0000

    Sneak copy update from merged PR in here

commit 0f3ea8a336ae55ebdf22735d08033173955eedd0
Merge: fc735f535 b08b20d77
Author: Kellar <[email protected]>
Date:   Wed Nov 20 21:00:59 2024 +0000

    Merge branch 'develop' into 2536-create-safe-copy

commit fc735f5359d137f0ce501bbcc39e4eb5e77f7612
Author: Kellar <[email protected]>
Date:   Wed Nov 20 11:22:30 2024 +0000

    Remove spacing between required label and star

commit 7e54c86347c71b4b786cfdd57d777eee45895138
Author: Adam Gall <[email protected]>
Date:   Wed Nov 20 15:58:01 2024 -0500

    Migrate favorites to include the Dao Name

commit b08b20d774cc748307769ff7e708c76b7d6ff3ea
Merge: 70e593180 dd4cf7d7c
Author: Kelvin <[email protected]>
Date:   Wed Nov 20 20:57:01 2024 +0000

    Merge pull request #2553 from decentdao/2540-config-token-copy

    Update configure token copy

commit 40f2e363a851532d4fab665130e0328ed4476b19
Author: Kellar <[email protected]>
Date:   Wed Nov 20 20:52:53 2024 +0000

    Reorder DAO type radio list

commit 8ca4d07f22c63e2aed5a4d72643bda335e5aa0ad
Author: Kellar <[email protected]>
Date:   Wed Nov 20 20:52:24 2024 +0000

    copy update

commit 78ab68de982b0e883fed8acec9bdada424da442d
Author: Adam Gall <[email protected]>
Date:   Wed Nov 20 15:46:13 2024 -0500

    Allow "getSafeName" function to be called outside context of hook

commit ea2eeae1dbe54ef0e6fcb3e2e252c42f3d35d59b
Author: Kellar <[email protected]>
Date:   Wed Nov 20 20:00:15 2024 +0000

    Fix jumpy wonkiness when input error appears

commit 1b46dfaf1e86e39091cb3e9f0abf9f2224a2f3fe
Author: Kellar <[email protected]>
Date:   Wed Nov 20 19:40:46 2024 +0000

    Add debounce to create safe ENS validation

commit 56db257007a2d4137c43c8b1cbe2b6993ffe24b0
Author: Kellar <[email protected]>
Date:   Wed Nov 20 18:47:11 2024 +0000

    update error copy

commit 3244fd6ca22d39d88fde3c722d28762476e01de3
Author: Kellar <[email protected]>
Date:   Wed Nov 20 18:40:44 2024 +0000

    Update multisig config copy

commit 9b1100453ff699632fab43c145001e9956cd5537
Author: Kellar <[email protected]>
Date:   Wed Nov 20 18:28:26 2024 +0000

    update decent signature

commit b348afdb34834691ff59df79a35e2dbe0cf5cd23
Author: Kellar <[email protected]>
Date:   Wed Nov 20 18:26:43 2024 +0000

    update "d" decent logo

commit 7233e8b00e71505300878d39bbc65808e8c31788
Author: Adam Gall <[email protected]>
Date:   Wed Nov 20 13:25:49 2024 -0500

    Add optional "specificVersion" prop to `getValue`

commit d681047e3494aa14d2c1743acfe0d3e63b33b717
Author: Adam Gall <[email protected]>
Date:   Wed Nov 20 13:23:55 2024 -0500

    Make "loading" text neutral in My DAOs dropdown, same as on home page

commit 0a94218337e44589465a046078a33849ef6f9959
Author: Adam Gall <[email protected]>
Date:   Wed Nov 20 13:23:18 2024 -0500

    Create variable for daoName

commit dd4cf7d7ce07d183fe4c0376262429bb154d867f
Author: Kellar <[email protected]>
Date:   Wed Nov 20 17:52:14 2024 +0000

    Make existing token import the default selected option

commit 4595d7995b30629f590459053ccc4467c61b0ee4
Author: Kellar <[email protected]>
Date:   Wed Nov 20 17:45:00 2024 +0000

    Trashcan Icon -> Back button

commit 70e5931800383dd2de0f803818fbbaabafe33750
Merge: 8db4e4ac2 b79984bff
Author: Adam Gall <[email protected]>
Date:   Wed Nov 20 12:37:43 2024 -0500

    Merge pull request #2552 from decentdao/issue/2517-copy-updates

    Issue/2517 copy updates

commit 821fe26e0866a14fc13f4da25355a18a8bcfa859
Author: Kellar <[email protected]>
Date:   Wed Nov 20 15:12:34 2024 +0000

    Improve allocation input error messaging

commit 92701a0d72e18165681edecda4ec225ee75e9bf5
Author: Kellar <[email protected]>
Date:   Wed Nov 20 15:03:13 2024 +0000

    Update bunch of copy on token config form

commit b79984bff507a1e0796d56351cd0bd3c6bb685bb
Author: Adam Gall <[email protected]>
Date:   Wed Nov 20 09:05:11 2024 -0500

    Update meta copy

commit 1ec5e18adf70660624e42ffad435ce3f8d72cf33
Author: Adam Gall <[email protected]>
Date:   Wed Nov 20 09:04:11 2024 -0500

    Undo changes not related to the issue this PR addresses

commit 1054803ca7ce3a58f2966f834507f66d0789297c
Author: David Colon <[email protected]>
Date:   Wed Nov 20 09:00:04 2024 -0500

    “Safe Name” => “DAO Name”

commit 6bd3b1f80c8119e3a848c0a1e9814721807c2565
Author: David Colon <[email protected]>
Date:   Wed Nov 20 09:00:03 2024 -0500

    rename page to "Home"

commit d46fdaeb6012c35d93010aec0876ae4363188261
Author: David Colon <[email protected]>
Date:   Wed Nov 20 09:00:03 2024 -0500

    "Create Safe" ➞ "Create DAO"

commit 8db4e4ac2f5f5cdfac3192cd4b4e79f35c22073d
Merge: 6ed405c70 cb40c4937
Author: Adam Gall <[email protected]>
Date:   Wed Nov 20 08:56:31 2024 -0500

    Merge pull request #2551 from decentdao/2542-global-copy

    Global copy updates

commit 53a1589b1ffd467a183de4581db9985a0b015d8d
Author: Kellar <[email protected]>
Date:   Wed Nov 20 13:24:24 2024 +0000

    update helperNewToken, helperExistingToken copy

commit 2c60918d32f0afc66444d849fb19e202657a19f3
Author: Kellar <[email protected]>
Date:   Wed Nov 20 13:22:48 2024 +0000

    update radioLabelExistingToken copy

commit 0f0e6efefca5e64b1ef2e8f5f887674a5d60e919
Author: Kellar <[email protected]>
Date:   Wed Nov 20 13:20:07 2024 +0000

    remove helperSelectToken

commit 9b854b04f73b75615335df2c4a28b86a58da3e68
Author: Kellar <[email protected]>
Date:   Wed Nov 20 13:19:13 2024 +0000

    Update token supply copy + remove select token helper text + rearrange radio options

commit 9152d47d0f2f265d49b27bad1e32a668546d7842
Author: Kellar <[email protected]>
Date:   Wed Nov 20 13:01:55 2024 +0000

    update titleAzoriusConfig copy

commit cb40c49374e566cecb3a19fc9a289001917999e6
Author: Kellar <[email protected]>
Date:   Wed Nov 20 12:56:28 2024 +0000

    Remove redundant titleFavorites text

commit 45e2275d5cc60b1ec523526daa2bf95874577d69
Author: Kellar <[email protected]>
Date:   Wed Nov 20 12:54:13 2024 +0000

    update favorites label copy

commit e1e30ebefbb58e6f9870a1cbbfd3e9d45211e46b
Author: Kellar <[email protected]>
Date:   Wed Nov 20 12:52:15 2024 +0000

    update 'made with love by decent' copy

commit d9fcb03f82399728770f9f2f5d446705f0a78017
Author: Kellar <[email protected]>
Date:   Wed Nov 20 12:39:54 2024 +0000

    WIP new period input

commit 81dac5482e400efb9dd0b84023d6252271fb8194
Author: Kellar <[email protected]>
Date:   Wed Nov 20 11:48:43 2024 +0000

    remove exampleVotingPeriod ref

commit 491c1388dd87cb0a6c6e8e02cc68fe0b7c53907f
Author: Kellar <[email protected]>
Date:   Wed Nov 20 11:38:42 2024 +0000

    update governanceDescription copy

commit 8c6b3c55acfe441cc3f19f022c9fcd662b617384
Author: Kellar <[email protected]>
Date:   Wed Nov 20 11:37:41 2024 +0000

    remove exampleExecutionPeriod

commit 93c6b03243782b9c6f1f8166751438d22639abff
Author: Kellar <[email protected]>
Date:   Wed Nov 20 11:37:12 2024 +0000

    update helperExecutionPeriod copy

commit 2a111df60a47a45450ea3e3fc5c54f98a70826d3
Author: Kellar <[email protected]>
Date:   Wed Nov 20 11:36:45 2024 +0000

    Remove example helper text from timelock form field

commit 11cc2eb1f93fb9b9cff50f1ef39fd32b0b4c06c7
Author: Kellar <[email protected]>
Date:   Wed Nov 20 11:35:44 2024 +0000

    update helperTimelockPeriod copy

commit 9deee62841e626e77d055b495cd56beb073eddbb
Author: Kellar <[email protected]>
Date:   Wed Nov 20 11:30:29 2024 +0000

    update helperQuorumERC20 copy

commit 04d9584e7a87fff1445d1789ff9068c822487552
Author: Kellar <[email protected]>
Date:   Wed Nov 20 11:27:50 2024 +0000

    Remove helper label on voting period field

commit 3c76ea9a5a333b6df2fedbe66e648fa19ae542f4
Author: Kellar <[email protected]>
Date:   Wed Nov 20 11:22:30 2024 +0000

    Remove spacing between required label and star

commit 5bafc555cb887af7c47a2b9b9b0a70e20d2fb88d
Author: Kellar <[email protected]>
Date:   Wed Nov 20 11:13:43 2024 +0000

    Reorder governanance parameters form fields

commit 2c32aa41b527165ab52f0d4b0b00085c7d3921ff
Author: Kellar <[email protected]>
Date:   Wed Nov 20 11:08:19 2024 +0000

    update titleGovConfig copy

commit 643f9fc5695de2f34f6f64c2931de328e62ca384
Author: Kellar <[email protected]>
Date:   Wed Nov 20 11:08:03 2024 +0000

    Remove proposal setting subtitle

commit 1e7692d335301a93ef04ef400112f43455474cf3
Author: Adam Gall <[email protected]>
Date:   Tue Nov 19 17:09:57 2024 -0500

    Remove now unused lodash.isEqual package

commit ef1fd724fdfc0d7f4451653264791a67ae41cea7
Author: Adam Gall <[email protected]>
Date:   Tue Nov 19 17:09:48 2024 -0500

    Remove the rest of the stuff around readOnlyValues hook and state

commit 7c5ae0443a2ef2a887b8fee11562b54002062f97
Author: Adam Gall <[email protected]>
Date:   Tue Nov 19 17:09:19 2024 -0500

    Replace call to readOnlyValues voting weight with simple safe owners inclusion check in TxActions

commit 2bf3fbe95ba117184b04d9cfb9d32dccc92400e8
Author: Adam Gall <[email protected]>
Date:   Tue Nov 19 17:08:48 2024 -0500

    Add a function to get ERC721 voting weight inside VotesContext and use it instead of data from readOnlyValues

commit 51399f49a5012a10354f5c91b0585db0b43f3263
Author: Adam Gall <[email protected]>
Date:   Tue Nov 19 17:07:27 2024 -0500

    Remove "loadReadOnlyValues" function call from DelegateModal delegation callback, for the reason of it was in the way and who cares

commit efe41c14388327cbaea03c804c06ffa1c69cbb33
Author: Adam Gall <[email protected]>
Date:   Tue Nov 19 17:06:09 2024 -0500

    Remove "refetchUserTokens" optional param from getCanVote function in VoteContext, doesn't seem like it does anything...

commit c13fb09b0125a9301c623a44482b558061e19509
Author: Kellar <[email protected]>
Date:   Tue Nov 19 16:57:09 2024 +0000

    Remove SafeProposalsPage

commit a93b11e16413b625fadbc4ed71c03380ecaa1c2e
Author: Kellar <[email protected]>
Date:   Tue Nov 19 16:25:06 2024 +0000

    Rename dashboard to home

commit c1286f6d3ec223859b26ef25b76c5630d57095ed
Author: Kellar <[email protected]>
Date:   Tue Nov 19 16:11:10 2024 +0000

    Reoder nav links
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

BugFix: Termed Payments
4 participants