From 0a6e14ab61f9537c72d3859e7b9883c3b6d699d1 Mon Sep 17 00:00:00 2001 From: fixanoid Date: Fri, 7 Sep 2018 14:09:34 -0400 Subject: [PATCH] Formatting --- docs/api.md | 54 ++++++++++++++--------------------------------------- 1 file changed, 14 insertions(+), 40 deletions(-) diff --git a/docs/api.md b/docs/api.md index 96a93fd30..2c2a6c0cf 100644 --- a/docs/api.md +++ b/docs/api.md @@ -52,7 +52,7 @@ web3.eth.sendTransaction({ ## JSON RPC Privacy API Reference -__In addition to the JSON-RPC provided by ethereum, Quorum exposes below two API calls.__ +__In addition to the JSON-RPC provided by Ethereum, Quorum exposes below two API calls.__ #### eth_storageRoot @@ -70,58 +70,43 @@ address, block number (hex) ##### Example ```js -//Request +// Request curl -X POST http://127.0.0.1:22000 --data '{"jsonrpc": "2.0", "method": "eth_storageRoot", "params":["0x1349f3e1b8d71effb47b840594ff27da7e603d17"], "id": 67}' -//Response - +// Response { - "id":67, - "jsonrpc": "2.0", - "result": "0x81d1fa699f807735499cf6f7df860797cf66f6a66b565cfcda3fae3521eb6861" - } ``` ```js -//When block number is provided... -//Request +// When block number is provided... +// Request curl -X POST http://127.0.0.1:22000 --data '{"jsonrpc": "2.0", "method": "eth_storageRoot", "params":["0x1349f3e1b8d71effb47b840594ff27da7e603d17","0x1"], "id": 67}' -//Response - +// Response { - "id":67, - "jsonrpc": "2.0", - "result": "0x81d1fa699f807735499cf6f7df860797cf66f6a66b565cfcda3fae3521eb6861" - } -//After private state of the contract is changed from '42' to '99' -//Request + +// After private state of the contract is changed from '42' to '99' +// Request curl -X POST http://127.0.0.1:22000 --data '{"jsonrpc": "2.0", "method": "eth_storageRoot", "params":["0x1349f3e1b8d71effb47b840594ff27da7e603d17","0x2"], "id": 67}' -//Response - +// Response { - "id":67, - "jsonrpc": "2.0", - "result": "0x0edb0e520c35df37a0d080d5245c9b8f9e1f9d7efab77c067d1e12c0a71299da" - } - ``` *** @@ -141,33 +126,22 @@ Transaction payload hash in Hex format ##### Example ```js -//Request +// Request curl -X POST http://127.0.0.1:22000 --data '{"jsonrpc":"2.0", "method":"eth_getQuorumPayload", "params":["0x5e902fa2af51b186468df6ffc21fd2c26235f4959bf900fc48c17dc1774d86d046c0e466230225845ddf2cf98f23ede5221c935aac27476e77b16604024bade0"], "id":67}' -//Response - +// Response { - "id":67, - "jsonrpc": "2.0", - "result": "0x6060604052341561000f57600080fd5b604051602080610149833981016040528080519060200190919050505b806000819055505b505b610104806100456000396000f30060606040526000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680632a1afcd914605157806360fe47b11460775780636d4ce63c146097575b600080fd5b3415605b57600080fd5b606160bd565b6040518082815260200191505060405180910390f35b3415608157600080fd5b6095600480803590602001909190505060c3565b005b341560a157600080fd5b60a760ce565b6040518082815260200191505060405180910390f35b60005481565b806000819055505b50565b6000805490505b905600a165627a7a72305820d5851baab720bba574474de3d09dbeaabc674a15f4dd93b974908476542c23f00029000000000000000000000000000000000000000000000000000000000000002a" - } + // On a node which is not party to the transaction -//Response - +// Response { - "id":67, - "jsonrpc": "2.0", - "result": "0x" - } ``` - -