get-nft-count
Retrieve the number of NFTs held by a specific address on the Monad testnet by providing the address and NFT contract details using this tool.
Instructions
查询 Monad 测试网地址持有的 NFT 数量
Input Schema
Name | Required | Description | Default |
---|---|---|---|
address | Yes | 需要查询的 Monad 测试网地址 | |
nftContract | Yes | NFT 合约地址 |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"address": {
"description": "需要查询的 Monad 测试网地址",
"type": "string"
},
"nftContract": {
"description": "NFT 合约地址",
"type": "string"
}
},
"required": [
"address",
"nftContract"
],
"type": "object"
}