Event
chainstring
The blockchain chain identifier
sourcestring
The marketplace source
txIdstring
Transaction ID
mintAccountstring
The mint account address
typeEventType (enum)
The event type
Possible values: [bid
, list
, sale
, accept-bid
, buy-ticket
, delist
, mint
, gumball-add
, gumball-remove
, gumball-request
, buy-gumball
]
user object
addressesstring[]
Array of user addresses
usernamestringnullable
User's username
imageUrlstringnullable
User's profile image URL
displayNamestringnullable
User's display name
priceinteger
The price in the specified token's smallest unit.
currencyMintstring
The mint account of the payment token used.
datestring<date-time>
The date and time of the event
listingTypeListingType (enum)
Possible values: [auction
, buy-now
, raffle
]
usdPricenumber
The price in USD
Event
{
"chain": "solana",
"source": "mallow",
"txId": "5Y44wPAX3yJButY74AfRKt8sFbZTXGZwxDmp9Uqfbyjd",
"mintAccount": "5Y44wPAX3yJButY74AfRKt8sFbZTXGZwxDmp9Uqfbyjd",
"type": "bid",
"user": {
"type": "object",
"properties": {
"addresses": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of user addresses"
},
"username": {
"type": "string",
"nullable": true,
"description": "User's username"
},
"imageUrl": {
"type": "string",
"nullable": true,
"description": "User's profile image URL"
},
"displayName": {
"type": "string",
"nullable": true,
"description": "User's display name"
}
},
"example": {
"addresses": [
"9WzDXwBbmkg8ZTbNMqUxvQRAyrZzDsGYdLVL9zYtAWWM"
],
"username": "johndoe",
"imageUrl": "https://example.com/profile.jpg",
"displayName": "John Doe"
},
"title": "User"
},
"price": 1000000000,
"currencyMint": "So11111111111111111111111111111111111111112",
"date": "2024-01-10T15:30:00Z",
"listingType": "buy-now",
"usdPrice": 0.75
}