Movement Receipts

Fetch Movement writeset receipts for versions 10000 to 10100.

curl -s --location --request GET \
 "https://movement.app.pangea.foundation/v1/api/receipts?chains=MOVEMENT&from_block=10000&to_block=10100" \
 --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": "0xf4",
    "op": "Modification",
    "state_key": "0x011b854694ae746cdbd8d44186ca4929b2b337df21d1c74633be19b2710552fdca0619dc29a0aac8fa146714058e8dd6d2d0f3bdf5f6331907bf91f3acd81e6935",
    "data": "0x4188c707020000000100000000000000",
    "slot_deposit": "0x0",
    "bytes_deposit": "0x0",
    "creation_time_usecs": "0x0",
    "access_path_address": null,
    "resource_address": null,
    "resource_module": null,
    "resource_event_name": null
  }
]

Query Parameters

movement.app.pangea.foundation/v1/api/receipts?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.