Files
pezkuwi-runtime-templates/evm-template/rpc-testing/TestContract.sol
T
Nikita Khateev cdba7fea87 RPC Differences Documentation and RPC Testing Toolkit (#241)
* Added RPC testing toolkit with docs

* Add documentation

* fix comments

---------

Co-authored-by: Amar Singh <asinghchrony@protonmail.com>
2024-08-07 11:41:55 -04:00

14 lines
234 B
Solidity

contract Storage {
uint pos0;
constructor() {
pos0 = 1234;
}
// You can read from a state variable without sending a transaction.
function get() public view returns (uint) {
return pos0;
}
}