Token Metadata

Token Metadata program is one of the most important programs when dealing with NFTs on the Solana blockchain. Its main goal is to attach additional data to Fungible or Non-Fungible Tokens on Solana.

metaplex.tm

The table contains the parsed instructions data for Token Metadata. Data related to instruction type, executing account, account arguments, arguments, etc. is available here.

Column NameColumn TypeDescription

block_date

date

Event date

block_time

timestamp

The (estimated) time this block was produced

block_slot

bigint

This block’s slot index in the ledger

dapp

string

Solana program address

inner_instruction_index

int

The order of inner instruction of an instruction in a txns

array<string>

Ordered list of accounts to pass to the program

instruction_index

int

The order of the instruction in a txns

instruction_type

string

Name of the function of a Solana program invoked via an instruction

is_inner_instruction

boolean

Whether the respective instruction of a txns has an inner instruction

tx_id

string

The first signature in the transaction

<STRUCT>

The arguments passed to the invoked function. Generated after decoding the instructions data parameter

Some columns in the above table needs to be explained a bit for better understanding. Let's go into what each one of them contains.

input_accounts

FieldColumn Type

creator

string

adminFeeBAccount

string

edition

string

editionMarkPda

string

masterEdition

string

metadata

string

mint

string

mintAuthority

string

newEdition

string

newMetadata

string

newMetadataUpdateAuthority

string

newMint

string

newMintAuthority

string

owner

string

payer

string

rent

string

safetyDepositBox

string

safetyDepositStore

string

systemProgram

string

token

string

tokenAccount

string

tokenAccountOwner

string

tokenProgram

string

tokenVaultProgram

string

updateAuthority

string

vault

string

vaultAuthority

string

delegate

string

collection

string

collectionAuthority

string

collectionAuthorityRecord

string

collectionMasterEditionAccount

string

collectionMint

string

newCollectionAuthority

string

oneTimeAuth

string

printingMint

string

delegateAuthority

string

revokeAuthority

string

masterEditionAccount

string

splTokenProgram

string

collectionMetadata

string

ataProgram

string

useAuthority

string

burner

string

ownerTokenAccount

string

useAuthorityRecord

string

user

string

editionMarkerAccount

string

masterEditionMint

string

masterEditionTokenAccount

string

printEditionAccount

string

printEditionMint

string

printEditionTokenAccount

string

args

FieldData Type

<STRUCT>

edition

bigint

isMutable

boolean

maxSupply

bigint

primarySaleHappened

boolean

updateAuthority

string

size

bigint

<STRUCT>

numberOfUses

bigint

data

FieldData Type

array<STRUCT>

name

string

sellerFeeBasisPoints

bigint

symbol

string

uri

string

<STRUCT>

<STRUCT>

collectionDetails

FieldData Type

name

string

size

bigint

creators

FieldData Type

address

string

share

bigint

verified

boolean

collection

FieldData Type

key

string

verified

boolean

uses

FieldData Type

remaining

bigint

total

bigint

useMethod

string

Last updated