Polygon Transactions

These are legacy Polygon tables. See Polygon 2.0 for up-to-date Polygon models.

Polygon transactions exist within the polygon schema, as polygon.transactions .

Transactions contain top-level summary information not found in polygon.udm_events, for example, transaction fees and gas.

Table Schema

polygon.transactions

Field

Type

Description

block_id

number

The block height this event was recorded at.

block_timestamp

timestamp

UTC block timestamp for parent block

tx_id

string

The hash (unique identifier) of the transaction.

tx_position

string

The position of the transaction in the block.

nonce

number

The number of transactions sent from the from_address.

from_address

address

The sender/initiator of the transaction.

from_address_name

from_label

from_label_subtype

from_label_type

to_address

text

The recipient of the transaction, or contract being called.

to_addres_name

to_label

to_label_subtype

to_label_type

symbol

text

The project symbol (i.e. ERC-20 transaction), if applicable.

function_signature

string

The function signature of the contract call, if applicable.

function_name

string

The English decoded name of the function signature, if applicable.

gas_price

number

The gas price at the time of this transaction.

gas_limit

number

The gas limit specified in this transaction.

gas_used

number

The amount of gas used by this transaction.

fee

number

The transaction fee calculated from the gas price and the gas used.

fee_usd

number

The USD equivalent fee at the time of the transaction.

success

text

The success state of this transaction execution.

event_count

number

The number of events contained within this transaction.

Last updated