Skip to content

Commit 82d2460

Browse files
authored
Merge pull request #2 from OriginProtocol/claude/fix-proposal-link-id-9c0d9
Convert proposal ID to hex format in governance links
2 parents 32086ce + 9283e8b commit 82d2460

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/notify/event/renderers/default.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export const defaultEventRenderer = registerEventRenderer(
5959
// Governance link
6060
let description: string | undefined
6161
if (data && 'proposalId' in data && log.address === OGN_GOVERNANCE_ADDRESS) {
62-
const proposalUrl = `https://originprotocol.eth.limo/#/more/1:${OGN_GOVERNANCE_ADDRESS}:${data.proposalId}`
62+
const proposalUrl = `https://app.originprotocol.com/#/ogn/governance/1:${OGN_GOVERNANCE_ADDRESS}:${data.proposalId}`
6363
description = `[View Proposal](${proposalUrl})`
6464
}
6565

0 commit comments

Comments
 (0)