JSON-RPC is a stateless, light-weight remote procedure call (RPC) protocol. Primarily this specification defines several data structures and the rules around their processing. It is transport agnostic, meaning that the concepts can be used within the same process, over sockets, over HTTP, or in many various message passing environments. It uses JSON (RFC 4627) as data format.
--no-jsonrpc
Do not run jsonrpc.
--jsonrpc-port <PORT>
Listen for rpc connections on PORT. [default: 8080]
In the current version, it's only supported through HTTP.
A XXX-bit hexadecimal string. (e.g. H160: 160-bit hexadecimal string)
A hexadecimal string for XXX-bit unsigned integer
A two-letter string to denote a network. For example, "cc" is for the main network, and "tc" is for the Husky test network. See the specification.
A string that starts with "(NetworkID)c", and Bech32 string follows. For example, "cccqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqz6sxn0" is for the main network, and "tccqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqz6sxn0" is for the Husky test network. See the specification.
- author:
PlatformAddress
- extraData:
any[]
- hash:
H256
- invoicesRoot:
H256
- number:
number
- parcels:
Parcel[]
- parcelsRoot:
H256
- parentHash:
H256
- score:
number
- seal:
string[]
- stateRoot:
H256
- timestamp:
number
- blockHash:
H256
- blockNumber:
number
- fee:
U64
- hash:
H256
- networkId:
NetworkID
- seq:
number
- parcelIndex:
number
- sig:
Signature
- action:
Action
- fee:
U64
- networkId:
NetworkID
- seq:
number
|null
- action:
Action
- action: "assetTransaction"
- transaction:
Transaction
- action: "payment"
- receiver:
PlatformAddress
- amount:
U64
- action: "setRegularKey"
- key:
H512
- action: "setShardOwners"
- shardId:
number
- owners:
PlatformAddress[]
- action: "setShardUsers"
- shardId:
number
- users:
PlatformAddress[]
- action: "wrapCCC"
- shardId:
number
- lockScriptHash:
H160
- parameters:
number[][]
- amount:
U64
- amount:
U64
- metadata:
string
- approver:
PlatformAddress
|null
- amount:
U64
- assetType:
H256
- lockScriptHash:
H160
- parameters:
number[][]
- type: "assetMint" | "assetTransfer" | "assetCompose" | "assetDecompose" | "assetUnwrapCCC"
- data:
AssetMintData
|AssetTransferData
|AssetComposeData
|AssetDecomposeData
|AssetUnwrapCCCData
When Transaction
is included in any response, there will be an additional field hash
in the data, which is the hash value of the given transaction. This decreases the time to calculate the transaction hash when it is needed from the response.
- networkId:
NetworkID
- shardId:
number
- metadata:
string
- output:
AssetMintOutput
- approver:
PlatformAddress
|null
- networkId:
NetworkID
- burns:
AssetTransferInput[]
- inputs:
AssetTransferInput[]
- outputs:
AssetTransferOutput[]
- orders:
OrderOnTransfer[]
- networkId:
NetworkID
- shardId:
number
- metadata:
string
- inputs:
AssetTransferInput[]
- output:
AssetMintOutput
- approver:
PlatformAddress
|null
- networkId:
NetworkID
- input:
AssetTransferInput
- outputs:
AssetTransferOutput[]
- networkId:
NetworkID
- burn:
AssetTransferInput
- lockScriptHash:
H160
- parameters:
number[][]
- amount:
U64
|null
- prevOut:
AssetOutPoint
- timelock:
Timelock
- lockScript:
number[]
- unlockScript:
number[]
- type: "block" | "blockAge" | "time" | "timeAge"
- value:
number
- transactionHash:
H256
- index:
number
- assetType:
H256
- amount:
U64
- lockScriptHash:
H160
- parameters:
number[][]
- assetType:
H256
- amount:
U64
- assetTypeFrom:
H256
- assetTypeTo:
H256
- assetTypeFee:
H256
- assetAmountFrom:
U64
- assetAmountTo:
U64
- assetAmountFee:
U64
- originOutputs:
AssetOutPoint[]
- expiration:
number
- lockScriptHash:
H160
- parameters:
number[][]
- order:
Order
- spentAmount:
U64
- inputIndices:
number[]
- outputIndices:
number[]
H520
for ECDSA signature | H512
for Schnorr signature
Code | Message | Description |
---|---|---|
-32002 | No Author |
No author is configured |
-32004 | No Work Required |
No work is required |
-32005 | No Work Found |
No work is found |
-32009 | Invalid RLP |
Failed to decode the RLP string |
-32011 | KVDB Error |
Failed to access the state (Internal error of CodeChain) |
-32010 | Execution Failed |
Failed to execute the transactions |
-32030 | Verification Failed |
The signature is invalid |
-32031 | Already Imported |
The same parcel is already imported |
-32032 | Not Enough Balance |
The signer's balance is insufficient |
-32033 | Too Low Fee |
The fee is lower than the minimum required |
-32034 | Too Cheap to Replace |
The fee is lower than the existing one in the queue |
-32035 | Invalid Seq |
The signer's seq is invalid to import |
-32036 | Invalid NetworkId |
The network id does not match |
-32040 | Keystore Error |
Failed to access the key store (Internal error of CodeChain) |
-32041 | Key Error |
The key is invalid |
-32042 | Already Exists |
The account already exists |
-32043 | Wrong Password |
The password does not match |
-32044 | No Such Account |
There is no such account in the key store |
-32045 | Not Unlocked |
The account is not unlocked |
-32099 | Unknown Error |
An unknown error occurred |
-32602 | Invalid Params |
At least one of the parameters is invalid |
- chain_getBestBlockNumber
- chain_getBestBlockId
- chain_getBlockHash
- chain_getBlockByNumber
- chain_getBlockByHash
- chain_sendSignedParcel
- chain_getParcel
- chain_getParcelInvoice
- chain_getTransaction
- chain_getTransactionInvoices
- chain_getAssetSchemeByHash
- chain_getAssetSchemeByType
- chain_getAsset
- chain_isAssetSpent
- chain_getSeq
- chain_getBalance
- chain_getRegularKey
- chain_getRegularKeyOwner
- chain_getGenesisAccounts
- chain_getNumberOfShards
- chain_getShardRoot
- chain_getPendingParcels
- chain_getMiningReward
- chain_executeTransaction
- chain_getNetworkId
- net_shareSecret
- net_connect
- net_isConnected
- net_disconnect
- net_getPeerCount
- net_getEstablishedPeers
- net_getPort
- net_addToWhitelist
- net_removeFromWhitelist
- net_addToBlacklist
- net_removeFromBlacklist
- net_enableWhitelist
- net_disableWhitelist
- net_enableBlacklist
- net_disableBlacklist
- net_getWhitelist
- net_getBlacklist
- account_getList
- account_create
- account_importRaw
- account_unlock
- account_sign
- account_sendParcel
- account_changePassword
- devel_getStateTrieKeys
- devel_getStateTrieValue
- devel_startSealing
- devel_stopSealing
- devel_getBlockSyncPeers
Sends ping to check whether CodeChain's RPC server is responding or not.
No parameters
string
- "pong"
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "ping", "params": [], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":"pong",
"id":null
}
Gets the version of CodeChain.
No parameters
string
- e.g. 0.1.0
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "version", "params": [], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":"0.1.0",
"id":null
}
Gets the commit hash of the repository upon which the CodeChain executable was built.
No parameters
string
- the commit hash
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "commitHash", "params": [], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": "361a36fe20900f15e71148a615b25978652bfe90",
"id":null
}
Gets the number of the best block.
No parameters
number
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getBestBlockNumber", "params": [], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":1,
"id":null
}
Gets the number and the hash of the best block.
No parameters
{ hash: H256
, number: number
}
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getBestBlockId", "params": [], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":{
"hash":"0x7f7104b580f9418d444560009e5a92a4573d42d2c51cd0c6045afdc761826249",
"number":1
},
"id":null
}
Gets the hash of the block with given number.
- n -
number
null
| H256
Errors: Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getBlockHash", "params": [1], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":"0x56642f04d519ae3262c7ba6facf1c5b11450ebaeb7955337cfbc45420d573077",
"id":null
}
Gets the block with the given number.
- number:
number
null
| Block
Errors: Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getBlockByNumber", "params": [5], "id": null}' \
http://localhost:8080
{
"jsonrpc":"2.0",
"result":{
"author":"sccqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqz6sxn0",
"extraData":[
],
"hash":"0x0e9cbbe0ecc774de3b5d05827ffb5c541bc7b7ff63de253d17272cf0fea1b7af",
"invoicesRoot":"0x6db236c944eda064237e88be9cddf7766ce877fe0c4414ac5999f4f5429750fd",
"number":5,
"parcels":[
{
"action":{
"action":"payment",
"amount":"0x3b9aca00",
"receiver":"sccqra5felweesff3epv9wfu05a47sxh89yuvzw7mqd"
},
"blockHash":"0x0e9cbbe0ecc774de3b5d05827ffb5c541bc7b7ff63de253d17272cf0fea1b7af",
"blockNumber":5,
"fee":"0x5f5e100",
"hash":"0x3ff9b02427ac04c06260928168775bca5a3da96ae6995041e197d42e71ab68b6",
"networkId":"sc",
"seq": 4,
"parcelIndex":0,
"sig":"0x4621da0344d8888c5076cc0a3cc7fd7a7e3a761ba812c95f807c050a4e5ec6b7120fa99fdf502ed088ed61eb6d5fe44f44c280e97c7702d5127640d7a8a6d7e401"
}
],
"parcelsRoot":"0xa4a8229a90d91e9a38b17f95c9ac2d01f46b10553e62c68df5bbfe1cc5b3e164",
"parentHash":"0xbc4f7e7b1dded863c500147243d78436ca297bfae64e1ec2d17396286cf14b6e",
"score":"0x20000",
"seal":[
],
"stateRoot":"0x4cdbde0340558aa7116975a170f004af3b6343f5bf0354dadd1815d22ed12da7",
"timestamp":1536924583
},
"id":null
}
Gets the block with the given hash.
- hash:
H256
null
| Block
Errors: Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getBlockByHash", "params": ["0xfc196ede542b03b55aee9f106004e7e3d7ea6a9600692e964b4735a260356b50"], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":{
"author":"cccqzzpxln6w5zrhmfju3zc53w6w4y6s95mf5lfasfn",
"extraData":[
],
"hash":"0xfc196ede542b03b55aee9f106004e7e3d7ea6a9600692e964b4735a260356b50",
"invoicesRoot":"0x3a14d04383882243a684a6b0e779905f7883b12b5fb3ebf738facfcd2095b77a",
"number":5,
"parcels":[
{
"action":{
"action":"payment",
"amount":"0xa",
"receiver": "cccqzn9jjm3j6qg69smd7cn0eup4w7z2yu9myd6c4d7"
},
"blockHash":"0xfc196ede542b03b55aee9f106004e7e3d7ea6a9600692e964b4735a260356b50",
"blockNumber":5,
"fee":"0xa",
"hash":"0xdb7c705d02e8961880783b4cb3dc051c41e551ade244bed5521901d8de190fc6",
"networkId":"cc",
"seq": 4,
"parcelIndex":0,
"sig":"0x291d932e55162407eb01915923d68cf78df4815a25fc6033488b644bda44b02251123feac3a3c56a399a2b32331599fd50b7a39ec2c1a2325e37f383c6aeedc301"
}
],
"parcelsRoot":"0x0270d11d2bd21a0ec8e78d1c4e918103d7c4b02fdf734051231cb9eea90ae88e",
"parentHash":"0xddf9fece0c6dee067a409e73a299bca21cec2d8300dff45739a5b76c680f378d",
"score":"0x20000",
"seal":[
],
"stateRoot":"0x898961f82629a47ade064f15d3902a455379cb082e62d3995f21050df3f553dc",
"timestamp":1531583888
}
"id":null
}
Sends a signed parcel, returning its hash.
- bytes:
hexadecimal string
- RLP encoded hex string of SignedParcel
H256
- parcel hash
Errors: Invalid RLP
, Verification Failed
, Already Imported
, Not Enough Balance
, Too Low Fee
, Too Cheap to Replace
, Invalid Seq
, Invalid Params
, Invalid NetworkId
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_sendSignedParcel", "params": ["0xf85e040a11d70294a6594b7196808d161b6fb137e781abbc251385d90ab841291d932e55162407eb01915923d68cf78df4815a25fc6033488b644bda44b02251123feac3a3c56a399a2b32331599fd50b7a39ec2c1a2325e37f383c6aeedc301"], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":"0xdb7c705d02e8961880783b4cb3dc051c41e551ade244bed5521901d8de190fc6",
"id":null
}
Gets a parcel with the given hash.
- parcel hash -
H256
null
or Parcel
Errors: Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getParcel", "params": ["0xdb7c705d02e8961880783b4cb3dc051c41e551ade244bed5521901d8de190fc6"], "id": null}' \
localhost:8080
{
"jsonrpc": "2.0",
"result": {
"action": {
"action":"payment",
"amount":"0xa",
"receiver": "cccqzn9jjm3j6qg69smd7cn0eup4w7z2yu9myd6c4d7"
},
"blockHash": "0xfc196ede542b03b55aee9f106004e7e3d7ea6a9600692e964b4735a260356b50",
"blockNumber": 5,
"fee": "0xa",
"hash": "0xdb7c705d02e8961880783b4cb3dc051c41e551ade244bed5521901d8de190fc6",
"networkId": "cc",
"seq": 4,
"parcelIndex": 0,
"sig":"0x291d932e55162407eb01915923d68cf78df4815a25fc6033488b644bda44b02251123feac3a3c56a399a2b32331599fd50b7a39ec2c1a2325e37f383c6aeedc301"
}
"id": null,
}
Gets a parcel invoice with the given hash.
- parcel hash -
H256
null
| string[]
- Each string is either "Success" or "Failed"
Errors: Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getParcelInvoice", "params": ["0xad708d48755ac36685280a45ec213941e21c41644c781bf2f487fd6c7e4b2ebb"], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":[
"Success"
],
"id":null
}
Gets a transaction with the given hash.
- transaction hash -
H256
null
| Transaction
Errors: Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getTransaction", "params": ["0x24df02abcd4e984e90253dc344e89b8431bbb319c66643bfef566dfdf46ec6bc"], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":{
"type":"assetMint",
"metadata":"...",
"output":{
"lockScriptHash":"0xf42a65ea518ba236c08b261c34af0521fa3cd1aa505e1c18980919cb8945f8f3",
"parameters":[],
"amount":10000
},
"approver":null,
"nonce":0
},
"id":null
}
Gets transaction invoices with the given hash.
- transaction hash -
H256
string[]
- Each string is either "Success" or "Failed".
Errors: Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getTransactionInvoice", "params": ["0x24df02abcd4e984e90253dc344e89b8431bbb319c66643bfef566dfdf46ec6bc"], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": ["Failed", "Success"],
"id":null
}
Gets an asset scheme with the given asset type.
- transaction hash of AssetMintTransaction -
H256
- shard id -
number
- block number:
number
|null
null
| AssetScheme
Errors: KVDB Error
, Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getAssetSchemeByHash", "params": ["0x24df02abcd4e984e90253dc344e89b8431bbb319c66643bfef566dfdf46ec6bc", 0, null], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":{
"amount":100,
"metadata":"",
"approver":null
},
"id":null
}
Gets an asset scheme with the given asset type.
- asset type -
H256
- block number:
number
|null
null
| AssetScheme
Errors: KVDB Error
, Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getAssetSchemeByType", "params": ["0x24df02abcd4e984e90253dc344e89b8431bbb319c66643bfef566dfdf46ec6bc", null], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":{
"amount":100,
"metadata":"",
"approver":null
},
"id":null
}
Gets an asset with the given asset type.
- transaction hash -
H256
- index -
number
- block number:
number
|null
null
| Asset
Errors: KVDB Error
, Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getAsset", "params": ["0x24df02abcd4e984e90253dc344e89b8431bbb319c66643bfef566dfdf46ec6bc", 0], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":{
"amount":100,
"assetType":"0x53000000000000002ec1193ecd52e2833ffc10b45bea1fda49f857e34db67c68",
"lockScriptHash":"0x0000000000000000000000000000000000000000",
"parameters":[
]
},
"id":null
}
Checks whether an asset is spent or not.
- transaction hash:
H256
- index:
number
- shard id:
number
- block number:
number
|null
null
| false
| true
- It returns null when no such asset exists.
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_isAssetSpent", "params": ["0x24df02abcd4e984e90253dc344e89b8431bbb319c66643bfef566dfdf46ec6bc", 0, 0], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":false,
"id":null
}
Gets a seq of an account of the given address, at state of the given blockNumber.
- address:
PlatformAddress
- block number:
number
|null
null
| number
- It returns null when the given block number is invalid.
Errors: KVDB Error
, Invalid Params
, Invalid NetworkId
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getSeq", "params": ["cccqzn9jjm3j6qg69smd7cn0eup4w7z2yu9myd6c4d7", null], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": 84,
"id":null
}
Gets a balance of an account of the given address, at the state of the given blockNumber.
- address:
PlatformAddress
- block number:
number
|null
null
| U64
- It returns null when the given block number is invalid.
Errors: KVDB Error
, Invalid Params
, Invalid NetworkId
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getBalance", "params": ["cccqzn9jjm3j6qg69smd7cn0eup4w7z2yu9myd6c4d7", null], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":"0xe8d4a50dd0",
"id":null
}
Gets the regular key of an account of the given address, at the state of the given blockNumber.
- address:
PlatformAddress
- block number:
number
|null
null
| H512
- 512-bit public key. It returns null when the given address does not have a regular key.
Errors: KVDB Error
, Invalid Params
, Invalid NetworkId
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getRegularKey", "params": ["cccqzn9jjm3j6qg69smd7cn0eup4w7z2yu9myd6c4d7", null], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":"0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
"id":null
}
Gets the owner of a regular key, at the state of the given blockNumber.
- public key:
H512
- block number:
number
|null
null
| PlatformAddress
- It returns null when the given key has no owner.
Errors: KVDB Error
, Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getRegularKeyOwner", "params": ["0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000", null], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":"cccqzn9jjm3j6qg69smd7cn0eup4w7z2yu9myd6c4d7",
"id":null
}
Gets the platform account in the genesis block.
No parameters
PlatformAddress[]
- It returns the array of the platform address
Errors: KVDB Error
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getGenesisAccounts", "params": [], "id": 37}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": ["cccqzn9jjm3j6qg69smd7cn0eup4w7z2yu9myd6c4d7"],
"id":37
}
Gets the number of shards, at the state of the given blockNumber.
- block number:
number
|null
number
- the number of shards
Errors: KVDB Error
, Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getNumberOfShards", "params": [null], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":3,
"id":null
}
Gets the root of shard, at the state of the given blockNumber.
- shard id:
number
- block number:
number
|null
null
| H256
- the root of shard
Errors: KVDB Error
, Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getShardRoot", "params": [1, null], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":"0xf3841adc1615bfeabb801dda23585c1722b80d810df084a5f2198e92285d4bfd",
"id":null
}
Gets parcels in the current parcel queue.
No parameters
Parcel[]
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getPendingParcels", "params": [], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":[
{
"blockHash":null,
"blockNumber":null,
"fee":"0xa",
"hash":"0x8ae3363ccdcc02d8d662d384deee34fb89d1202124e8065f0d6c84ab31e68d8a",
"networkId":"cc",
"seq":"0x0",
"parcelIndex":null,
"r":"0x22605d6b9fb713d3a415e02eeed8b4a630e0d867c91bf7d9b7721f94159c0fe1",
"s":"0x772f19f1c27f1db8b28289caa9e99ad756878fd56b2415c25cd47cc737f7e0c2",
"transactions":[
{
"payment":{
"seq": 1,
"receiver": "cccqzn9jjm3j6qg69smd7cn0eup4w7z2yu9myd6c4d7",
"value":"0x0"
}
}
],
"v":0
}
],
"id":null
}
Gets the mining reward of the given block number.
Unlike engine_getBlockReward
, it returns the actual amount received, including the transaction fee.
It returns null
if the given block number is not mined yet.
- block number:
number
U64
| null
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getMiningReward", "params": [10], "id": 41}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": null,
"id":41
}
Executes the transactions and returns the current shard root and the changed shard root.
- transaction:
Transaction
- sender:
PlatformAddress
Invoice
Errors: Invalid RLP
, Execution Failed
, Invalid Params
, Invalid NetworkId
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_executeTransaction", "params": [{"type":"assetMint","data":{"networkId":"cc","shardId":0,"metadata":"{\"name\":\"Gold\",\"description\":\"An asset example\",\"icon_url\":\"https://gold.image/\"}","output":{"lockScriptHash":"0xf42a65ea518ba236c08b261c34af0521fa3cd1aa505e1c18980919cb8945f8f3","parameters":[],"amount":10000},"approver":null,"nonce":0}}, "cccqzn9jjm3j6qg69smd7cn0eup4w7z2yu9myd6c4d7"], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":[
"Success"
],
"id":null
}
Return the nework id that is used in this chain.
No parameters
number
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "chain_getNetworkId", "params": [], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": 17,
"id":6
}
Gets coinbase's account id.
No parameters
PlatformAddress
| null
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "engine_getCoinbase", "params": [], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":"cccqzn9jjm3j6qg69smd7cn0eup4w7z2yu9myd6c4d7",
"id":null
}
Gets the reward of the given block number
- block number:
number
U64
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "engine_getBlockReward", "params": [10], "id": 41}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":"0x50",
"id":41
}
Gets the recommended minimum confirmations.
No parameters
number
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "engine_getRecommendedConfirmation", "params": [], "id": 411}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": 6,
"id":411
}
Returns the hash of the current block and score.
No parameters
Work
Errors: No Author
, No Work Required
, No Work Found
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "miner_getWork", "params": [], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":{
"powHash":"0x56642f04d519ae3262c7ba6facf1c5b11450ebaeb7955337cfbc45420d573077",
"target":100
},
"id":null
}
Used for submitting a proof-of-work solution.
- powHash:
string
- seal:
string[]
bool
Errors: No Work Required
, Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "miner_submitWork", "params": ["0x1234567890abcdef1234567890abcdef1234567890abcdef1234567890abcdef", ["0x56642f04d519ae3262c7ba6facf1c5b11450ebaeb7955337cfbc45420d573077"]], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":true,
"id":6
}
Share secret to the given address.
- secret:
string
- address:
string
- port:
number
null
Errors: Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "net_shareSecret", "params": ["0x24df02abcd4e984e90253dc344e89b8431bbb319c66643bfef566dfdf46ec6bc", "192.168.0.3", 3485], "id": 5}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":null,
"id":5
}
Connect to the given address.
- address:
string
- port:
number
null
Errors: Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "net_connect", "params": ["192.168.0.3", 3485], "id": 5}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":null,
"id":5
}
Check whether the connection is established.
- address:
string
- port:
number
bool
Errors: Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "net_isConnected", "params": ["192.168.0.3", 3485], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":true,
"id":6
}
Disconnect the connection from the given address.
- address:
string
- port:
number
null
Errors: Not Conntected
, Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "net_disconnect", "params": ["192.168.0.3", 3485], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":null,
"id":6
}
Return the count of peers which the client is connected to.
No parameters
number
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "net_getPeerCount", "params": [], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": 34,
"id":6
}
Return the socket addresses of established peers.
No parameters
string[]
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "net_getEstablishedPeers", "params": [], "id": 3}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": ["1.2.3.4:3485", "1.2.3.5:3485"],
"id":3
}
Return the port number on which the client is listening for peers.
No parameters
number
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "net_getPort", "params": [], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": 3485,
"id":6
}
Adds the address to the whitelist.
- address:
string
- tag:
null
|string
null
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "net_addToWhitelist", "params": ["1.2.3.4", "tag"], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": null,
"id":6
}
Removes the address from the whitelist.
- address:
string
null
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "net_removeFromWhitelist", "params": ["1.2.3.4"], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": null,
"id":6
}
Adds the address to the blacklist.
- address:
string
- tag:
null
|string
null
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "net_addToBlacklist", "params": ["1.2.3.4", "tag"], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": null,
"id":6
}
Removes the address from the blacklist.
- address:
string
null
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "net_removeFromBlacklist", "params": ["1.2.3.4"], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": null,
"id":6
}
Enables whitelist.
No parameters
null
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "net_enableWhitelist", "params": [], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": null,
"id":6
}
Disables whitelist.
No parameters
null
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "net_disableWhitelist", "params": [], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": null,
"id":6
}
Enables blacklist.
No parameters
null
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "net_enableBlacklist", "params": [], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": null,
"id":6
}
Disables blacklist.
No parameters
null
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "net_disableBlacklist", "params": [], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": null,
"id":6
}
Gets the address in the whitelist.
No parameters
{ list: string[][]
, enabled: bool
}
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "net_getWhitelist", "params": [], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": { "list": [["1.2.3.4", "tag1"], ["1.2.3.5", "tag2"], ["1.2.3.6", "tag3"]], "enabled": true },
"id":6
}
Gets the address in the blacklist.
No parameters
{ list: string[][]
, enabled: bool
}
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "net_getBlacklist", "params": [], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": { "list": [["1.2.3.4", "tag1"], ["1.2.3.5", "tag2"], ["1.2.3.6", "tag3"]], "enabled": false },
"id":6
}
Gets a list of accounts.
No parameters
PlatformAddress[]
Errors: Keystore Error
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "account_getList", "params": [], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":["cccqqccmmu8mrwq7lxzz72d4ukaxemzmv3tvues8uwy"],
"id":6
}
Creates a new account.
- password:
string
|null
PlatformAddress
Errors: Keystore Error
, Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "account_create", "params": [], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":"cccqqccmmu8mrwq7lxzz72d4ukaxemzmv3tvues8uwy",
"id":6
}
Imports a secret key and add the corresponding account.
- secret:
H256
- password:
string
|null
PlatformAddress
Errors: Keystore Error
, Key Error
, Already Exists
, Invalid Params
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "account_importRaw", "params": ["a2b39d4aefecdb17f84ed4cf629e7c8817691cc4f444ac7522902b8fb4b7bd53"], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":"cccqz3z4e3x6f5j80wexg0xfr0qsrqcuyzf7g4y0je6",
"id":6
}
Unlocks the specified account for use.
It will default to 300 seconds. Passing 0 unlocks the account indefinitely.
- account:
PlatformAddress
- password:
string
- duration:
number
|null
null
Errors: Keystore Error
, Wrong Password
, No Such Account
, Invalid Params
, Invalid NetworkId
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "account_unlock", "params": ["cccqqccmmu8mrwq7lxzz72d4ukaxemzmv3tvues8uwy", "1234", 0], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": null,
"id":6
}
Calculates the account's signature for a given message.
- message:
H256
- account:
PlatformAddress
- password:
string
|null
Signature
Errors: Keystore Error
, Wrong Password
, No Such Account
, Not Unlocked
, Invalid Params
, Invalid NetworkId
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "account_sign", "params": ["0000000000000000000000000000000000000000000000000000000000000000", "cccqqfz3sx7fr7uxqa5kl63qjdw9zrntru5kcdsjywj"], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":"0xff7e8928f7758a64b9ea6c53f9945cdd223740675ac6ac6da625306d3966f8197523e00d56844ddb70631d44f045f4d83cc183a267c3182ab04c2f459c8289f501",
"id":6
}
Sends a parcel by signing it with the account’s private key. It automatically fills the seq if the seq is not given.
- parcel:
UnsignedParcel
- account:
PlatformAddress
- passphrase:
string
|null
{ hash: H256
, seq: number
} - the hash and seq of the parcel
Errors: Keystore Error
, Wrong Password
, No Such Account
, Not Unlocked
, Invalid Params
, Invalid NetworkId
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "account_sendParcel", "params": [{"action":{ "action":"payment", "amount":"0x3b9aca00", "receiver":"sccqra5felweesff3epv9wfu05a47sxh89yuvzw7mqd" }, "fee":"0x5f5e100", "networkId":"sc", "seq": null}, "cccqqfz3sx7fr7uxqa5kl63qjdw9zrntru5kcdsjywj", null], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": {"seq": 999999999440, "hash":"0x8ae3363ccdcc02d8d662d384deee34fb89d1202124e8065f0d6c84ab31e68d8a"},
"id":6
}
Changes the account's password.
- account:
PlatformAddress
- old_password:
String
- new_password:
String
null
Errors: Keystore Error
, Wrong Password
, No Such Account
, Invalid Params
, Invalid NetworkId
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "account_changePassword", "params": ["cccqqccmmu8mrwq7lxzz72d4ukaxemzmv3tvues8uwy", "1234", "5678"], "id": 6}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":null,
"id":6
}
Gets keys of the state trie with the given offset and limit.
- offset:
number
- limit:
number
H256[]
with maximum length limit
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "devel_getStateTrieKeys", "params": [0, 1], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":[
"0x00acf5cba5c53e11f1512b8b480521cb546e7a17a96235a9282f6253b90de043"
],
"id":null
}
Gets the value of the state trie with the given key.
- key:
string
string[]
- each string is RLP encoded
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "devel_getStateTrieValue", "params": ["0x00acf5cba5c53e11f1512b8b480521cb546e7a17a96235a9282f6253b90de043"], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":[
"0x20d560025f3a1c6675cb32384355ae05b224a3473ae17d3d15b6aa164af7d717",
"0xf84541a053000000000000002ab33f741ba153ff1ffdf1107845828637c864d5360e4932a00000000000000000000000000000000000000000000000000000000000000000c06f"
],
"id":null
}
Starts and enables sealing blocks by the miner.
No parameters
null
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "devel_startSealing", "params": [], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":null,
"id":null
}
Stops and disables sealing blocks by the miner.
No parameters
null
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "devel_stopSealing", "params": [], "id": null}' \
localhost:8080
{
"jsonrpc":"2.0",
"result":null,
"id":null
}
Get peers in Block Sync module.
No parameters
string[]
curl \
-H 'Content-Type: application/json' \
-d '{"jsonrpc": "2.0", "method": "devel_getBlockSyncPeers", "params": [], "id": 3}' \
localhost:8080
{
"jsonrpc":"2.0",
"result": ["1.2.3.4:3485", "1.2.3.5:3485"],
"id":3
}