mint
, safeBatchtransferFrom
, and safeTransferFrom
operations, both before and after execution.
safeTransferFrom
function.
Calls the _checkPoliciesERC721ASafeTransferFrom
function to evaluate policies.
Name | Type | Description |
---|---|---|
from | address | The sending address. |
to | address | The receiving address. |
tokenId | uint256 | The token identifier. |
safeTransferFrom
function.
Calls the _checkPoliciesERC721SafeTransferFrom
function to evaluate policies.
Name | Type | Description |
---|---|---|
from | address | The sending address. |
to | address | The receiving address. |
tokenId | uint256 | The token identifier. |
safeBatchTransferFrom
function.
Calls the _checkPoliciesERC721ASafeTransferFrom
function to evaluate policies.
Name | Type | Description |
---|---|---|
by | address | The approved address. |
from | address | The sending address. |
to | address | The receiving address. |
tokenIds | uint256[] | The token identifiers. |
data | bytes | Generic data to pass along with the transfer. |
safeBatchTransferFrom
function.
Calls the _checkPoliciesERC721SafeBatchTransferFrom
function to evaluate policies.
Name | Type | Description |
---|---|---|
by | address | The approved address. |
from | address | The sending address. |
to | address | The receiving address. |
tokenIds | uint256[] | The token identifiers. |
data | bytes | Generic data to pass along with the transfer. |
mint
function.
Calls the _checkPoliciesERC721SafeMint
function to evaluate policies.
Name | Type | Description |
---|---|---|
to | address | The receiving address. |
quantity | uint256 | The amount of tokens minted. |
mint
function.
Calls the _checkPoliciesERC721AMint
function to evaluate policies.
Name | Type | Description |
---|---|---|
to | address | The receiving address. |
quantity | uint256 | The amount of tokens minted. |
safeTransferFrom
operation.
Encodes the parameters and invokes the _invokeRulesEngine
function.
Name | Type | Description |
---|---|---|
_from | address | The sending address. |
_to | address | The receiving address. |
_tokenId | uint256 | The token identifier. |
safeTransferFrom
operation.
Encodes the parameters and invokes the _invokeRulesEngine
function.
Name | Type | Description |
---|---|---|
_by | address | |
_from | address | The sending address. |
_to | address | The receiving address. |
_tokenIds | uint256[] | The token identifiers. |
_data | bytes | Generic data to pass along with the transfer. |
safeMint
operation.
Encodes the parameters and invokes the _invokeRulesEngine
function.
Name | Type | Description |
---|---|---|
_to | address | The receiving address. |
_quantity | uint256 | The amount of tokens minted. |