Native Transfer Event
Native transfer event data example and explaination
When a native transfer event occurs, Crypitor sends a JSON payload to your webhook endpoint. Below is an example of such a payload and an explanation of its structure:
Example Payload:
Data Explanation
chain: The blockchain network where the event occurred (e.g., Avalanche)
monitorId: Unique identifier for the monitor that captured the event.
hash: Transaction hash associated with the event.
blockNumber: Block number in which the transaction was included.
fromAddress: Address from which the native cryptocurrency was sent.
toAddress: Address to which the native cryptocurrency was sent.
nativeAmount: Amount of native cryptocurrency transferred (in the smallest unit, e.g., wei for ETH).
type: Transaction type (e.g., "in" for incoming).
confirm: Boolean indicating whether the transaction is confirmed.
category: Type of transfer (e.g., Native for native cryptocurrency).
dateCreated: Timestamp of when the event was detected.
txnIndex: Position of the transaction in the block.
associatedAddress: Wallet address associated with the event.
eventId: Unique identifier for the event.
tags: Tags associated with the monitor (if any).
Last updated