Reading variables
Decode your contract's variables
contract Store {
mapping(address => uint256) public values;
uint256 latest;
Transaction[] history;
struct Transaction {
address from;
address to;
uint256 amount;
}
}

Last updated