23 lines
517 B
Solidity
23 lines
517 B
Solidity
|
pragma solidity >=0.4.24;
|
||
|
|
||
|
contract SimpleStorage {
|
||
|
|
||
|
event ValueChanged(address indexed author, string oldValue, string newValue);
|
||
|
|
||
|
string _value;
|
||
|
|
||
|
constructor(string memory value) public {
|
||
|
emit ValueChanged(msg.sender, _value, value);
|
||
|
_value = value;
|
||
|
}
|
||
|
|
||
|
function getValue() view public returns (string memory) {
|
||
|
return _value;
|
||
|
}
|
||
|
|
||
|
function setValue(string memory value) public {
|
||
|
emit ValueChanged(msg.sender, _value, value);
|
||
|
_value = value;
|
||
|
}
|
||
|
}
|