23 lines
515 B
Solidity
23 lines
515 B
Solidity
pragma solidity ^0.6.6;
|
|
|
|
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;
|
|
}
|
|
}
|