Properties
| Name | Type | Description |
|---|---|---|
| address | string | A wallet or contract address in mixed-case checksum encoding. |
| ercType | string | |
| tokenId | string | |
| tokenUri | string | |
| metadata | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/avalanche/main/json-schema/Erc1155Token.json",
"title": "Erc1155Token",
"type": "object",
"properties": {
"address": {
"type": "string",
"description": "A wallet or contract address in mixed-case checksum encoding.",
"examples": [
"0x71C7656EC7ab88b098defB751B7401B5f6d8976F"
]
},
"ercType": {
"type": "string",
"enum": [
"ERC-1155"
]
},
"tokenId": {
"type": "string"
},
"tokenUri": {
"type": "string"
},
"metadata": {
"$ref": "#/components/schemas/Erc1155TokenMetadata"
}
},
"required": [
"address",
"ercType",
"tokenId",
"tokenUri",
"metadata"
]
}