-
Notifications
You must be signed in to change notification settings - Fork 2
[WIP] feat: init impl for AssetListingStewards scripts/tests #2
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
base: main
Are you sure you want to change the base?
Conversation
| function GUARDIAN() public virtual returns (address) { | ||
| return HorizonAddresses.HORIZON_ADVANCED_MULTISIG; | ||
| } | ||
| function PAYLOADS_MANAGER() public virtual returns (address) { | ||
| return HorizonAddresses.HORIZON_ADVANCED_MULTISIG; | ||
| } | ||
| function PERMISSIONED_EXECUTOR() public virtual returns (address) { | ||
| return HorizonAddresses.EXECUTOR; | ||
| } |
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.
why are they public? i think these can be internal, or completely removed
|
|
||
| function run(address proxyFactory) public { | ||
| vm.startBroadcast(); | ||
| _execute(proxyFactory); |
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.
we can set the proxy factory to use in a constant
| proxyFactory | ||
| ).createDeterministic( | ||
| permissionedPayloadsControllerImpl, | ||
| PERMISSIONED_EXECUTOR(), // owner of proxy that will be deployed |
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.
better to deploy a proxy admin contract. This proxy factory does not do it, but other versions do
| { | ||
| return | ||
| IEngine.PoolContext({ | ||
| networkName: 'Horizon RWA', |
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.
do we need Aave here? Aave Horizon RWA
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.
i'll double check and match w whatever Alex has for phase1
| ACLManager(ACL_MANAGER).renounceRole(RISK_ADMIN_ROLE, address(this)); | ||
| ACLManager(ACL_MANAGER).renounceRole( |
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.
to be removed
No description provided.