私の堅実な契約は次のとおりです。
contract SimpleStorage {
uint storedData;
function set(uint x) {
storedData = x;
}
function get() constant returns (uint retVal) {
return storedData;
}}
abiを生成するのは次のとおりです。
[ { "constant": false, "inputs": [ { "name": "x", "type": "uint256" } ], "name": "set", "outputs": [], "type": "function" }, { "constant": true, "inputs": [], "name": "get", "outputs": [ { "name": "retVal", "type": "uint256", "value": "0" } ], "type": "function" } ]
https://github.com/ethereum/wiki/wiki/JSON-RPCで参照され、
java(jsではなく)を使用してget関数を呼び出し て値を取得する方法は?