Movement Decoded Receipts

Fetch Movement decoded writeset receipts for versions 10000 to 10010.

curl -s --location --request GET \
 "https://movement.app.pangea.foundation/v1/api/receipts/decoded?chains=MOVEMENT&from_block=10000&to_block=10010" \
 --header "Accept: application/jsonstream" \
 --header "Accept-Encoding: gzip" --compressed \
 --header "Authorization: Basic $PANGEA_AUTH" | jq

Response

[
  ...
  {
    "chain": 2147483643,
    "block_number": "0x271a",
    "block_hash": "0x9fdd671dfa683a84babcecb8c96c17789adb2cf76a0529e858b9baa3e9eb5501",
    "transaction_index": "0x271a",
    "transaction_hash": "0x9fdd671dfa683a84babcecb8c96c17789adb2cf76a0529e858b9baa3e9eb5501",
    "receipt_index": "0xf3",
    "op": "Creation",
    "state_key": "0x00feee63bf5e3cdb3106eb45ca3355ee1a43a11b6f934cfb26f606e66d0c3e25353901000000000000000000000000000000000000000000000000000000000000000405746f6b656e10546f6b656e4964656e7469666965727300",
    "data": "0x324f0a00000000000c4d6f76656d656e74204e4654080000000000000000",
    "slot_deposit": "0x9c40",
    "bytes_deposit": "0x5a28",
    "creation_time_usecs": "0x6295dccc03e7e",
    "access_path_address": "0xfeee63bf5e3cdb3106eb45ca3355ee1a43a11b6f934cfb26f606e66d0c3e2535",
    "resource_address": "0x0000000000000000000000000000000000000000000000000000000000000004",
    "resource_module": "token",
    "resource_event_name": "TokenIdentifiers",
    "decoded": "{\"index\":{\"value\":675634},\"name\":{\"value\":{\"bytes\":\"0x4d6f76656d656e74204e4654\"},\"padding\":\"0x0000000000000000\"}}"
  }
]

Query Parameters

movement.app.pangea.foundation/v1/api/receipts/decoded?chains=MOVEMENT

  • chains: Filters the data by chain.
  • from_block / from_version: Filters the data by a starting version. As Move chains use a per-transaction versioned database, we use version interchangably with block_number and omit blocks altogether.
  • to_block / to_version: Filters the data by an ending version. As Move chains use a per-transaction versioned database, we use version interchangably with block_number and omit blocks altogether.
  • access_path_address__in: Filters the data by a list of access_path_address.
  • resource_address__in: Filters the data by a list of resource_address.
  • resource_module__in: Filters the data by a list of resource_module.
  • resource_event_name__in: Filters the data by a list of resource_event_name.