-
Notifications
You must be signed in to change notification settings - Fork 5.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(governance): modal bugs, redable styles, show common names for co…
…ntracts (#1164) * fix modal bugs, reable styles, show common names for contracts * use theme for blue
- Loading branch information
Showing
6 changed files
with
52 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,6 +34,12 @@ export const UNI: { [chainId in ChainId]: Token } = { | |
[ChainId.KOVAN]: new Token(ChainId.KOVAN, UNI_ADDRESS, 18, 'UNI', 'Uniswap') | ||
} | ||
|
||
export const COMMON_CONTRACT_NAMES: { [address: string]: string } = { | ||
'0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984': 'UNI', | ||
This comment has been minimized.
Sorry, something went wrong. |
||
'0x5e4be8Bc9637f0EAA1A755019e06A68ce081D58F': 'Governance Alpha', | ||
'0x1a9C8182C09F50C8318d769245beA52c32BE35BC': 'Timelock' | ||
This comment has been minimized.
Sorry, something went wrong.
NoahZinsmeister
Contributor
|
||
} | ||
|
||
// TODO: specify merkle distributor for mainnet | ||
export const MERKLE_DISTRIBUTOR_ADDRESS: { [chainId in ChainId]?: string } = { | ||
[ChainId.MAINNET]: '0x090D4613473dEE047c3f2706764f49E0821D256e' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -192,6 +192,10 @@ body { | |
padding: 0; | ||
} | ||
a { | ||
color: ${colors(false).blue1}; | ||
} | ||
* { | ||
box-sizing: border-box; | ||
} | ||
|
1 comment
on commit 9c47327
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Successfully deployed to the following URLs:
can we use the hardcoded constants for these addresses instead?