Skip to content

Latest commit

 

History

History
43 lines (32 loc) · 537 Bytes

getblocksysfee.md

File metadata and controls

43 lines (32 loc) · 537 Bytes

getblocksysfee Method

Return the system fees of the block, based on the specified index.

{
  "jsonrpc": "2.0",
  "method": "getblocksysfee",
  "params": [index],
  "id": 1
}

Parameter Description

  • index: Block index

Example

Request body:

{
  "jsonrpc": "2.0",
  "method": "getblocksysfee",
  "params": [1005434],
  "id": 1
}

Response body:

{
    "jsonrpc": "2.0",
    "id": 1,
    "result": "195500"
}

Response description:

result: The system fees of the block in NeoGas units.