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>
This commit is contained in:
Nikita Khateev
2024-07-25 17:22:11 +04:00
committed by Gustavo Gonzalez
parent 29c6332022
commit cdba7fea87
5 changed files with 1557 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
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;
}
}