fetchNftContractDataByMultichainAddress
Retrieve NFT contract data across multiple blockchain networks using wallet addresses. Specify networks like 'eth-mainnet' or 'base-mainnet' and include metadata as needed.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
addresses | Yes | A list of wallet address and network pairs | |
withMetadata | No | Whether to include metadata in the results. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"addresses": {
"description": "A list of wallet address and network pairs",
"items": {
"additionalProperties": false,
"properties": {
"address": {
"description": "The wallet address to query. e.g. \"0x1234567890123456789012345678901234567890\"",
"type": "string"
},
"networks": {
"default": [
"eth-mainnet"
],
"description": "The blockchain networks to query. e.g. [\"eth-mainnet\", \"base-mainnet\"]",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"address"
],
"type": "object"
},
"type": "array"
},
"withMetadata": {
"default": true,
"description": "Whether to include metadata in the results.",
"type": "boolean"
}
},
"required": [
"addresses"
],
"type": "object"
}