Add FV specs for Ownable and Ownable2Steps (#4094)
Co-authored-by: Santiago Palladino <spalladino@gmail.com> Co-authored-by: Francisco <fg@frang.io>
This commit is contained in:
5
certora/specs/methods/IOwnable.spec
Normal file
5
certora/specs/methods/IOwnable.spec
Normal file
@ -0,0 +1,5 @@
|
||||
methods {
|
||||
owner() returns (address) envfree
|
||||
transferOwnership(address)
|
||||
renounceOwnership()
|
||||
}
|
||||
7
certora/specs/methods/IOwnable2Step.spec
Normal file
7
certora/specs/methods/IOwnable2Step.spec
Normal file
@ -0,0 +1,7 @@
|
||||
methods {
|
||||
owner() returns (address) envfree
|
||||
pendingOwner() returns (address) envfree
|
||||
transferOwnership(address)
|
||||
acceptOwnership()
|
||||
renounceOwnership()
|
||||
}
|
||||
Reference in New Issue
Block a user