Skip to content

Commit

Permalink
Proposal 5 hack
Browse files Browse the repository at this point in the history
  • Loading branch information
sohai committed Jul 18, 2023
1 parent 0681e3e commit 9851bc6
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 1 deletion.
30 changes: 30 additions & 0 deletions ts/utils/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -275,3 +275,33 @@ Send 22,807 MATIC to 0x698C294d13C38F79466D7Af515E62f8155D409ba
* *this EMA is updated from the original proposal description to accurately reflect the amount of MATIC requested*
` as const;

export const BOARDROOM_GRANT = `
# Z-5 Boardroom Grant
## Summary
This proposal seeks authorization of a $17.5k grant from the treasury to Boardroom.
The community has discussed the merits of the proposal in the governance forum and signaled support for moving forward in a snapshot poll:
1. https://forum.0xprotocol.org/t/grant-request-boardroom-to-support-0x-protocol-governance/3636
2. https://snapshot.org/#/0xgov.eth/proposal/0x95e4748d339fb1979d4ebaa25414abbb821e634b300b5df25c92cedbac7f91bc
## Grant Details
**Amount**: $17.5k in $ZRX
**Price reference**: $ZRX 30-day EMA as of 7/11/2023 = $0.205736 (https://www.tradingview.com/symbols/ZRXUSD/technicals/?exchange=COINBASE)
**Receiving address**: 0x6b27E26dc09d9c9FD9527526f79C9c8C659d1761
## Proposal Details
See detailed explanation at https://forum.0xprotocol.org/t/grant-request-boardroom-to-support-0x-protocol-governance/3636
## Action Required
Send 85,060.5 ZRX to 0x6b27E26dc09d9c9FD9527526f79C9c8C659d1761
` as const
3 changes: 2 additions & 1 deletion ts/utils/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import {
TokenState,
} from 'ts/types';
import { ALCHEMY_API_KEY, configs } from 'ts/utils/configs';
import { constants, PURPLE_PAY_OVERRIDE, PURPLE_PAY_OVERRIDE_2 } from 'ts/utils/constants';
import { BOARDROOM_GRANT, constants, PURPLE_PAY_OVERRIDE, PURPLE_PAY_OVERRIDE_2 } from 'ts/utils/constants';
import { environments } from 'ts/utils/environments';
import * as u2f from 'ts/vendor/u2f_api';

Expand Down Expand Up @@ -709,6 +709,7 @@ export const hacks = {
getFormatOverride(proposalId: string): string | null {
if (proposalId === '3') return PURPLE_PAY_OVERRIDE;
if (proposalId === '4') return PURPLE_PAY_OVERRIDE_2;
if (proposalId === '5') return BOARDROOM_GRANT;
return null;
},
};

1 comment on commit 9851bc6

@vercel
Copy link

@vercel vercel bot commented on 9851bc6 Jul 18, 2023

Choose a reason for hiding this comment

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

Please sign in to comment.