Retrieves a list of Jetton burn events for a specific Jetton address from the TON blockchain
jetton/burns
endpoint retrieves a list of Jetton burn events from the TON blockchain. This endpoint allows you to fetch information about Jettons that have been permanently removed from circulation and provides options for pagination and sorting.
Running the interactive example will return the amount of DOGS burned.
limit
(integer, optional) — The maximum number of burn events to return. Default: 128
.offset
(integer, optional) — The number of burn events to skip before starting to return results. Default: 0
.sort
(string, optional) — The sorting order of the burn events. Possible values: asc
(ascending) or desc
(descending). Default: desc
.burns
(array) — An array of Jetton burn event objects, each containing:
jetton
(object) — Information about the burned Jetton:
address
(string) — The address of the Jetton master contract.name
(string) — The name of the Jetton.symbol
(string) — The symbol of the Jetton.burner
(object) — Information about the account that burned the Jettons:
address
(string) — The address of the burner.transaction
(object) — Information about the transaction:
hash
(string) — The hash of the transaction.time
(integer) — The timestamp of the transaction.amount
(string) — The amount of Jettons burned.comment
(string) — Any comment attached to the burn event.jetton/burns
endpoint is useful for various applications that need to track or analyze Jetton burn activities on the TON blockchain:
The address of the Jetton master contract
The maximum number of burn events to return
The number of burn events to skip before starting to return results
The sorting order of the burn events
asc
, desc
Successful response
The response is of type object
.