paritytech / substrate-api-sidecar

REST service that makes it easy to interact with blockchain nodes built using Substrate's FRAME framework.

Home Page:https://paritytech.github.io/substrate-api-sidecar/dist/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Add `/blocks/:blockId/extrinsics-raw` endpoint

TarikGul opened this issue · comments

/blocks/:blockId/extrinsics-raw

The following endpoint will return:

{
  "parentHash": "string",
  "number": "string",
  "stateRoot": "string",
  "extrinsicRoot": "string",
  "digest": {
    "logs": [
      {
        "type": "string",
        "index": "string",
        "value": [
          "string"
        ]
      }
    ]
  },
  "extrinsics": `0x${string}`[] 
}

rel: #1329