mirror of https://github.com/crytic/slither
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
396 B
17 lines
396 B
2 years ago
|
pragma solidity ^0.8.0;
|
||
|
|
||
|
interface IMock {
|
||
|
event Event1();
|
||
|
event Event2(address);
|
||
|
event Event3(uint256, uint72);
|
||
|
enum Status { Active, Pending, Canceled }
|
||
|
struct Foo {
|
||
|
uint256 bar;
|
||
|
address baz;
|
||
|
}
|
||
|
function foo() external returns (Foo memory);
|
||
|
function status() external returns (Status);
|
||
|
function function1() external pure returns (address);
|
||
|
}
|
||
|
|