Skip to content

Commit

Permalink
Standard multisig UI
Browse files Browse the repository at this point in the history
  • Loading branch information
brickpop committed Oct 1, 2024
1 parent ee082e1 commit 74a39e0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .env.example
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ NEXT_PUBLIC_TOKEN_ADDRESS=0x9A3218197C77F54BB2510FBBcc7Da3A4D2bE0DeE
# Plugin addresses
NEXT_PUBLIC_TOKEN_VOTING_PLUGIN_ADDRESS=0x7AdF2545e746E014887916e476DfCB3Fb57D78b0
NEXT_PUBLIC_LOCK_TO_VOTE_PLUGIN_ADDRESS=
NEXT_PUBLIC_MULTISIG_PLUGIN_ADDRESS=0xf49d54D40A331441536BDF74C44FFb527cf113c9
NEXT_PUBLIC_MULTISIG_PLUGIN_ADDRESS=0xA4371a239D08bfBA6E8894eccf8466C6323A52C3
NEXT_PUBLIC_OPT_MULTISIG_PLUGIN_ADDRESS=0xf49d54D40A331441536BDF74C44FFb527cf113c9
NEXT_PUBLIC_EMERGENCY_MULTISIG_PLUGIN_ADDRESS=0x3abd07A24a39eCEB2a701f3C4A5BBbcb7069460D
NEXT_PUBLIC_DUAL_GOVERNANCE_PLUGIN_ADDRESS=0x31df2Cf73f36732c10523E4F228a458292B8F6DF
NEXT_PUBLIC_PUBLIC_KEY_REGISTRY_CONTRACT_ADDRESS=0x4BA2de07E5B7FB284d363DBb4c481F330c25b2A5
Expand Down
2 changes: 2 additions & 0 deletions plugins/multisig/hooks/useProposalCreatedLogs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ export function useProposalCreatedLogs(proposalId: string) {
args: {
proposalId: BigInt(proposalId),
},
fromBlock: BigInt(0),
toBlock: "latest",
})
.then((logs) => {
if (!logs.length) return;
Expand Down
2 changes: 1 addition & 1 deletion plugins/multisig/pages/proposal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export default function ProposalDetail({ id: proposalId }: { id: string }) {
<BodySection body={proposal.description || "No description was provided"} />
<ProposalVoting
stages={proposalStage}
description="The onchain multisig flow allows its members to create proposals that, if approved, will be moved to the Optimistic Proposal stage."
description="The onchain multisig flow allows its members to create proposals that if approved, can be executed by the DAO."
/>
<ProposalActions actions={proposal.actions} />
</div>
Expand Down

0 comments on commit 74a39e0

Please sign in to comment.