safeMint
, transferFrom
, and safeTransferFrom
operations, both before and after execution.
safeMint
function.
Calls the _checkPoliciesERC1155SafeMint
function to evaluate policies.
Name | Type | Description |
---|---|---|
to | address | The receiving address. |
tokenId | uint256 | The token identifier. |
value | uint256 | The value of tokenId being transfered. |
data | bytes | Generic data to pass along with the transfer. |
safeMint
function.
Calls the _checkPoliciesERC1155SafeMint
function to evaluate policies.
Name | Type | Description |
---|---|---|
to | address | The receiving address. |
tokenId | uint256 | The token identifier. |
value | uint256 | The value of tokenId being transfered. |
data | bytes | Generic data to pass along with the transfer. |
safeMint
function.
Calls the _checkPoliciesERC1155SafeMint
function to evaluate policies.
Name | Type | Description |
---|---|---|
to | address | The receiving address. |
tokenIds | uint256[] | The token identifiers. |
values | uint256[] | The values of tokenIds being transfered. |
data | bytes | Generic data to pass along with the transfer. |
safeMint
function.
Calls the _checkPoliciesERC1155SafeMint
function to evaluate policies.
Name | Type | Description |
---|---|---|
to | address | The receiving address. |
tokenIds | uint256[] | The token identifiers. |
values | uint256[] | The values of tokenIds being transfered. |
data | bytes | Generic data to pass along with the transfer. |
safeTransferFrom
function.
Calls the _checkPoliciesERC1155SafeTransferFrom
function to evaluate policies.
Name | Type | Description |
---|---|---|
from | address | The sending address. |
to | address | The receiving address. |
tokenId | uint256 | The token identifier. |
value | uint256 | The value of tokenId being transfered. |
data | bytes | Generic data to pass along with the transfer. |
safeTransferFrom
function.
Calls the _checkPoliciesERC1155SafeTransferFrom
function to evaluate policies.
Name | Type | Description |
---|---|---|
from | address | The sending address. |
to | address | The receiving address. |
tokenId | uint256 | The token identifier. |
value | uint256 | The value of tokenId being transfered. |
data | bytes | Generic data to pass along with the transfer. |
transferFrom
function.
Calls the _checkPoliciesERC1155TransferFrom
function to evaluate policies.
Name | Type | Description |
---|---|---|
from | address | The sending address. |
to | address | The receiving address. |
tokenIds | uint256[] | The token identifiers. |
values | uint256[] | The values of tokenIds being transfered. |
data | bytes |
transferFrom
function.
Calls the _checkPoliciesERC1155TransferFrom
function to evaluate policies.
Name | Type | Description |
---|---|---|
from | address | The sending address. |
to | address | The receiving address. |
tokenIds | uint256[] | The token identifiers. |
values | uint256[] | The values of tokenIds being transfered. |
data | bytes |
Mint
operation.
Encodes the parameters and invokes the _invokeRulesEngine
function.
Name | Type | Description |
---|---|---|
_to | address | The receiving address. |
_tokenId | uint256 | The token identifier. |
_value | uint256 | The value of tokenId being transfered. |
_data | bytes | Generic data to pass along with the transfer. |
MintBatch
operation.
Encodes the parameters and invokes the _invokeRulesEngine
function.
Name | Type | Description |
---|---|---|
_to | address | The receiving address. |
_tokenIds | uint256[] | The token identifiers. |
_values | uint256[] | The values of tokenIds being transfered. |
_data | bytes | Generic data to pass along with the transfer. |
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. |
_value | uint256 | The value of tokenId being transfered. |
_data | bytes | Generic data to pass along with the transfer. |
safeTransferFrom
operation.
Encodes the parameters and invokes the _invokeRulesEngine
function.
Name | Type | Description |
---|---|---|
_from | address | The sending address. |
_to | address | The receiving address. |
_tokenIds | uint256[] | The token identifiers. |
_values | uint256[] | The values of tokenIds being transfered. |
_data | bytes | Generic data to pass along with the transfer. |
transferFrom
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. |