Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.evav.org/llms.txt

Use this file to discover all available pages before exploring further.

Get token balance

import { mkt } from './config'

const balance = await mkt.getTokenBalance('<COLLECTION_ADDRESS>', <TOKEN_ID>)

Check if you are the owner of the token

Internally calls getTokenBalance and returns true if balance is not 0n.
import { mkt } from './config'

const isOwner = await mkt.isTokenOwner('<COLLECTION_ADDRESS>', <TOKEN_ID>)