mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-20 12:56:20 +00:00
11 lines
205 B
Solidity
11 lines
205 B
Solidity
|
pragma solidity >=0.4.22 <0.8.0;
|
||
|
|
||
|
contract Example {
|
||
|
event Test(string param1, uint param2);
|
||
|
|
||
|
function getMethod() public view virtual returns (string memory)
|
||
|
{
|
||
|
return 'test';
|
||
|
}
|
||
|
}
|