IERC1410.sol
View Source: contracts/interfaces/token/IERC1410.sol
↘ Derived Contracts: SecurityToken
IERC1410
Events
event TransferByPartition(bytes32 indexed _fromPartition, address _operator, address indexed _from, address indexed _to, uint256 _value, bytes _data, bytes _operatorData);
event AuthorizedOperator(address indexed operator, address indexed tokenHolder);
event RevokedOperator(address indexed operator, address indexed tokenHolder);
event AuthorizedOperatorByPartition(bytes32 indexed partition, address indexed operator, address indexed tokenHolder);
event RevokedOperatorByPartition(bytes32 indexed partition, address indexed operator, address indexed tokenHolder);
event IssuedByPartition(bytes32 indexed partition, address indexed to, uint256 value, bytes data);
event RedeemedByPartition(bytes32 indexed partition, address indexed operator, address indexed from, uint256 value, bytes data, bytes operatorData);Functions
balanceOfByPartition
⤿ Overridden Implementation(s): SecurityToken.balanceOfByPartition
Arguments
Name
Type
Description
_partition
bytes32
_tokenHolder
address
transferByPartition
⤿ Overridden Implementation(s): SecurityToken.transferByPartition
Arguments
Name
Type
Description
_partition
bytes32
_to
address
_value
uint256
_data
bytes
operatorTransferByPartition
⤿ Overridden Implementation(s): SecurityToken.operatorTransferByPartition
Arguments
Name
Type
Description
_partition
bytes32
_from
address
_to
address
_value
uint256
_data
bytes
_operatorData
bytes
canTransferByPartition
⤿ Overridden Implementation(s): SecurityToken.canTransferByPartition
Arguments
Name
Type
Description
_from
address
_to
address
_partition
bytes32
_value
uint256
_data
bytes
authorizeOperator
⤿ Overridden Implementation(s): SecurityToken.authorizeOperator
Arguments
Name
Type
Description
_operator
address
revokeOperator
⤿ Overridden Implementation(s): SecurityToken.revokeOperator
Arguments
Name
Type
Description
_operator
address
authorizeOperatorByPartition
⤿ Overridden Implementation(s): SecurityToken.authorizeOperatorByPartition
Arguments
Name
Type
Description
_partition
bytes32
_operator
address
revokeOperatorByPartition
⤿ Overridden Implementation(s): SecurityToken.revokeOperatorByPartition
Arguments
Name
Type
Description
_partition
bytes32
_operator
address
issueByPartition
⤿ Overridden Implementation(s): SecurityToken.issueByPartition
Arguments
Name
Type
Description
_partition
bytes32
_tokenHolder
address
_value
uint256
_data
bytes
redeemByPartition
⤿ Overridden Implementation(s): SecurityToken.redeemByPartition
Arguments
Name
Type
Description
_partition
bytes32
_value
uint256
_data
bytes
operatorRedeemByPartition
⤿ Overridden Implementation(s): SecurityToken.operatorRedeemByPartition
Arguments
Name
Type
Description
_partition
bytes32
_tokenHolder
address
_value
uint256
_data
bytes
_operatorData
bytes
Last updated
Was this helpful?