Tx rollup origination

Get tx rollup origination

Returns a list of tx rollup origination operations.

get

/v1/operations/tx_rollup_origination

Query parameters
sendernullable one of

Filters by sender. Allowed fields for .eqx mode: none.

rollupnullable one of

Filters by rollup. Allowed fields for .eqx mode: none.

levelnullable one of

Filters by level.

timestampnullable one of

Filters by timestamp.

statusnullable one of

Filters by status (applied, failed, backtracked, skipped).

selectnullable one of

Specify comma-separated list of fields to include into response or leave it undefined to return full object. If you select single field, response will be an array of values in both .fields and .values modes.

sortnullable one of

Sorts by specified field. Supported fields: id (default), level, gasUsed, bakerFee.

offsetnullable one of

Specifies which or how many items should be skipped

limitinteger int32

Maximum number of items to return

quoteone of

Comma-separated list of ticker symbols to inject historical prices into response

Responses
curl -L \
  --url 'https://xtz-index.nownodes.io/v1/operations/tx_rollup_origination'
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-02-06T12:41:08.981Z",
    "block": "text",
    "hash": "text",
    "sender": {
      "alias": "text",
      "address": "text"
    },
    "counter": 1,
    "gasLimit": 1,
    "gasUsed": 1,
    "storageLimit": 1,
    "bakerFee": 1,
    "allocationFee": 1,
    "rollup": {
      "alias": "text",
      "address": "text"
    },
    "status": "text",
    "errors": [
      {
        "type": "text"
      }
    ],
    "quote": {
      "btc": 1,
      "eur": 1,
      "usd": 1,
      "cny": 1,
      "jpy": 1,
      "krw": 1,
      "eth": 1,
      "gbp": 1
    }
  }
]

Get tx rollup origination by hash

Returns tx rollup origination operation with specified hash.

get

/v1/operations/tx_rollup_origination/{hash}

Path parameters
hashstringrequired

Operation hash

Query parameters
quoteone of

Comma-separated list of ticker symbols to inject historical prices into response

Responses
curl -L \
  --url 'https://xtz-index.nownodes.io/v1/operations/tx_rollup_origination/{hash}'
[
  {
    "type": "text",
    "id": 1,
    "level": 1,
    "timestamp": "2025-02-06T12:41:08.981Z",
    "block": "text",
    "hash": "text",
    "sender": {
      "alias": "text",
      "address": "text"
    },
    "counter": 1,
    "gasLimit": 1,
    "gasUsed": 1,
    "storageLimit": 1,
    "bakerFee": 1,
    "allocationFee": 1,
    "rollup": {
      "alias": "text",
      "address": "text"
    },
    "status": "text",
    "errors": [
      {
        "type": "text"
      }
    ],
    "quote": {
      "btc": 1,
      "eur": 1,
      "usd": 1,
      "cny": 1,
      "jpy": 1,
      "krw": 1,
      "eth": 1,
      "gbp": 1
    }
  }
]