Set approval for an account (or contract) to transfer any tokens from an SFT collection mapping(address => mapping(address => bool)) private _operatorApprovals; Namespace:Type:
Set approval for an account to transfer an amount of tokens on behalf of the caller Mapping from caller to spender and amount mapping(address => mapping(address => uint256)) private _allowances; Namespace:Type:
Removes an approval over an account and asset_id mapping(address => mapping(address => uint256)) private _allowances; Namespace:Type:
Set approval for a single NFT Mapping from token_id to operator clears approval on transfer mapping(uint256 => address) private _tokenApprovals; Namespace:Type:
Set approval for an account (or contract) to transfer any tokens from a collection mapping(address => mapping(address => bool)) private _operatorApprovals; Namespace:Type:
Public method which allows users to remove approvals on a token they own. Can be called outside of the EVM as a Substrate extrinsic. Namespace:Type:
Namespace:Type:
Namespace:Type:
Namespace:Type:
Type:
Address is already approved Namespace:
There is no approval set for this token Namespace:
The caller is not approved for the requested amount Namespace:
The caller isn’t approved for any amount Namespace:
The caller account can’t be the same as the operator account Namespace:
The token doesn’t exist Namespace:
The account is not the owner of the token Namespace:
The account is not the owner of the token or an approved account Namespace: