UNPKG

@thirdweb-dev/contracts-js

Version:
921 lines • 17.4 kB
[ { "type": "constructor", "inputs": [ { "name": "_defaultAdmin", "type": "address", "internalType": "address" }, { "name": "_name", "type": "string", "internalType": "string" }, { "name": "_symbol", "type": "string", "internalType": "string" }, { "name": "_royaltyRecipient", "type": "address", "internalType": "address" }, { "name": "_royaltyBps", "type": "uint128", "internalType": "uint128" } ], "stateMutability": "nonpayable" }, { "type": "function", "name": "balanceOf", "inputs": [ { "name": "", "type": "address", "internalType": "address" }, { "name": "", "type": "uint256", "internalType": "uint256" } ], "outputs": [ { "name": "", "type": "uint256", "internalType": "uint256" } ], "stateMutability": "view" }, { "type": "function", "name": "balanceOfBatch", "inputs": [ { "name": "accounts", "type": "address[]", "internalType": "address[]" }, { "name": "ids", "type": "uint256[]", "internalType": "uint256[]" } ], "outputs": [ { "name": "", "type": "uint256[]", "internalType": "uint256[]" } ], "stateMutability": "view" }, { "type": "function", "name": "batchFrozen", "inputs": [ { "name": "", "type": "uint256", "internalType": "uint256" } ], "outputs": [ { "name": "", "type": "bool", "internalType": "bool" } ], "stateMutability": "view" }, { "type": "function", "name": "batchMintTo", "inputs": [ { "name": "_to", "type": "address", "internalType": "address" }, { "name": "_tokenIds", "type": "uint256[]", "internalType": "uint256[]" }, { "name": "_amounts", "type": "uint256[]", "internalType": "uint256[]" }, { "name": "_baseURI", "type": "string", "internalType": "string" } ], "outputs": [], "stateMutability": "nonpayable" }, { "type": "function", "name": "burn", "inputs": [ { "name": "_owner", "type": "address", "internalType": "address" }, { "name": "_tokenId", "type": "uint256", "internalType": "uint256" }, { "name": "_amount", "type": "uint256", "internalType": "uint256" } ], "outputs": [], "stateMutability": "nonpayable" }, { "type": "function", "name": "burnBatch", "inputs": [ { "name": "_owner", "type": "address", "internalType": "address" }, { "name": "_tokenIds", "type": "uint256[]", "internalType": "uint256[]" }, { "name": "_amounts", "type": "uint256[]", "internalType": "uint256[]" } ], "outputs": [], "stateMutability": "nonpayable" }, { "type": "function", "name": "contractURI", "inputs": [], "outputs": [ { "name": "", "type": "string", "internalType": "string" } ], "stateMutability": "view" }, { "type": "function", "name": "getBaseURICount", "inputs": [], "outputs": [ { "name": "", "type": "uint256", "internalType": "uint256" } ], "stateMutability": "view" }, { "type": "function", "name": "getBatchIdAtIndex", "inputs": [ { "name": "_index", "type": "uint256", "internalType": "uint256" } ], "outputs": [ { "name": "", "type": "uint256", "internalType": "uint256" } ], "stateMutability": "view" }, { "type": "function", "name": "getDefaultRoyaltyInfo", "inputs": [], "outputs": [ { "name": "", "type": "address", "internalType": "address" }, { "name": "", "type": "uint16", "internalType": "uint16" } ], "stateMutability": "view" }, { "type": "function", "name": "getRoyaltyInfoForToken", "inputs": [ { "name": "_tokenId", "type": "uint256", "internalType": "uint256" } ], "outputs": [ { "name": "", "type": "address", "internalType": "address" }, { "name": "", "type": "uint16", "internalType": "uint16" } ], "stateMutability": "view" }, { "type": "function", "name": "isApprovedForAll", "inputs": [ { "name": "", "type": "address", "internalType": "address" }, { "name": "", "type": "address", "internalType": "address" } ], "outputs": [ { "name": "", "type": "bool", "internalType": "bool" } ], "stateMutability": "view" }, { "type": "function", "name": "mintTo", "inputs": [ { "name": "_to", "type": "address", "internalType": "address" }, { "name": "_tokenId", "type": "uint256", "internalType": "uint256" }, { "name": "_tokenURI", "type": "string", "internalType": "string" }, { "name": "_amount", "type": "uint256", "internalType": "uint256" } ], "outputs": [], "stateMutability": "nonpayable" }, { "type": "function", "name": "multicall", "inputs": [ { "name": "data", "type": "bytes[]", "internalType": "bytes[]" } ], "outputs": [ { "name": "results", "type": "bytes[]", "internalType": "bytes[]" } ], "stateMutability": "nonpayable" }, { "type": "function", "name": "name", "inputs": [], "outputs": [ { "name": "", "type": "string", "internalType": "string" } ], "stateMutability": "view" }, { "type": "function", "name": "nextTokenIdToMint", "inputs": [], "outputs": [ { "name": "", "type": "uint256", "internalType": "uint256" } ], "stateMutability": "view" }, { "type": "function", "name": "owner", "inputs": [], "outputs": [ { "name": "", "type": "address", "internalType": "address" } ], "stateMutability": "view" }, { "type": "function", "name": "royaltyInfo", "inputs": [ { "name": "tokenId", "type": "uint256", "internalType": "uint256" }, { "name": "salePrice", "type": "uint256", "internalType": "uint256" } ], "outputs": [ { "name": "receiver", "type": "address", "internalType": "address" }, { "name": "royaltyAmount", "type": "uint256", "internalType": "uint256" } ], "stateMutability": "view" }, { "type": "function", "name": "safeBatchTransferFrom", "inputs": [ { "name": "from", "type": "address", "internalType": "address" }, { "name": "to", "type": "address", "internalType": "address" }, { "name": "ids", "type": "uint256[]", "internalType": "uint256[]" }, { "name": "amounts", "type": "uint256[]", "internalType": "uint256[]" }, { "name": "data", "type": "bytes", "internalType": "bytes" } ], "outputs": [], "stateMutability": "nonpayable" }, { "type": "function", "name": "safeTransferFrom", "inputs": [ { "name": "from", "type": "address", "internalType": "address" }, { "name": "to", "type": "address", "internalType": "address" }, { "name": "id", "type": "uint256", "internalType": "uint256" }, { "name": "amount", "type": "uint256", "internalType": "uint256" }, { "name": "data", "type": "bytes", "internalType": "bytes" } ], "outputs": [], "stateMutability": "nonpayable" }, { "type": "function", "name": "setApprovalForAll", "inputs": [ { "name": "operator", "type": "address", "internalType": "address" }, { "name": "approved", "type": "bool", "internalType": "bool" } ], "outputs": [], "stateMutability": "nonpayable" }, { "type": "function", "name": "setContractURI", "inputs": [ { "name": "_uri", "type": "string", "internalType": "string" } ], "outputs": [], "stateMutability": "nonpayable" }, { "type": "function", "name": "setDefaultRoyaltyInfo", "inputs": [ { "name": "_royaltyRecipient", "type": "address", "internalType": "address" }, { "name": "_royaltyBps", "type": "uint256", "internalType": "uint256" } ], "outputs": [], "stateMutability": "nonpayable" }, { "type": "function", "name": "setOwner", "inputs": [ { "name": "_newOwner", "type": "address", "internalType": "address" } ], "outputs": [], "stateMutability": "nonpayable" }, { "type": "function", "name": "setRoyaltyInfoForToken", "inputs": [ { "name": "_tokenId", "type": "uint256", "internalType": "uint256" }, { "name": "_recipient", "type": "address", "internalType": "address" }, { "name": "_bps", "type": "uint256", "internalType": "uint256" } ], "outputs": [], "stateMutability": "nonpayable" }, { "type": "function", "name": "supportsInterface", "inputs": [ { "name": "interfaceId", "type": "bytes4", "internalType": "bytes4" } ], "outputs": [ { "name": "", "type": "bool", "internalType": "bool" } ], "stateMutability": "view" }, { "type": "function", "name": "symbol", "inputs": [], "outputs": [ { "name": "", "type": "string", "internalType": "string" } ], "stateMutability": "view" }, { "type": "function", "name": "totalSupply", "inputs": [ { "name": "", "type": "uint256", "internalType": "uint256" } ], "outputs": [ { "name": "", "type": "uint256", "internalType": "uint256" } ], "stateMutability": "view" }, { "type": "function", "name": "uri", "inputs": [ { "name": "_tokenId", "type": "uint256", "internalType": "uint256" } ], "outputs": [ { "name": "", "type": "string", "internalType": "string" } ], "stateMutability": "view" }, { "type": "event", "name": "ApprovalForAll", "inputs": [ { "name": "_owner", "type": "address", "indexed": true, "internalType": "address" }, { "name": "_operator", "type": "address", "indexed": true, "internalType": "address" }, { "name": "_approved", "type": "bool", "indexed": false, "internalType": "bool" } ], "anonymous": false }, { "type": "event", "name": "BatchMetadataUpdate", "inputs": [ { "name": "_fromTokenId", "type": "uint256", "indexed": false, "internalType": "uint256" }, { "name": "_toTokenId", "type": "uint256", "indexed": false, "internalType": "uint256" } ], "anonymous": false }, { "type": "event", "name": "ContractURIUpdated", "inputs": [ { "name": "prevURI", "type": "string", "indexed": false, "internalType": "string" }, { "name": "newURI", "type": "string", "indexed": false, "internalType": "string" } ], "anonymous": false }, { "type": "event", "name": "DefaultRoyalty", "inputs": [ { "name": "newRoyaltyRecipient", "type": "address", "indexed": true, "internalType": "address" }, { "name": "newRoyaltyBps", "type": "uint256", "indexed": false, "internalType": "uint256" } ], "anonymous": false }, { "type": "event", "name": "MetadataFrozen", "inputs": [], "anonymous": false }, { "type": "event", "name": "OwnerUpdated", "inputs": [ { "name": "prevOwner", "type": "address", "indexed": true, "internalType": "address" }, { "name": "newOwner", "type": "address", "indexed": true, "internalType": "address" } ], "anonymous": false }, { "type": "event", "name": "RoyaltyForToken", "inputs": [ { "name": "tokenId", "type": "uint256", "indexed": true, "internalType": "uint256" }, { "name": "royaltyRecipient", "type": "address", "indexed": true, "internalType": "address" }, { "name": "royaltyBps", "type": "uint256", "indexed": false, "internalType": "uint256" } ], "anonymous": false }, { "type": "event", "name": "TransferBatch", "inputs": [ { "name": "_operator", "type": "address", "indexed": true, "internalType": "address" }, { "name": "_from", "type": "address", "indexed": true, "internalType": "address" }, { "name": "_to", "type": "address", "indexed": true, "internalType": "address" }, { "name": "_ids", "type": "uint256[]", "indexed": false, "internalType": "uint256[]" }, { "name": "_values", "type": "uint256[]", "indexed": false, "internalType": "uint256[]" } ], "anonymous": false }, { "type": "event", "name": "TransferSingle", "inputs": [ { "name": "_operator", "type": "address", "indexed": true, "internalType": "address" }, { "name": "_from", "type": "address", "indexed": true, "internalType": "address" }, { "name": "_to", "type": "address", "indexed": true, "internalType": "address" }, { "name": "_id", "type": "uint256", "indexed": false, "internalType": "uint256" }, { "name": "_value", "type": "uint256", "indexed": false, "internalType": "uint256" } ], "anonymous": false }, { "type": "event", "name": "URI", "inputs": [ { "name": "_value", "type": "string", "indexed": false, "internalType": "string" }, { "name": "_id", "type": "uint256", "indexed": true, "internalType": "uint256" } ], "anonymous": false }, { "type": "error", "name": "BatchMintInvalidBatchId", "inputs": [ { "name": "index", "type": "uint256", "internalType": "uint256" } ] }, { "type": "error", "name": "BatchMintInvalidTokenId", "inputs": [ { "name": "tokenId", "type": "uint256", "internalType": "uint256" } ] }, { "type": "error", "name": "BatchMintMetadataFrozen", "inputs": [ { "name": "batchId", "type": "uint256", "internalType": "uint256" } ] }, { "type": "error", "name": "ContractMetadataUnauthorized", "inputs": [] }, { "type": "error", "name": "OwnableUnauthorized", "inputs": [] }, { "type": "error", "name": "RoyaltyExceededMaxFeeBps", "inputs": [ { "name": "max", "type": "uint256", "internalType": "uint256" }, { "name": "actual", "type": "uint256", "internalType": "uint256" } ] }, { "type": "error", "name": "RoyaltyInvalidRecipient", "inputs": [ { "name": "recipient", "type": "address", "internalType": "address" } ] }, { "type": "error", "name": "RoyaltyUnauthorized", "inputs": [] } ]