transactions

List blobs which was pushed by transaction

Returns a paginated list of blobs submitted via the PayForBlobs message in the given transaction. Supports sorting by time or blob size.

get/tx/{hash}/blobs

Path parameters

hashstring required

Transaction hash in hexadecimal

Query parameters

limitinteger

Count of requested entities

offsetinteger

Offset

sort'asc' | 'desc'

Sort order. Default: desc

sort_by'time' | 'size'

Sort field. If it's empty internal id is used

Response

OK

commitmentstring base64
content_typestring string
heightinteger
idinteger
share_versioninteger
sizeinteger
timestring date-time

Example response

[
  {
    "commitment": "vbGakK59+Non81TE3ULg5Ve5ufT9SFm/bCyY+WLR3gg=",
    "content_type": "image/png",
    "height": 100,
    "id": 200,
    "namespace": {
      "blobs_count": 10000,
      "hash": "U3dhZ2dlciByb2Nrcw==",
      "id": 321,
      "last_height": 100,
      "last_message_time": "2023-07-04T03:10:57+00:00",
      "name": "name",
      "namespace_id": "4723ce10b187716adfc55ff7e6d9179c226e6b5440b02577cca49d02",
      "pfb_count": 12,
      "reserved": true,
      "size": 12345
    },
    "rollup": {
      "id": 321,
      "logo": "https://some_link.com/image.png",
      "name": "Rollup name",
      "slug": "rollup_slug"
    },
    "signer": {
      "celestials": {
        "image_url": "https://ipfs.io/ipfs/QmUi269vE25fagqhyMCCTNSoiW6x4LHCwwQb3keSrEXAmC",
        "name": "name",
        "primary": true,
        "status": "VERIFIED"
      },
      "hash": "celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60"
    },
    "size": 10,
    "time": "2023-07-04T03:10:57+00:00",
    "tx": {
      "codespace": "sdk",
      "events_count": 2,
      "fee": "9348",
      "gas_used": 4253,
      "gas_wanted": 9348,
      "hash": "652452A670018D629CC116E510BA88C1CABE061336661B1F3D206D248BD558AF",
      "height": 100,
      "id": 321,
      "memo": "Transfer to private account",
      "message_types": [
        "MsgSend",
        "MsgUnjail"
      ],
      "messages": [
        {
          "height": 100,
          "id": 321,
          "position": 2,
          "size": 2,
          "time": "2023-07-04T03:10:57+00:00",
          "tx_id": 11
        }
      ],
      "messages_count": 1,
      "position": 11,
      "signers": [
        {
          "celestials": {
            "image_url": "https://ipfs.io/ipfs/QmUi269vE25fagqhyMCCTNSoiW6x4LHCwwQb3keSrEXAmC",
            "name": "name",
            "primary": true,
            "status": "VERIFIED"
          },
          "hash": "celestia1jc92qdnty48pafummfr8ava2tjtuhfdw774w60"
        }
      ],
      "time": "2023-07-04T03:10:57+00:00"
    }
  }
]

Changes