TezTok

Documentation

Tezos Foundation
Tezos
Github

    Get started
    Introduction
    Installation
    Principles
    Architecture
    Plugins
    Examples

Events

TezTok Events play a crucial role in the indexer. The indexer monitors the Tezos Mainnet and generates normalized TezTok events for NFT-related activities that occur on the network. Here is an example event that represents the transfer of a token from one Tezos account to another:

{ id: 'ea1d4a084007c5e24fcd7dcd3a8b9092', type: 'FA2_TRANSFER', opid: 52568926, level: 1495010, timestamp: '2021-05-31T08:08:46Z', ophash: 'op8dmZUuY4qu2Kp7Hok9DQVMzXr1YZrsLaA2C4svAmtQCiaXmNZ', fa2_address: 'KT1RJ6PbjHpwc3M5rw5s2Nbmefwbuwbdxton', token_id: '58486', from_address: 'KT1Hkg5qeNhfwpKW4fXvq7HGZB9z2EnmCCA9', to_address: 'tz1ejpAPJZAe2boiKUGwb6cq5dckTZ8hXn2A', amount: 1 }

Let's have a closer look at the different properties of this event:

  • id: A unique ID that is used to identify the event.
  • type: The kind of event. In this case, it's set to
    FA2_TRANSFER
    , which indicates the transfer of a token from one Tezos account to another.
  • opid: An ID created by TzKT that is used to identify an operation.
  • level: The level of the block that contains the operation that led to this TezTok event.
  • timestamp: The date/time of the block that contains the operation that led to this TezTok event.
  • ophash: The hash of the operation that led to this TezTok event.
  • fa2_address and token_id: The Tezos address of the contract and the id of the token.
  • from_address and to_address: The Tezos account that sent the token and the Tezos account that received it.
  • amount: The number of editions that were transferred.

All TezTok events have the properties id, type, opid,level, timestamp and ophash. If the event refers to a token (which is the case for most events), it will have the properties fa2_address and token_id. Depending on the type of event, it has additional properties. In the case of the example, it has the additional properties from_address, to_address and amount.

Sale Events

Sale events represent a sale of a token. They all share the properties seller_address, buyer_address and price, as well as a property implements that is set to the value SALE. Sale events are especially useful to do volume-related aggregations. For example, this GraphQL query will return how much a certain account has spent on buying NFTs:

query SpentInTotal { events_aggregate(where: {implements: {_eq: "SALE"}, buyer_address: {_eq: "tz1RJrjBafWDdNhnJDK41ivKRuecMjY9NaxB"}}) { aggregate { sum { price } } } }

FA2_TRANSFER

Copy

A token got transferred from one Tezos account to another.

Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
from_addressstringThe Tezos address of the account that sent the token.
to_addressstringThe Tezos address of the account that received the token.
amountbig integerThe amount of tokens.

SET_LEDGER

Copy

The balance of a ledger entry got updated. This happens for example when editions of a token get transferred.

Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
ledger_typestringEither ‘MULTI_ASSET’ or ‘NFT_ASSET’.
holder_addressstringThe Tezos address of the holder.
amountbig integerThe amount of tokens.
is_mintbooleanSet to true if it's the mint.

HEN_CANCEL_SWAP

Copy

A swap on the first version of the hic et nunc marketplace contract was canceled (marketplace contract: KT1Hkg5qeNhfwpKW4fXvq7HGZB9z2EnmCCA9).

hic et nunc
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
swap_idbig integerThe ID of the swap (created by the marketplace contract).

HEN_CANCEL_SWAP_V2

Copy

A swap on the second version of the hic et nunc marketplace contract was cancelled (marketplace contract: KT1HbQepzV1nVGg8QVznG7z4RcHseD5kwqBn).

hic et nunc
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
swap_idbig integerThe ID of the swap (created by the marketplace contract).

HEN_COLLECT

Copy

A token was collected on the first version of the hic et nunc marketplace contract (marketplace contract: KT1Hkg5qeNhfwpKW4fXvq7HGZB9z2EnmCCA9).

hic et nunc
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
swap_idbig integerThe ID of the swap (created by the marketplace contract).

HEN_COLLECT_V2

Copy

A token was collected on the second version of the hic et nunc marketplace contract (marketplace contract: KT1HbQepzV1nVGg8QVznG7z4RcHseD5kwqBn).

hic et nunc
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
swap_idbig integerThe ID of the swap (created by the marketplace contract).

HEN_MINT

Copy

A token was minted on hic et nunc.

hic et nunc
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
royaltiesbig integerdeprecated field
editionsbig integerThe number of editions.
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.
royalty_sharesjsonAn object containing information about the royalty receivers (who gets how much royalties).

HEN_SWAP

Copy

A token was swapped on the first version of the hic et nunc marketplace contract (marketplace contract: KT1Hkg5qeNhfwpKW4fXvq7HGZB9z2EnmCCA9).

hic et nunc
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
swap_idbig integerThe ID of the swap (created by the marketplace contract).
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
amountbig integerThe amount of tokens.

HEN_SWAP_V2

Copy

A token was swapped on the second version of the hic et nunc marketplace contract (marketplace contract: KT1HbQepzV1nVGg8QVznG7z4RcHseD5kwqBn).

hic et nunc
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
seller_addressstringThe Tezos address of the seller.
swap_idbig integerThe ID of the swap (created by the marketplace contract).
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
royaltiesbig integerdeprecated field
amountbig integerThe amount of tokens.

OBJKT_ASK

Copy

An ask was created on objkt.com (marketplace contract: KT1FvqJwEDWb1Gwc55Jd1jjTHRVWbYKUUpyq).

objkt.com
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
ask_idbig integerThe ID of the ask (created by the marketplace contract).
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
currencystringSet to tez or otez (wrapped tez from objkt.com).
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
amountbig integerThe amount of tokens.
end_timetimestamp

OBJKT_ASK_V2

Copy

An ask was created on objkt.com (marketplace contract: KT1WvzYHCNBvDSdwafTHv7nJ1dWmZ8GCYuuC).

objkt.com
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
ask_idbig integerThe ID of the ask (created by the marketplace contract).
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
currencystringSet to tez or otez (wrapped tez from objkt.com).
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
amountbig integerThe amount of tokens.
end_timetimestamp
royalty_sharesjsonAn object containing information about the royalty receivers (who gets how much royalties).

OBJKT_BID

Copy

A bid (also known as an offer) was created on objkt.com (marketplace contract: KT1FvqJwEDWb1Gwc55Jd1jjTHRVWbYKUUpyq).

objkt.com
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
bid_idbig integerThe ID of the bid (created by the marketplace contract).
buyer_addressstringThe Tezos address of the buyer.
artist_addressstringThe Tezos address of the artist.
royaltiesbig integerdeprecated field
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).

OBJKT_OFFER

Copy

An offer was created on objkt.com (marketplace contract: KT1WvzYHCNBvDSdwafTHv7nJ1dWmZ8GCYuuC).

objkt.com
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
offer_idbig integerThe ID of the offer (created by the marketplace contract).
buyer_addressstringThe Tezos address of the buyer.
artist_addressstringThe Tezos address of the artist.
currencystringSet to tez or otez (wrapped tez from objkt.com).
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
end_pricebig integerEnd price in micro tez (e.g. 1000000 = 1 tez).
royalty_sharesjsonAn object containing information about the royalty receivers (who gets how much royalties).

OBJKT_FULFILL_ASK

Copy

An ask was fulfilled on objkt.com (marketplace contract: KT1FvqJwEDWb1Gwc55Jd1jjTHRVWbYKUUpyq).

objkt.com
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
ask_idbig integerThe ID of the ask (created by the marketplace contract).

OBJKT_FULFILL_ASK_V2

Copy

An ask was fulfilled on objkt.com (marketplace contract: KT1WvzYHCNBvDSdwafTHv7nJ1dWmZ8GCYuuC).

objkt.com
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
ask_idbig integerThe ID of the ask (created by the marketplace contract).

OBJKT_FULFILL_BID

Copy

A bid (also known as an offer) was fulfilled on objkt.com (marketplace contract: KT1FvqJwEDWb1Gwc55Jd1jjTHRVWbYKUUpyq).

objkt.com
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
bid_idbig integerThe ID of the bid (created by the marketplace contract).
artist_addressstringThe Tezos address of the artist.

OBJKT_FULFILL_OFFER

Copy

An offer was fulfilled on objkt.com (marketplace contract: KT1WvzYHCNBvDSdwafTHv7nJ1dWmZ8GCYuuC).

objkt.com
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
offer_idbig integerThe ID of the offer (created by the marketplace contract).
artist_addressstringThe Tezos address of the artist.

OBJKT_MINT_ARTIST

Copy

A token was minted in an artist collection on objkt.com.

objkt.com
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
collection_idbig integerThe ID of the artist collection on objkt.com.
editionsbig integerThe number of editions.
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.

OBJKT_RETRACT_ASK

Copy

An ask was cancelled on objkt.com (marketplace contract: KT1FvqJwEDWb1Gwc55Jd1jjTHRVWbYKUUpyq).

objkt.com
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
seller_addressstringThe Tezos address of the seller.
ask_idbig integerThe ID of the ask (created by the marketplace contract).

OBJKT_RETRACT_ASK_V2

Copy

An ask was canceled on objkt.com (marketplace contract: KT1WvzYHCNBvDSdwafTHv7nJ1dWmZ8GCYuuC).

objkt.com
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
seller_addressstringThe Tezos address of the seller.
ask_idbig integerThe ID of the ask (created by the marketplace contract).

OBJKT_RETRACT_BID

Copy

A bid (also known as an offer) was canceled on objkt.com (marketplace contract: KT1FvqJwEDWb1Gwc55Jd1jjTHRVWbYKUUpyq).

objkt.com
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
buyer_addressstringThe Tezos address of the buyer.
bid_idbig integerThe ID of the bid (created by the marketplace contract).

OBJKT_RETRACT_OFFER

Copy

An offer was canceled on objkt.com (marketplace contract: KT1WvzYHCNBvDSdwafTHv7nJ1dWmZ8GCYuuC).

objkt.com
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
buyer_addressstringThe Tezos address of the buyer.
offer_idbig integerThe ID of the offer (created by the marketplace contract).

OBJKT_CREATE_ENGLISH_AUCTION

Copy

An english auction was created on objkt.com (marketplace contract: KT1Wvk8fon9SgNEPQKewoSL2ziGGuCQebqZc or KT1XjcRq5MLAzMKQ3UHsrue2SeU2NbxUrzmU).

objkt.com
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
reservebig integer
start_timetimestamp
end_timetimestamp
extension_timebig integer
royaltiesbig integerdeprecated field
price_incrementbig integer
amountbig integerThe amount of tokens.

OBJKT_BID_ENGLISH_AUCTION

Copy

A bid on an English auction on objkt.com was made (marketplace contract: KT1Wvk8fon9SgNEPQKewoSL2ziGGuCQebqZc or KT1XjcRq5MLAzMKQ3UHsrue2SeU2NbxUrzmU).

objkt.com
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
bidder_addressstringThe Tezos address of the bidder.
reservebig integer
start_timetimestamp
end_timetimestamp
current_pricebig integerCurrent price in micro tez (e.g. 1000000 = 1 tez).
extension_timebig integer
highest_bidder_addressstringThe Tezos address of the highest bidder.
royaltiesbig integerdeprecated field
price_incrementbig integer
auction_idbig integerThe ID of the auction (created by the marketplace contract).
bidbig integerBid in micro tez (e.g. 1000000 = 1 tez).

OBJKT_CANCEL_ENGLISH_AUCTION

Copy

An english auction was canceled on objkt.com (marketplace contract: KT1ET45vnyEFMLS9wX1dYHEs9aCN3twDEiQw or KT1QJ71jypKGgyTNtXjkCAYJZNhCKWiHuT2r).

objkt.com
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
reservebig integer
start_timetimestamp
end_timetimestamp
current_pricebig integerCurrent price in micro tez (e.g. 1000000 = 1 tez).
extension_timebig integer
highest_bidder_addressstringThe Tezos address of the highest bidder.
royaltiesbig integerdeprecated field
price_incrementbig integer
auction_idbig integerThe ID of the auction (created by the marketplace contract).

OBJKT_CONCLUDE_ENGLISH_AUCTION

Copy

An English auction was concluded on objkt.com (marketplace contract: KT1Wvk8fon9SgNEPQKewoSL2ziGGuCQebqZc or KT1XjcRq5MLAzMKQ3UHsrue2SeU2NbxUrzmU).

objkt.com
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
reservebig integer
start_timetimestamp
end_timetimestamp
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
extension_timebig integer
royaltiesbig integerdeprecated field
price_incrementbig integer
auction_idbig integerThe ID of the auction (created by the marketplace contract).

OBJKT_CREATE_DUTCH_AUCTION

Copy

A dutch auction was created on objkt.com (marketplace contract: KT1ET45vnyEFMLS9wX1dYHEs9aCN3twDEiQw or KT1QJ71jypKGgyTNtXjkCAYJZNhCKWiHuT2r).

objkt.com
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
start_timetimestamp
end_timetimestamp
start_pricebig integerStart price in micro tez (e.g. 1000000 = 1 tez).
end_pricebig integerEnd price in micro tez (e.g. 1000000 = 1 tez).
royaltiesbig integerdeprecated field
auction_idbig integerThe ID of the auction (created by the marketplace contract).

OBJKT_CANCEL_DUTCH_AUCTION

Copy

A dutch auction was canceled on objkt.com (marketplace contract: KT1ET45vnyEFMLS9wX1dYHEs9aCN3twDEiQw or KT1QJ71jypKGgyTNtXjkCAYJZNhCKWiHuT2r).

objkt.com
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
start_timetimestamp
end_timetimestamp
start_pricebig integerStart price in micro tez (e.g. 1000000 = 1 tez).
end_pricebig integerEnd price in micro tez (e.g. 1000000 = 1 tez).
royaltiesbig integerdeprecated field
auction_idbig integerThe ID of the auction (created by the marketplace contract).

OBJKT_BUY_DUTCH_AUCTION

Copy

A token that was auctioned through a dutch auction was bought on objkt.com (marketplace contract: KT1ET45vnyEFMLS9wX1dYHEs9aCN3twDEiQw or KT1QJ71jypKGgyTNtXjkCAYJZNhCKWiHuT2r).

objkt.com
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
start_timetimestamp
end_timetimestamp
start_pricebig integerStart price in micro tez (e.g. 1000000 = 1 tez).
end_pricebig integerEnd price in micro tez (e.g. 1000000 = 1 tez).
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
royaltiesbig integerdeprecated field
auction_idbig integerThe ID of the auction (created by the marketplace contract).

OBJKT_SETTLE_ENGLISH_AUCTION

Copy

An English auction was settled on objkt.com. Either the token was bought or the auction ended without a sale. (marketplace contract: KT18p94vjkkHYY3nPmernmgVR7HdZFzE7NAk).

objkt.com
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
currencystringSet to tez or otez (wrapped tez from objkt.com).
reservebig integer
start_timetimestamp
end_timetimestamp
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
editionsbig integerThe number of editions.
price_incrementbig integer
auction_idbig integerThe ID of the auction (created by the marketplace contract).

OBJKT_BUY_DUTCH_AUCTION_V2

Copy

A token that was auctioned through a dutch auction was bought on objkt.com (marketplace contract: KT1XXu88HkNzQRHNgAf7Mnq68LyS9MZJNoHP).

objkt.com
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
currencystringSet to tez or otez (wrapped tez from objkt.com).
start_timetimestamp
end_timetimestamp
start_pricebig integerStart price in micro tez (e.g. 1000000 = 1 tez).
end_pricebig integerEnd price in micro tez (e.g. 1000000 = 1 tez).
amountbig integerThe amount of tokens.
auction_idbig integerThe ID of the auction (created by the marketplace contract).

OBJKT_CLAIM

Copy

An open edition was bought/claimed on objkt.com.

objkt.com
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).

OBJKT_CREATE_TOKEN

Copy

An open edition was minted in an artist collection on objkt.com.

objkt.com
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
editionsbig integerThe number of editions.
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.

OBJKT_OBJKTONE_SETTLE_AUCTION

Copy

An auction was settled on objkt.one. Either the token was bought or the auction ended without a sale. (marketplace contract: KT1M6r2gRigUYP3tCSEjEptRnNG8qRLSRqcT).

objkt.com
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
currencystringSet to tez or otez (wrapped tez from objkt.com).
reservebig integer
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
editionsbig integerThe number of editions.
price_incrementbig integer
auction_idbig integerThe ID of the auction (created by the marketplace contract).

FX_MINT_ISSUER

Copy

A new generator token was created on fxhash (contract: KT1AEVuykWeuuFX7QkEAMNtffzwhe1Z98hJS).

NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
levelbig integerThe level of the block that contains the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
ophashstringThe hash of the operation which led to this event.
issuer_idbig integerThe ID of the generative token.
royaltiesbig integerdeprecated field
editionsbig integerThe number of editions.
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).

FX_MINT_ISSUER_V2

Copy

A generator token was created on fxhash (contract: KT1XCoGnfupWk7Sp8536EfrxcP73LmT68Nyr).

NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
levelbig integerThe level of the block that contains the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
ophashstringThe hash of the operation which led to this event.
issuer_idbig integerThe ID of the generative token.
royaltiesbig integerdeprecated field
editionsbig integerThe number of editions.
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).

FX_MINT_ISSUER_V3

Copy

A generator token was created on fxhash (contract: KT1BJC12dG17CVvPKJ1VYaNnaT5mzfnUTwXv).

NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
levelbig integerThe level of the block that contains the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
ophashstringThe hash of the operation which led to this event.
issuer_idbig integerThe ID of the generative token.
royaltiesbig integerdeprecated field
editionsbig integerThe number of editions.
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.

FX_MINT_ISSUER_V4

Copy

A generator token was created on fxhash (contract: KT1Xpmp15KfqoePNW9HczFmqaGNHwadV2a3b).

NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
levelbig integerThe level of the block that contains the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
ophashstringThe hash of the operation which led to this event.
issuer_idbig integerThe ID of the generative token.
royaltiesbig integerdeprecated field
editionsbig integerThe number of editions.
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.

FX_COLLECT

Copy

A token was collected on fxhash (marketplace contract: KT1Xo5B7PNBAeynZPmca4bRh6LQow4og1Zb9).

Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
offer_idbig integerThe ID of the offer (created by the marketplace contract).
artist_addressstringThe Tezos address of the artist.
seller_addressstringThe Tezos address of the seller.

FX_LISTING_ACCEPT

Copy

A listing was accepted on fxhash (marketplace contract: KT1GbyoDi7H1sfXmimXpptZJuCdHMh66WS9u).

Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
swap_idbig integerThe ID of the swap (created by the marketplace contract).

FX_MINT

Copy

A token was minted on fxhash (mint contract: KT1AEVuykWeuuFX7QkEAMNtffzwhe1Z98hJS).

Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
royaltiesbig integerdeprecated field
issuer_idbig integerThe ID of the generative token.
editionsbig integerThe number of editions.
iterationbig integer
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.
royalty_sharesjsonAn object containing information about the royalty receivers (who gets how much royalties).

FX_MINT_V2

Copy

A token was minted on fxhash (mint contract: KT1XCoGnfupWk7Sp8536EfrxcP73LmT68Nyr).

Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
royaltiesbig integerdeprecated field
issuer_idbig integerThe ID of the generative token.
editionsbig integerThe number of editions.
iterationbig integer
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.
royalty_sharesjsonAn object containing information about the royalty receivers (who gets how much royalties).

FX_MINT_V3

Copy

A token was minted on fxhash (mint contract: KT1BJC12dG17CVvPKJ1VYaNnaT5mzfnUTwXv).

Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
royaltiesbig integerdeprecated field
issuer_idbig integerThe ID of the generative token.
editionsbig integerThe number of editions.
iterationbig integer
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.
royalty_sharesjsonAn object containing information about the royalty receivers (who gets how much royalties).

FX_MINT_V4

Copy

A gentk token was minted on fxhash directly, without a ticket (mint contract: KT1Xpmp15KfqoePNW9HczFmqaGNHwadV2a3b).

Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
royaltiesbig integerdeprecated field
issuer_idbig integerThe ID of the generative token.
editionsbig integerThe number of editions.
iterationbig integer
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.
royalty_sharesjsonAn object containing information about the royalty receivers (who gets how much royalties).

FX_OFFER

Copy

An offer was created on fxhash. In this case, the offer is like a swap or an ask. (marketplace contract: KT1Xo5B7PNBAeynZPmca4bRh6LQow4og1Zb9).

Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
offer_idbig integerThe ID of the offer (created by the marketplace contract).
royaltiesbig integerdeprecated field
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).

FX_LISTING

Copy

A listing was created on fxhash (marketplace contract: KT1GbyoDi7H1sfXmimXpptZJuCdHMh66WS9u).

Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
swap_idbig integerThe ID of the swap (created by the marketplace contract).
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).

FX_CANCEL_OFFER

Copy

An offer was canceled on fxhash. In this case, the offer is like a swap or an ask. (marketplace contract: KT1Xo5B7PNBAeynZPmca4bRh6LQow4og1Zb9).

Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
offer_idbig integerThe ID of the offer (created by the marketplace contract).

FX_LISTING_CANCEL

Copy

A listing was canceled on fxhash (marketplace contract: KT1GbyoDi7H1sfXmimXpptZJuCdHMh66WS9u).

Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
swap_idbig integerThe ID of the swap (created by the marketplace contract).

FX_OFFER_V3

Copy

An offer was created on fxhash (marketplace contract: KT1GbyoDi7H1sfXmimXpptZJuCdHMh66WS9u).

Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
buyer_addressstringThe Tezos address of the buyer.
offer_idbig integerThe ID of the offer (created by the marketplace contract).
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).

FX_OFFER_ACCEPT_V3

Copy

An offer was accepted on fxhash (marketplace contract: KT1GbyoDi7H1sfXmimXpptZJuCdHMh66WS9u).

Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
offer_idbig integerThe ID of the offer (created by the marketplace contract).

FX_OFFER_CANCEL_V3

Copy

An offer was canceled on fxhash (marketplace contract: KT1GbyoDi7H1sfXmimXpptZJuCdHMh66WS9u).

Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
buyer_addressstringThe Tezos address of the buyer.
offer_idbig integerThe ID of the offer (created by the marketplace contract).

FX_MINT_WITH_TICKET

Copy

A token was minted with a ticket on fxhash (mint contract: KT1Xpmp15KfqoePNW9HczFmqaGNHwadV2a3b).

Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
royaltiesbig integerdeprecated field
issuer_idbig integerThe ID of the generative token.
editionsbig integerThe number of editions.
iterationbig integer
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.
royalty_sharesjsonAn object containing information about the royalty receivers (who gets how much royalties).

FX_COLLECTION_OFFER_ACCEPT

Copy

A collection offer was accepted on fxhash (marketplace contract: KT1GbyoDi7H1sfXmimXpptZJuCdHMh66WS9u).

Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
offer_idbig integerThe ID of the offer (created by the marketplace contract).

SET_METADATA

Copy

The metadata URI of a token was updated. This event usually also fires during the mint of a token.

Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.
metadatajsonA JSON containing the metadata of the token.

VERSUM_MINT

Copy

A token was minted on versum.

versum
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
royaltiesbig integerdeprecated field
editionsbig integerThe number of editions.
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.
royalty_sharesjsonAn object containing information about the royalty receivers (who gets how much royalties).

VERSUM_SWAP

Copy

A token was swapped on versum (marketplace contract: KT1GyRAJNdizF1nojQz62uGYkx8WFRUJm9X5).

versum
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
seller_addressstringThe Tezos address of the seller.
swap_idbig integerThe ID of the swap (created by the marketplace contract).
start_pricebig integerStart price in micro tez (e.g. 1000000 = 1 tez).
end_pricebig integerEnd price in micro tez (e.g. 1000000 = 1 tez).
end_timetimestamp
amountbig integerThe amount of tokens.
burn_on_endbooleanSet to true if the remaining editions should be burned once the swap ended.

VERSUM_CANCEL_SWAP

Copy

A swap was canceled on versum (marketplace contract: KT1GyRAJNdizF1nojQz62uGYkx8WFRUJm9X5).

versum
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
offer_idbig integerThe ID of the offer (created by the marketplace contract).
amountbig integerThe amount of tokens.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).

VERSUM_COLLECT_SWAP

Copy

A token was collected on versum (marketplace contract: KT1GyRAJNdizF1nojQz62uGYkx8WFRUJm9X5).

versum
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
swap_idbig integerThe ID of the swap (created by the marketplace contract).
amountbig integerThe amount of tokens.

VERSUM_MAKE_OFFER

Copy

An offer was created on versum (marketplace contract: KT1GyRAJNdizF1nojQz62uGYkx8WFRUJm9X5).

versum
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
end_timetimestamp
amountbig integerThe amount of tokens.
auction_idbig integerThe ID of the auction (created by the marketplace contract).
start_pricebig integerStart price in micro tez (e.g. 1000000 = 1 tez).

VERSUM_ACCEPT_OFFER

Copy

An offer was accepted on versum (marketplace contract: KT1GyRAJNdizF1nojQz62uGYkx8WFRUJm9X5).

versum
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
offer_idbig integerThe ID of the offer (created by the marketplace contract).
amountbig integerThe amount of tokens.

VERSUM_CANCEL_OFFER

Copy

An offer was canceled on versum (marketplace contract: KT1GyRAJNdizF1nojQz62uGYkx8WFRUJm9X5).

versum
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
buyer_addressstringThe Tezos address of the buyer.
artist_addressstringThe Tezos address of the artist.
offer_idbig integerThe ID of the offer (created by the marketplace contract).
amountbig integerThe amount of tokens.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).

VERSUM_CREATE_AUCTION

Copy

An auction was created on versum.

versum
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
end_timetimestamp
amountbig integerThe amount of tokens.
auction_idbig integerThe ID of the auction (created by the marketplace contract).
start_pricebig integerStart price in micro tez (e.g. 1000000 = 1 tez).

TEIA_SWAP

Copy

A token was swapped on the Teia marketplace contract (marketplace contract: KT1PHubm9HtyQEJ4BBpMTVomq6mhbfNZ9z5w).

Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
seller_addressstringThe Tezos address of the seller.
swap_idbig integerThe ID of the swap (created by the marketplace contract).
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
royaltiesbig integerdeprecated field
amountbig integerThe amount of tokens.

TEIA_CANCEL_SWAP

Copy

A swap on the Teia marketplace contract was canceled (marketplace contract: KT1PHubm9HtyQEJ4BBpMTVomq6mhbfNZ9z5w).

Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
swap_idbig integerThe ID of the swap (created by the marketplace contract).

TEIA_COLLECT

Copy

A token was collected on the Teia marketplace contract (marketplace contract: KT1PHubm9HtyQEJ4BBpMTVomq6mhbfNZ9z5w).

Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
swap_idbig integerThe ID of the swap (created by the marketplace contract).

8BID_8X8_COLOR_MINT

Copy

An 8x8 color token was minted on 8bidou.

8bidou
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
editionsbig integerThe number of editions.
artist_addressstringThe Tezos address of the artist.
token_namestringThe name of the token.
creator_namestringThe name of the creator of the token.
token_descriptionstringThe description of the token.
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.
rgbstringContains the RGB values of 8BIDOU on-chain tokens.
royalty_sharesjsonAn object containing information about the royalty receivers (who gets how much royalties).

8BID_8X8_COLOR_SWAP

Copy

An 8x8 color token was swapped on 8bidou.

8bidou
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
seller_addressstringThe Tezos address of the seller.
swap_idbig integerThe ID of the swap (created by the marketplace contract).
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
royaltiesbig integerdeprecated field
amountbig integerThe amount of tokens.

8BID_8X8_COLOR_BUY

Copy

An 8x8 color token was bought on 8bidou.

8bidou
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
swap_idbig integerThe ID of the swap (created by the marketplace contract).

8BID_8X8_COLOR_CANCEL_SWAP

Copy

A swap of an 8x8 color token was canceled on 8bidou.

8bidou
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
swap_idbig integerThe ID of the swap (created by the marketplace contract).

8BID_24X24_MONOCHROME_MINT

Copy

A 24x24 monochrome token was minted on 8bidou.

8bidou
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
editionsbig integerThe number of editions.
artist_addressstringThe Tezos address of the artist.
token_namestringThe name of the token.
creator_namestringThe name of the creator of the token.
token_descriptionstringThe description of the token.
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.
rgbstringContains the RGB values of 8BIDOU on-chain tokens.
royalty_sharesjsonAn object containing information about the royalty receivers (who gets how much royalties).

8BID_24X24_MONOCHROME_SWAP

Copy

A 24x24 monochrome token was swapped on 8bidou.

8bidou
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
seller_addressstringThe Tezos address of the seller.
swap_idbig integerThe ID of the swap (created by the marketplace contract).
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
royaltiesbig integerdeprecated field
amountbig integerThe amount of tokens.

8BID_24X24_MONOCHROME_BUY

Copy

A 24x24 monochrome token was bought on 8bidou.

8bidou
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
swap_idbig integerThe ID of the swap (created by the marketplace contract).

8BID_24X24_MONOCHROME_CANCEL_SWAP

Copy

A swap of a 24x24 monochrome token was canceled on 8bidou.

8bidou
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
swap_idbig integerThe ID of the swap (created by the marketplace contract).

8BID_24X24_COLOR_MINT

Copy

A 24x24 color token was minted on 8bidou.

8bidou
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
editionsbig integerThe number of editions.
artist_addressstringThe Tezos address of the artist.
token_namestringThe name of the token.
creator_namestringThe name of the creator of the token.
token_descriptionstringThe description of the token.
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.
rgbstringContains the RGB values of 8BIDOU on-chain tokens.
royalty_sharesjsonAn object containing information about the royalty receivers (who gets how much royalties).

8BID_24X24_COLOR_SWAP

Copy

A 24x24 color token was swapped on 8bidou.

8bidou
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
seller_addressstringThe Tezos address of the seller.
swap_idbig integerThe ID of the swap (created by the marketplace contract).
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
royaltiesbig integerdeprecated field
amountbig integerThe amount of tokens.

8BID_24X24_COLOR_CANCEL_SWAP

Copy

A swap of a 24x24 color token was canceled on 8bidou.

8bidou
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
swap_idbig integerThe ID of the swap (created by the marketplace contract).

8BID_24X24_COLOR_BUY

Copy

A 24x24 color token was bought on 8bidou.

8bidou
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
swap_idbig integerThe ID of the swap (created by the marketplace contract).

TYPED_MINT

Copy

A token was minted on typed.

typed
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
editionsbig integerThe number of editions.
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.
royalty_sharesjsonAn object containing information about the royalty receivers (who gets how much royalties).

TYPED_SWAP

Copy

A token was swapped on typed (marketplace contract: KT1VoZeuBMJF6vxtLqEFMoc4no5VDG789D7z).

typed
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
seller_addressstringThe Tezos address of the seller.
swap_idbig integerThe ID of the swap (created by the marketplace contract).
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
amountbig integerThe amount of tokens.

TYPED_CANCEL_SWAP

Copy

A swap was canceled on typed (marketplace contract: KT1VoZeuBMJF6vxtLqEFMoc4no5VDG789D7z).

typed
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
seller_addressstringThe Tezos address of the seller.
swap_idbig integerThe ID of the swap (created by the marketplace contract).

TYPED_COLLECT

Copy

A token was collected on typed (marketplace contract: KT1VoZeuBMJF6vxtLqEFMoc4no5VDG789D7z).

typed
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
swap_idbig integerThe ID of the swap (created by the marketplace contract).

8SCRIBO_MINT

Copy

A token was minted on 8SCRIBO.

8scribo
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
editionsbig integerThe number of editions.
artist_addressstringThe Tezos address of the artist.
eightscribo_titlestringThe title of the token.
eightscribo_rowonestringThe text in the first row.
eightscribo_rowtwostringThe text in the second row.
eightscribo_rowthreestringThe text in the third row.
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.
royalty_sharesjsonAn object containing information about the royalty receivers (who gets how much royalties).

8SCRIBO_SWAP

Copy

A token was swapped on 8SCRIBO.

8scribo
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
seller_addressstringThe Tezos address of the seller.
swap_idbig integerThe ID of the swap (created by the marketplace contract).
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
royaltiesbig integerdeprecated field
amountbig integerThe amount of tokens.

8SCRIBO_CANCEL_SWAP

Copy

A swap was canceled on 8SCRIBO.

8scribo
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
artist_addressstringThe Tezos address of the artist.
swap_idbig integerThe ID of the swap (created by the marketplace contract).

8SCRIBO_COLLECT

Copy

A token was collected on 8SCRIBO.

8scribo
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).
artist_addressstringThe Tezos address of the artist.
swap_idbig integerThe ID of the swap (created by the marketplace contract).

RARIBLE_MINT

Copy

A token was minted on rarible.

rarible
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
editionsbig integerThe number of editions.
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.
royalty_sharesjsonAn object containing information about the royalty receivers (who gets how much royalties).

KALAMINT_MINT

Copy

A token was minted on Kalamint.

kalamint
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
artist_addressstringThe Tezos address of the artist.
is_verified_artistbooleanIf the artist_address of the event is the same as the address of the Tezos account that called the mint endpoint, this is set to true.
editionsbig integerThe number of editions.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
metadata_uristringA URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'.
royalty_sharesjsonAn object containing information about the royalty receivers (who gets how much royalties).
kalamint_editionbig integerThe edition of the token. Note that on Kalamint each edition is minted as separate token.
kalamint_editionsbig integerThe number of editions. Note that on Kalamint each edition is minted as separate token.
kalamint_on_salebooleanIf the token is up for sale.

KALAMINT_LIST_TOKEN

Copy

A token was listed for sale on Kalamint.

kalamint
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).

KALAMINT_DELIST_TOKEN

Copy

A token was delisted on Kalamint.

kalamint
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
seller_addressstringThe Tezos address of the seller.

KALAMINT_BUY

Copy

A token was bought on Kalamint.

kalamint
Token Event
Sales Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP
implementsstringThis is set to "SALE", meaning that this event represents the sale of a token.
seller_addressstringThe Tezos address of the seller.
buyer_addressstringThe Tezos address of the buyer.
pricebig integerThe price of the token in micro tez (e.g. 1000000 = 1 tez).
price_in_eurbig integerThe price in EUR (needs to be divided by 1000000).
price_in_usdbig integerThe price in USD (needs to be divided by 1000000).
price_in_cnybig integerThe price in CNY (needs to be divided by 1000000).
price_in_jpybig integerThe price in JPY (needs to be divided by 1000000).
price_in_krwbig integerThe price in KRW (needs to be divided by 1000000).
price_in_gbpbig integerThe price in GBP (needs to be divided by 1000000).

KALAMINT_REGISTER_AUCTION

Copy

An auction was created on Kalamint.

kalamint
Token Event
NameTypeDescription
idstringA unique ID, is used to identify the event.
typestringThe type of event.
opidbig integerThe ID of the operation which led to this event (created by TzKT).
levelbig integerThe level of the block that contains the operation which led to this event.
timestamptimestampThe timestamp of the block that contains the operation which led to this event.
ophashstringThe hash of the operation which led to this event.
fa2_addressstringThe contract address of the token (always starts with “KT”).
token_idstringThe ID of the token. This is a numeric value but stored as a string because it can contain a lot of digits in some rare cases.
quotesjsonAn object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP