Skip to main content

List asset activities

List parsed smart contract event/log(s) for a single asset

Path Parameters
  • assetId string required

    ID for the asset to fetch activities for

Query Parameters
  • walletAddress string

    This address must be a funding wallet

  • fromUTC string

    Filter for activities from this date (inclusive). Value should be a ISO 8601 string or RFC 2822 string

  • toUTC string

    Filter for activities up to this date (inclusive). Value should be a ISO 8601 string or RFC 2822 string

  • eventTypes string

    Possible values: [UserDeposit, UserWithdraw, LockedFunds, LockedFundsWithDeposit, LockedFundsRevoked, LockedFundsPaymentConfirmation]

    Comma-separated list of smart contract event names that should be included

  • limit number

    Amount of records to return (max 1000)

  • cursor string

    Cursor to retrieve the next page

  • order string

    Possible values: [asc, desc]

    Order of activities. Use "asc" for oldest first and "desc" for newest first

Responses

Successful operation


Schema
  • items object[]
  • Array [
  • eventId string required

    Event identifier. A unique ID generated from hash of blockHash, transactionHash, logIndex

  • eventType string required

    Smart contract event name

  • chain string required

    Blockchain from where the event was fetched. Currently only supports Polygon

  • lockedFundCurrency string required

    Transaction currency symbol. Currently only supports USDC currency

  • blockNumber number required

    Blockchain block number of the transaction initiating the event

  • transactionHash string required

    The transaction id on the blockchain

  • transactionDate string required

    ISO formatted date of the event

  • sourceAddress string required

    Initiating actor of the transaction containing this event, in the form of a smart contract or wallet address

  • targetAddress string

    Target actor of the transaction containing this event, in the form of a smart contract or wallet address

  • amount number

    Value of the transaction

  • ]
  • pageInfo object

    Page info for paginated results, undefined if no page info

  • nextCursor string

    Cursor for next page, undefined if no more pages

  • previousCursor string

    Cursor for previous page, undefined if no previous page

Loading...