-
Notifications
You must be signed in to change notification settings - Fork 18
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
Add upgradable tokens and proxy #70
Conversation
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.
going to want to remove all the it.only
in tests, otherwise, looks good
contracts/Baal.sol
Outdated
IBaalToken(_lootSingleton).setUp.selector, | ||
string(abi.encodePacked(_name, " LOOT")), | ||
string(abi.encodePacked(_symbol, "-LOOT"))) | ||
))); |
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.
wondering about this part here -- we did add dynamic names in the setup of the LootTokens
https://github.com/HausDAO/Baal/blob/feat/baalZodiac/contracts/LootERC20.sol#L29-L33
i know these are templates but would it make more sense to also pass the _name/_symbol
here?
test/BaalSafe.test.ts
Outdated
@@ -489,7 +492,7 @@ describe("Baal contract", function () { | |||
}); | |||
|
|||
describe("constructor", function () { | |||
it("verify deployment parameters", async function () { | |||
it.only("verify deployment parameters", async function () { |
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.
going to want to remove this
dekan - adds proxies