contracts

List contract logs from a contract on the network

Search the logs of a specific contract across multiple contract calls. Chained logs are not included but can be found by calling /api/v1/contracts/{contractId}/results/{timestamp} or /api/v1/contracts/results/{transactionId}. When searching by topic a timestamp parameter must be supplied and span a time range of at most seven days.

Ordering

The order is governed by the combination of timestamp and index values. If the index param is omitted, the order is determined by the timestamp only.

Note: The default order for this API is currently DESC

Filtering

When filtering there are some restrictions enforced to ensure correctness and scalability.

The table below defines the restrictions and support for the endpoint

Query ParamComparison OperatorSupportDescriptionExample
indexeqYSingle occurrence only. Requires the presence of timestamp?index=X
neN
lt(e)YSingle occurrence only. Requires the presence of timestamp?index=lte:X
gt(e)YSingle occurrence only. Requires the presence of timestamp?index=gte:X
timestampeqYSingle occurrence only.?timestamp=Y
neN
lt(e)YSingle occurrence only. Optional second timestamp gt(e)?timestamp=lte:Y
gt(e)YSingle occurrence only. Optional second timestamp lt(e)?timestamp=gte:Y

Both filters must be a single occurrence of gt(e) or lt(e) which provide a lower and or upper boundary for search.

get/api/v1/contracts/{contractIdOrAddress}/results/logs

Path parameters

contractIdOrAddressstring required

Contract or account identifier in format shard.realm.num, realm.num, num or a 20-byte EVM address (with or without 0x prefix).

Query parameters

indexstring

Contract log index

limitinteger

The maximum number of items to return

order'asc' | 'desc'

The order in which items are listed

timestampstring[]

The consensus timestamp as a Unix timestamp in seconds.nanoseconds format with an optional comparison operator. See unixtimestamp.com for a simple way to convert a date to the 'seconds' part of the Unix time.

topic0string[]

The first topic associated with a contract log. Requires a timestamp range also be populated.

topic1string[]

The second topic associated with a contract log. Requires a timestamp range also be populated.

topic2string[]

The third topic associated with a contract log. Requires a timestamp range also be populated.

topic3string[]

The fourth topic associated with a contract log. Requires a timestamp range also be populated.

Response

OK

logsContractLogs — unresolved $ref

Changes

Changed in 2 of the 53 revisions of this API.82

    • removed the non-success response with the status 404

      response-non-success-status-removed

  • v1db389f03b09781See the full diff
    • the response property _status/messages/items/data became nullable for the status 400

      response-property-became-nullable

    • the response property _status/messages/items/detail became nullable for the status 400

      response-property-became-nullable

    • the response property links/next became nullable for the status 200

      response-property-became-nullable

    • the response property logs/items/allOf[ContractResultLog]/bloom/allOf[Bloom]/ became nullable for the status 200

      response-property-became-nullable

    • the response property logs/items/allOf[ContractResultLog]/contract_id became nullable for the status 200

      response-property-became-nullable

    • the response property logs/items/allOf[ContractResultLog]/data became nullable for the status 200

      response-property-became-nullable

    • the response property logs/items/allOf[subschema #2]/root_contract_id/allOf[EntityId]/ became nullable for the status 200

      response-property-became-nullable

    • the response property logs/items/allOf[subschema #2]/transaction_index became nullable for the status 200

      response-property-became-nullable

    • added the non-success response with the status 404

      response-non-success-status-added

    This revision also has 22 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog