jangko 6966324f3b
add our own hive/graphql simulator into hive_integration
now we can run hive/graphql test without using hive or docker.
it's useful for debugging session. but lacking nice result report
like real hive.
2021-05-12 21:21:53 +07:00

28 lines
801 B
JSON

{
"request":
"{ pending { transactionCount transactions { nonce gas } account(address:\"0x6295ee1b4f6dd65047762f924ecd367c17eabf8f\") { balance} estimateGas(data:{}) call (data : {from : \"0xa94f5374fce5edbc8e2a8697c15331677e6ebf0b\", to: \"0x6295ee1b4f6dd65047762f924ecd367c17eabf8f\", data :\"0x12a7b914\"}){data status}} }",
"responses": [{
"data": {
"pending": {
"transactionCount": 1,
"transactions": [
{
"nonce": 50,
"gas": 1048575
}
],
"account": {
"balance": "0x140"
},
"estimateGas": 21000,
"call": {
"data": "0x0000000000000000000000000000000000000000000000000000000000000001",
"status": 1
}
}
}
}],
"statusCode": 200
}