-
Notifications
You must be signed in to change notification settings - Fork 0
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
[PT: 2] FPS Import - Template Proposal #19
Conversation
Signed-off-by: Elliot <[email protected]>
@@ -0,0 +1,2 @@ | |||
[runs] | |||
tasks = ["task1", "task2", "task3"] |
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.
delete this example file
/// make the DEPUTY_GUARDIAN a module of the Guardian safe | ||
bytes32 deputyGuardianModuleSlot = | ||
keccak256(abi.encode(addresses.getAddress("DEPUTY_GUARDIAN", chainId), uint256(1))); | ||
|
||
vm.store( | ||
addresses.getAddress("Guardian", chainId), | ||
deputyGuardianModuleSlot, | ||
bytes32(uint256(uint160(addresses.getAddress("DEPUTY_GUARDIAN", chainId)))) | ||
); | ||
} |
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.
investigate this
/// @param _gameType The type of the DisputeGame. | ||
/// @param _impl The implementation contract for the given `GameType`. | ||
function setImplementation(uint32 _gameType, address _impl) external; | ||
} |
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.
remove and import from bedrock submodule
Start creating task template framework ethereum-optimism#398