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:
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 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
}
}
}
}
A token got transferred from one Tezos account to another.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
from_address | string | The Tezos address of the account that sent the token. |
to_address | string | The Tezos address of the account that received the token. |
amount | big integer | The amount of tokens. |
The balance of a ledger entry got updated. This happens for example when editions of a token get transferred.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
ledger_type | string | Either ‘MULTI_ASSET’ or ‘NFT_ASSET’. |
holder_address | string | The Tezos address of the holder. |
amount | big integer | The amount of tokens. |
is_mint | boolean | Set to true if it's the mint. |
A swap on the first version of the hic et nunc marketplace contract was canceled (marketplace contract: KT1Hkg5qeNhfwpKW4fXvq7HGZB9z2EnmCCA9).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
A swap on the second version of the hic et nunc marketplace contract was cancelled (marketplace contract: KT1HbQepzV1nVGg8QVznG7z4RcHseD5kwqBn).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
A token was collected on the first version of the hic et nunc marketplace contract (marketplace contract: KT1Hkg5qeNhfwpKW4fXvq7HGZB9z2EnmCCA9).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
A token was collected on the second version of the hic et nunc marketplace contract (marketplace contract: KT1HbQepzV1nVGg8QVznG7z4RcHseD5kwqBn).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
A token was minted on hic et nunc.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
is_verified_artist | boolean | If 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. |
royalties | big integer | deprecated field |
editions | big integer | The number of editions. |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
royalty_shares | json | An object containing information about the royalty receivers (who gets how much royalties). |
A token was swapped on the first version of the hic et nunc marketplace contract (marketplace contract: KT1Hkg5qeNhfwpKW4fXvq7HGZB9z2EnmCCA9).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
amount | big integer | The amount of tokens. |
A token was swapped on the second version of the hic et nunc marketplace contract (marketplace contract: KT1HbQepzV1nVGg8QVznG7z4RcHseD5kwqBn).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
seller_address | string | The Tezos address of the seller. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
royalties | big integer | deprecated field |
amount | big integer | The amount of tokens. |
An ask was created on objkt.com (marketplace contract: KT1FvqJwEDWb1Gwc55Jd1jjTHRVWbYKUUpyq).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
ask_id | big integer | The ID of the ask (created by the marketplace contract). |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
currency | string | Set to tez or otez (wrapped tez from objkt.com). |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
amount | big integer | The amount of tokens. |
end_time | timestamp |
An ask was created on objkt.com (marketplace contract: KT1WvzYHCNBvDSdwafTHv7nJ1dWmZ8GCYuuC).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
ask_id | big integer | The ID of the ask (created by the marketplace contract). |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
currency | string | Set to tez or otez (wrapped tez from objkt.com). |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
amount | big integer | The amount of tokens. |
end_time | timestamp | |
royalty_shares | json | An object containing information about the royalty receivers (who gets how much royalties). |
A bid (also known as an offer) was created on objkt.com (marketplace contract: KT1FvqJwEDWb1Gwc55Jd1jjTHRVWbYKUUpyq).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
bid_id | big integer | The ID of the bid (created by the marketplace contract). |
buyer_address | string | The Tezos address of the buyer. |
artist_address | string | The Tezos address of the artist. |
royalties | big integer | deprecated field |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
An offer was created on objkt.com (marketplace contract: KT1WvzYHCNBvDSdwafTHv7nJ1dWmZ8GCYuuC).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
offer_id | big integer | The ID of the offer (created by the marketplace contract). |
buyer_address | string | The Tezos address of the buyer. |
artist_address | string | The Tezos address of the artist. |
currency | string | Set to tez or otez (wrapped tez from objkt.com). |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
end_price | big integer | End price in micro tez (e.g. 1000000 = 1 tez). |
royalty_shares | json | An object containing information about the royalty receivers (who gets how much royalties). |
An ask was fulfilled on objkt.com (marketplace contract: KT1FvqJwEDWb1Gwc55Jd1jjTHRVWbYKUUpyq).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
ask_id | big integer | The ID of the ask (created by the marketplace contract). |
An ask was fulfilled on objkt.com (marketplace contract: KT1WvzYHCNBvDSdwafTHv7nJ1dWmZ8GCYuuC).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
ask_id | big integer | The ID of the ask (created by the marketplace contract). |
A bid (also known as an offer) was fulfilled on objkt.com (marketplace contract: KT1FvqJwEDWb1Gwc55Jd1jjTHRVWbYKUUpyq).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
bid_id | big integer | The ID of the bid (created by the marketplace contract). |
artist_address | string | The Tezos address of the artist. |
An offer was fulfilled on objkt.com (marketplace contract: KT1WvzYHCNBvDSdwafTHv7nJ1dWmZ8GCYuuC).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
offer_id | big integer | The ID of the offer (created by the marketplace contract). |
artist_address | string | The Tezos address of the artist. |
A token was minted in an artist collection on objkt.com.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
is_verified_artist | boolean | If 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_id | big integer | The ID of the artist collection on objkt.com. |
editions | big integer | The number of editions. |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
An ask was cancelled on objkt.com (marketplace contract: KT1FvqJwEDWb1Gwc55Jd1jjTHRVWbYKUUpyq).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
seller_address | string | The Tezos address of the seller. |
ask_id | big integer | The ID of the ask (created by the marketplace contract). |
An ask was canceled on objkt.com (marketplace contract: KT1WvzYHCNBvDSdwafTHv7nJ1dWmZ8GCYuuC).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
seller_address | string | The Tezos address of the seller. |
ask_id | big integer | The ID of the ask (created by the marketplace contract). |
A bid (also known as an offer) was canceled on objkt.com (marketplace contract: KT1FvqJwEDWb1Gwc55Jd1jjTHRVWbYKUUpyq).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
buyer_address | string | The Tezos address of the buyer. |
bid_id | big integer | The ID of the bid (created by the marketplace contract). |
An offer was canceled on objkt.com (marketplace contract: KT1WvzYHCNBvDSdwafTHv7nJ1dWmZ8GCYuuC).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
buyer_address | string | The Tezos address of the buyer. |
offer_id | big integer | The ID of the offer (created by the marketplace contract). |
An english auction was created on objkt.com (marketplace contract: KT1Wvk8fon9SgNEPQKewoSL2ziGGuCQebqZc or KT1XjcRq5MLAzMKQ3UHsrue2SeU2NbxUrzmU).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
reserve | big integer | |
start_time | timestamp | |
end_time | timestamp | |
extension_time | big integer | |
royalties | big integer | deprecated field |
price_increment | big integer | |
amount | big integer | The amount of tokens. |
A bid on an English auction on objkt.com was made (marketplace contract: KT1Wvk8fon9SgNEPQKewoSL2ziGGuCQebqZc or KT1XjcRq5MLAzMKQ3UHsrue2SeU2NbxUrzmU).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
bidder_address | string | The Tezos address of the bidder. |
reserve | big integer | |
start_time | timestamp | |
end_time | timestamp | |
current_price | big integer | Current price in micro tez (e.g. 1000000 = 1 tez). |
extension_time | big integer | |
highest_bidder_address | string | The Tezos address of the highest bidder. |
royalties | big integer | deprecated field |
price_increment | big integer | |
auction_id | big integer | The ID of the auction (created by the marketplace contract). |
bid | big integer | Bid in micro tez (e.g. 1000000 = 1 tez). |
An english auction was canceled on objkt.com (marketplace contract: KT1ET45vnyEFMLS9wX1dYHEs9aCN3twDEiQw or KT1QJ71jypKGgyTNtXjkCAYJZNhCKWiHuT2r).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
reserve | big integer | |
start_time | timestamp | |
end_time | timestamp | |
current_price | big integer | Current price in micro tez (e.g. 1000000 = 1 tez). |
extension_time | big integer | |
highest_bidder_address | string | The Tezos address of the highest bidder. |
royalties | big integer | deprecated field |
price_increment | big integer | |
auction_id | big integer | The ID of the auction (created by the marketplace contract). |
An English auction was concluded on objkt.com (marketplace contract: KT1Wvk8fon9SgNEPQKewoSL2ziGGuCQebqZc or KT1XjcRq5MLAzMKQ3UHsrue2SeU2NbxUrzmU).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
reserve | big integer | |
start_time | timestamp | |
end_time | timestamp | |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
extension_time | big integer | |
royalties | big integer | deprecated field |
price_increment | big integer | |
auction_id | big integer | The ID of the auction (created by the marketplace contract). |
A dutch auction was created on objkt.com (marketplace contract: KT1ET45vnyEFMLS9wX1dYHEs9aCN3twDEiQw or KT1QJ71jypKGgyTNtXjkCAYJZNhCKWiHuT2r).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
start_time | timestamp | |
end_time | timestamp | |
start_price | big integer | Start price in micro tez (e.g. 1000000 = 1 tez). |
end_price | big integer | End price in micro tez (e.g. 1000000 = 1 tez). |
royalties | big integer | deprecated field |
auction_id | big integer | The ID of the auction (created by the marketplace contract). |
A dutch auction was canceled on objkt.com (marketplace contract: KT1ET45vnyEFMLS9wX1dYHEs9aCN3twDEiQw or KT1QJ71jypKGgyTNtXjkCAYJZNhCKWiHuT2r).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
start_time | timestamp | |
end_time | timestamp | |
start_price | big integer | Start price in micro tez (e.g. 1000000 = 1 tez). |
end_price | big integer | End price in micro tez (e.g. 1000000 = 1 tez). |
royalties | big integer | deprecated field |
auction_id | big integer | The ID of the auction (created by the marketplace contract). |
A token that was auctioned through a dutch auction was bought on objkt.com (marketplace contract: KT1ET45vnyEFMLS9wX1dYHEs9aCN3twDEiQw or KT1QJ71jypKGgyTNtXjkCAYJZNhCKWiHuT2r).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
start_time | timestamp | |
end_time | timestamp | |
start_price | big integer | Start price in micro tez (e.g. 1000000 = 1 tez). |
end_price | big integer | End price in micro tez (e.g. 1000000 = 1 tez). |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
royalties | big integer | deprecated field |
auction_id | big integer | The ID of the auction (created by the marketplace contract). |
An English auction was settled on objkt.com. Either the token was bought or the auction ended without a sale. (marketplace contract: KT18p94vjkkHYY3nPmernmgVR7HdZFzE7NAk).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
currency | string | Set to tez or otez (wrapped tez from objkt.com). |
reserve | big integer | |
start_time | timestamp | |
end_time | timestamp | |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
editions | big integer | The number of editions. |
price_increment | big integer | |
auction_id | big integer | The ID of the auction (created by the marketplace contract). |
A token that was auctioned through a dutch auction was bought on objkt.com (marketplace contract: KT1XXu88HkNzQRHNgAf7Mnq68LyS9MZJNoHP).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
currency | string | Set to tez or otez (wrapped tez from objkt.com). |
start_time | timestamp | |
end_time | timestamp | |
start_price | big integer | Start price in micro tez (e.g. 1000000 = 1 tez). |
end_price | big integer | End price in micro tez (e.g. 1000000 = 1 tez). |
amount | big integer | The amount of tokens. |
auction_id | big integer | The ID of the auction (created by the marketplace contract). |
An open edition was bought/claimed on objkt.com.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
An open edition was minted in an artist collection on objkt.com.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
is_verified_artist | boolean | If 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. |
editions | big integer | The number of editions. |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
An auction was settled on objkt.one. Either the token was bought or the auction ended without a sale. (marketplace contract: KT1M6r2gRigUYP3tCSEjEptRnNG8qRLSRqcT).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
currency | string | Set to tez or otez (wrapped tez from objkt.com). |
reserve | big integer | |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
editions | big integer | The number of editions. |
price_increment | big integer | |
auction_id | big integer | The ID of the auction (created by the marketplace contract). |
A new generator token was created on fxhash (contract: KT1AEVuykWeuuFX7QkEAMNtffzwhe1Z98hJS).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
level | big integer | The level of the block that contains the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
is_verified_artist | boolean | If 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. |
ophash | string | The hash of the operation which led to this event. |
issuer_id | big integer | The ID of the generative token. |
royalties | big integer | deprecated field |
editions | big integer | The number of editions. |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
A generator token was created on fxhash (contract: KT1XCoGnfupWk7Sp8536EfrxcP73LmT68Nyr).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
level | big integer | The level of the block that contains the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
is_verified_artist | boolean | If 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. |
ophash | string | The hash of the operation which led to this event. |
issuer_id | big integer | The ID of the generative token. |
royalties | big integer | deprecated field |
editions | big integer | The number of editions. |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
A generator token was created on fxhash (contract: KT1BJC12dG17CVvPKJ1VYaNnaT5mzfnUTwXv).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
level | big integer | The level of the block that contains the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
is_verified_artist | boolean | If 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. |
ophash | string | The hash of the operation which led to this event. |
issuer_id | big integer | The ID of the generative token. |
royalties | big integer | deprecated field |
editions | big integer | The number of editions. |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
A generator token was created on fxhash (contract: KT1Xpmp15KfqoePNW9HczFmqaGNHwadV2a3b).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
level | big integer | The level of the block that contains the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
is_verified_artist | boolean | If 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. |
ophash | string | The hash of the operation which led to this event. |
issuer_id | big integer | The ID of the generative token. |
royalties | big integer | deprecated field |
editions | big integer | The number of editions. |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
A token was collected on fxhash (marketplace contract: KT1Xo5B7PNBAeynZPmca4bRh6LQow4og1Zb9).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
offer_id | big integer | The ID of the offer (created by the marketplace contract). |
artist_address | string | The Tezos address of the artist. |
seller_address | string | The Tezos address of the seller. |
A listing was accepted on fxhash (marketplace contract: KT1GbyoDi7H1sfXmimXpptZJuCdHMh66WS9u).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
A token was minted on fxhash (mint contract: KT1AEVuykWeuuFX7QkEAMNtffzwhe1Z98hJS).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
is_verified_artist | boolean | If 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. |
royalties | big integer | deprecated field |
issuer_id | big integer | The ID of the generative token. |
editions | big integer | The number of editions. |
iteration | big integer | |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
royalty_shares | json | An object containing information about the royalty receivers (who gets how much royalties). |
A token was minted on fxhash (mint contract: KT1XCoGnfupWk7Sp8536EfrxcP73LmT68Nyr).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
is_verified_artist | boolean | If 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. |
royalties | big integer | deprecated field |
issuer_id | big integer | The ID of the generative token. |
editions | big integer | The number of editions. |
iteration | big integer | |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
royalty_shares | json | An object containing information about the royalty receivers (who gets how much royalties). |
A token was minted on fxhash (mint contract: KT1BJC12dG17CVvPKJ1VYaNnaT5mzfnUTwXv).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
is_verified_artist | boolean | If 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. |
royalties | big integer | deprecated field |
issuer_id | big integer | The ID of the generative token. |
editions | big integer | The number of editions. |
iteration | big integer | |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
royalty_shares | json | An object containing information about the royalty receivers (who gets how much royalties). |
A gentk token was minted on fxhash directly, without a ticket (mint contract: KT1Xpmp15KfqoePNW9HczFmqaGNHwadV2a3b).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
is_verified_artist | boolean | If 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. |
royalties | big integer | deprecated field |
issuer_id | big integer | The ID of the generative token. |
editions | big integer | The number of editions. |
iteration | big integer | |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
royalty_shares | json | An object containing information about the royalty receivers (who gets how much royalties). |
An offer was created on fxhash. In this case, the offer is like a swap or an ask. (marketplace contract: KT1Xo5B7PNBAeynZPmca4bRh6LQow4og1Zb9).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
offer_id | big integer | The ID of the offer (created by the marketplace contract). |
royalties | big integer | deprecated field |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
A listing was created on fxhash (marketplace contract: KT1GbyoDi7H1sfXmimXpptZJuCdHMh66WS9u).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
An offer was canceled on fxhash. In this case, the offer is like a swap or an ask. (marketplace contract: KT1Xo5B7PNBAeynZPmca4bRh6LQow4og1Zb9).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
offer_id | big integer | The ID of the offer (created by the marketplace contract). |
A listing was canceled on fxhash (marketplace contract: KT1GbyoDi7H1sfXmimXpptZJuCdHMh66WS9u).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
An offer was created on fxhash (marketplace contract: KT1GbyoDi7H1sfXmimXpptZJuCdHMh66WS9u).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
buyer_address | string | The Tezos address of the buyer. |
offer_id | big integer | The ID of the offer (created by the marketplace contract). |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
An offer was accepted on fxhash (marketplace contract: KT1GbyoDi7H1sfXmimXpptZJuCdHMh66WS9u).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
offer_id | big integer | The ID of the offer (created by the marketplace contract). |
An offer was canceled on fxhash (marketplace contract: KT1GbyoDi7H1sfXmimXpptZJuCdHMh66WS9u).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
buyer_address | string | The Tezos address of the buyer. |
offer_id | big integer | The ID of the offer (created by the marketplace contract). |
A token was minted with a ticket on fxhash (mint contract: KT1Xpmp15KfqoePNW9HczFmqaGNHwadV2a3b).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
is_verified_artist | boolean | If 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. |
royalties | big integer | deprecated field |
issuer_id | big integer | The ID of the generative token. |
editions | big integer | The number of editions. |
iteration | big integer | |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
royalty_shares | json | An object containing information about the royalty receivers (who gets how much royalties). |
A collection offer was accepted on fxhash (marketplace contract: KT1GbyoDi7H1sfXmimXpptZJuCdHMh66WS9u).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
offer_id | big integer | The ID of the offer (created by the marketplace contract). |
The metadata URI of a token was updated. This event usually also fires during the mint of a token.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
metadata | json | A JSON containing the metadata of the token. |
A token was minted on versum.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
is_verified_artist | boolean | If 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. |
royalties | big integer | deprecated field |
editions | big integer | The number of editions. |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
royalty_shares | json | An object containing information about the royalty receivers (who gets how much royalties). |
A token was swapped on versum (marketplace contract: KT1GyRAJNdizF1nojQz62uGYkx8WFRUJm9X5).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
seller_address | string | The Tezos address of the seller. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
start_price | big integer | Start price in micro tez (e.g. 1000000 = 1 tez). |
end_price | big integer | End price in micro tez (e.g. 1000000 = 1 tez). |
end_time | timestamp | |
amount | big integer | The amount of tokens. |
burn_on_end | boolean | Set to true if the remaining editions should be burned once the swap ended. |
A swap was canceled on versum (marketplace contract: KT1GyRAJNdizF1nojQz62uGYkx8WFRUJm9X5).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
offer_id | big integer | The ID of the offer (created by the marketplace contract). |
amount | big integer | The amount of tokens. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
A token was collected on versum (marketplace contract: KT1GyRAJNdizF1nojQz62uGYkx8WFRUJm9X5).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
amount | big integer | The amount of tokens. |
An offer was created on versum (marketplace contract: KT1GyRAJNdizF1nojQz62uGYkx8WFRUJm9X5).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
end_time | timestamp | |
amount | big integer | The amount of tokens. |
auction_id | big integer | The ID of the auction (created by the marketplace contract). |
start_price | big integer | Start price in micro tez (e.g. 1000000 = 1 tez). |
An offer was accepted on versum (marketplace contract: KT1GyRAJNdizF1nojQz62uGYkx8WFRUJm9X5).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
offer_id | big integer | The ID of the offer (created by the marketplace contract). |
amount | big integer | The amount of tokens. |
An offer was canceled on versum (marketplace contract: KT1GyRAJNdizF1nojQz62uGYkx8WFRUJm9X5).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
buyer_address | string | The Tezos address of the buyer. |
artist_address | string | The Tezos address of the artist. |
offer_id | big integer | The ID of the offer (created by the marketplace contract). |
amount | big integer | The amount of tokens. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
An auction was created on versum.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
end_time | timestamp | |
amount | big integer | The amount of tokens. |
auction_id | big integer | The ID of the auction (created by the marketplace contract). |
start_price | big integer | Start price in micro tez (e.g. 1000000 = 1 tez). |
A token was swapped on the Teia marketplace contract (marketplace contract: KT1PHubm9HtyQEJ4BBpMTVomq6mhbfNZ9z5w).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
seller_address | string | The Tezos address of the seller. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
royalties | big integer | deprecated field |
amount | big integer | The amount of tokens. |
A swap on the Teia marketplace contract was canceled (marketplace contract: KT1PHubm9HtyQEJ4BBpMTVomq6mhbfNZ9z5w).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
A token was collected on the Teia marketplace contract (marketplace contract: KT1PHubm9HtyQEJ4BBpMTVomq6mhbfNZ9z5w).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
An 8x8 color token was minted on 8bidou.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
is_verified_artist | boolean | If 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. |
editions | big integer | The number of editions. |
artist_address | string | The Tezos address of the artist. |
token_name | string | The name of the token. |
creator_name | string | The name of the creator of the token. |
token_description | string | The description of the token. |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
rgb | string | Contains the RGB values of 8BIDOU on-chain tokens. |
royalty_shares | json | An object containing information about the royalty receivers (who gets how much royalties). |
An 8x8 color token was swapped on 8bidou.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
seller_address | string | The Tezos address of the seller. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
royalties | big integer | deprecated field |
amount | big integer | The amount of tokens. |
An 8x8 color token was bought on 8bidou.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
A swap of an 8x8 color token was canceled on 8bidou.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
A 24x24 monochrome token was minted on 8bidou.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
is_verified_artist | boolean | If 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. |
editions | big integer | The number of editions. |
artist_address | string | The Tezos address of the artist. |
token_name | string | The name of the token. |
creator_name | string | The name of the creator of the token. |
token_description | string | The description of the token. |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
rgb | string | Contains the RGB values of 8BIDOU on-chain tokens. |
royalty_shares | json | An object containing information about the royalty receivers (who gets how much royalties). |
A 24x24 monochrome token was swapped on 8bidou.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
seller_address | string | The Tezos address of the seller. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
royalties | big integer | deprecated field |
amount | big integer | The amount of tokens. |
A 24x24 monochrome token was bought on 8bidou.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
A swap of a 24x24 monochrome token was canceled on 8bidou.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
A 24x24 color token was minted on 8bidou.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
is_verified_artist | boolean | If 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. |
editions | big integer | The number of editions. |
artist_address | string | The Tezos address of the artist. |
token_name | string | The name of the token. |
creator_name | string | The name of the creator of the token. |
token_description | string | The description of the token. |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
rgb | string | Contains the RGB values of 8BIDOU on-chain tokens. |
royalty_shares | json | An object containing information about the royalty receivers (who gets how much royalties). |
A 24x24 color token was swapped on 8bidou.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
seller_address | string | The Tezos address of the seller. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
royalties | big integer | deprecated field |
amount | big integer | The amount of tokens. |
A swap of a 24x24 color token was canceled on 8bidou.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
A 24x24 color token was bought on 8bidou.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
A token was minted on typed.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
is_verified_artist | boolean | If 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. |
editions | big integer | The number of editions. |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
royalty_shares | json | An object containing information about the royalty receivers (who gets how much royalties). |
A token was swapped on typed (marketplace contract: KT1VoZeuBMJF6vxtLqEFMoc4no5VDG789D7z).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
seller_address | string | The Tezos address of the seller. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
amount | big integer | The amount of tokens. |
A swap was canceled on typed (marketplace contract: KT1VoZeuBMJF6vxtLqEFMoc4no5VDG789D7z).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
seller_address | string | The Tezos address of the seller. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
A token was collected on typed (marketplace contract: KT1VoZeuBMJF6vxtLqEFMoc4no5VDG789D7z).
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
A token was minted on 8SCRIBO.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
is_verified_artist | boolean | If 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. |
editions | big integer | The number of editions. |
artist_address | string | The Tezos address of the artist. |
eightscribo_title | string | The title of the token. |
eightscribo_rowone | string | The text in the first row. |
eightscribo_rowtwo | string | The text in the second row. |
eightscribo_rowthree | string | The text in the third row. |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
royalty_shares | json | An object containing information about the royalty receivers (who gets how much royalties). |
A token was swapped on 8SCRIBO.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
seller_address | string | The Tezos address of the seller. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
royalties | big integer | deprecated field |
amount | big integer | The amount of tokens. |
A swap was canceled on 8SCRIBO.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
artist_address | string | The Tezos address of the artist. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
A token was collected on 8SCRIBO.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
artist_address | string | The Tezos address of the artist. |
swap_id | big integer | The ID of the swap (created by the marketplace contract). |
A token was minted on rarible.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
is_verified_artist | boolean | If 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. |
editions | big integer | The number of editions. |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
royalty_shares | json | An object containing information about the royalty receivers (who gets how much royalties). |
A token was minted on Kalamint.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
artist_address | string | The Tezos address of the artist. |
is_verified_artist | boolean | If 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. |
editions | big integer | The number of editions. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
metadata_uri | string | A URI that points to the metadata of the token. Most tokens store metadata on IPFS, so this URI usually starts with 'ipfs://'. |
royalty_shares | json | An object containing information about the royalty receivers (who gets how much royalties). |
kalamint_edition | big integer | The edition of the token. Note that on Kalamint each edition is minted as separate token. |
kalamint_editions | big integer | The number of editions. Note that on Kalamint each edition is minted as separate token. |
kalamint_on_sale | boolean | If the token is up for sale. |
A token was listed for sale on Kalamint.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
A token was delisted on Kalamint.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
seller_address | string | The Tezos address of the seller. |
A token was bought on Kalamint.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |
implements | string | This is set to "SALE", meaning that this event represents the sale of a token. |
seller_address | string | The Tezos address of the seller. |
buyer_address | string | The Tezos address of the buyer. |
price | big integer | The price of the token in micro tez (e.g. 1000000 = 1 tez). |
price_in_eur | big integer | The price in EUR (needs to be divided by 1000000). |
price_in_usd | big integer | The price in USD (needs to be divided by 1000000). |
price_in_cny | big integer | The price in CNY (needs to be divided by 1000000). |
price_in_jpy | big integer | The price in JPY (needs to be divided by 1000000). |
price_in_krw | big integer | The price in KRW (needs to be divided by 1000000). |
price_in_gbp | big integer | The price in GBP (needs to be divided by 1000000). |
An auction was created on Kalamint.
Name | Type | Description |
---|---|---|
id | string | A unique ID, is used to identify the event. |
type | string | The type of event. |
opid | big integer | The ID of the operation which led to this event (created by TzKT). |
level | big integer | The level of the block that contains the operation which led to this event. |
timestamp | timestamp | The timestamp of the block that contains the operation which led to this event. |
ophash | string | The hash of the operation which led to this event. |
fa2_address | string | The contract address of the token (always starts with “KT”). |
token_id | string | The 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. |
quotes | json | An object with quotes from the time when this happened. These quotes are available: BTC, ETH, EUR, USD, CNY, JPY, KRW, GBP |