Material

Get all the network information needed to construct a transaction offline.

Returns the material that is universal to constructing any signed transaction offline. Replaces /tx/artifacts from versions < v1.0.0.

get

/transaction/material

Query parameters
atstring unsignedInteger or $hex

Block identifier, as the block height or block hash.

noMetaboolean

DEPRECATED! This is no longer supported

metadatastring

Specifies the format of the metadata to be returned. Accepted values are 'json', and 'scale'. 'json' being the decoded metadata, and 'scale' being the SCALE encoded metadata. When metadata is not inputted, the metadata field will be absent.

Responses
curl -L \
  --url 'https://dot-playbook.nownodes.io/transaction/material'
{
  "at": {
    "hash": "text",
    "height": "text"
  },
  "genesisHash": "text",
  "chainName": "text",
  "specName": "text",
  "specVersion": "text",
  "txVersion": "text",
  "metadata": "text"
}