Read Contract
Last updated
Last updated
The method returns the supply of a specific token ID owned by a specific waller/user
a. Input Account address
b. Input token ID
c. Response to the current supply of the Address
The method allows for concurrent checking of the amounts of tokens owned by multiple wallets for multiple tokens. Notice, that the first address gets information about the first ID in the array
a. Input Accounts addresses in array [address1,address2,...]
b. Input token IDs in array [tokenIDforAddress1,tokenIDforAddress2,...]
c. Response an array of current supplies [tokenSupplyOfAddress1, tokenSupplyOfAddress2,...]
The method allows obtaining the token ID for the given URI.
a. input bucket hash
b. Shows the token ID
The method allows for obtaining information about the creator of a specific NFT token.
a. Input existing token ID
b. Shows the tokens, Creator
The method allows obtaining the identifier of the token that will be assigned to the next created token.
The method checks that the token ID exists
a. Input token ID
b. Shows that the token exists
The isApprovedForAll method is used to determine whether a specific user has been granted approval to operate on a designated contract. This approval can encompass various operations, such as the handling of tokens on a contract responsible for conducting auctions, like the BuyNow auction contract.
a. Input user wallet address
b. Input the other Contract add
c. Response True or False if the Contract and User are approved
This method allows for obtaining information about the tax (fee) collected during the minting process of a token.
This method is used to retrieve the name of the contract.
This method is used to retrieve the address of the contract owner.
Information about the contract status, if is paused or not (true/false).
This method is used to check if a given contract supports a specific interface. The interfaceId argument represents the interface identifier, which is a four-byte value. The method returns true if the contract supports the specified interface, or false if it does not.
a. Input the interface ID (you can apply the same approach to support the ERC-165 (0x01ffc9a7) interface or other interfaces. Simply change the identifier according to the interface you want to check.)
b. Response true or false if the Contract supports the Token Standard
This method returns the symbol of our NFT Meta Asset (NFTma) smart contract.
This method allows retrieving the bucketHash of a specific Token ID.
a. Input token ID
b. Shows the bucket hash
This method allows retrieving the total supply of a specific token.
a. Input token ID
b. Shows the total supply of the token
This method shows the address of the set treasury.
This Method shows the URI preview link of a specific token
a. Input token ID
b. Shows the total supply of the token
Data
Description
Account (address)
The address of the wallet for which we want to retrieve the amount of owned tokens.
Id (uint256)
The identifier of the token for which we want to check the balance.
Data
Description
Accounts (address[])
An array of wallet addresses for which we want to retrieve the amounts of owned tokens. [address1,address2,...]
Ids (uint256[])
An array of token IDs for which we want to check the balances for the respective wallets. [id1,id2,...]
Data
Description
input (string)
The data hash (bucket hash) for which we want to retrieve the token ID.
Data
Description
input (string)
The ID of the NFT token for which we want to check the creator.
Data
Description
Id (uint256)
The identifier of the token for which we want to check existence.
Data
Description
_owner (address)
The address of the wallet or user for whom approval is being checked.
_operator (address)
The address of the contract where tokens will be sent, such as for the purpose of sale.
Data
Description
interfaceId (bytes4)
Identifier of the interface you want to check.
Data
Description
Id (uint256)
The ID of the Token for which we want to retrieve the bucketHash.
Data
Description
Id (uint256)
The ID of the token for which we want to retrieve the total supply information.
Data
Description
Restrictions
Id (uint256)
The ID of the token for which we want to retrieve the URI preview link.
must be an integer positive number
token ID must exist