event Freezed(address to, uint64 release, uint256 amount)
to
address
release
uint64
amount
uint256
event Released(address owner, uint256 amount)
owner
function balanceOf(address _owner) public view returns (uint256 balance) view public
function balanceOf(address _owner) public view returns (uint256 balance)
Developer note: Gets the balance of the specified address include freezing tokens.
_owner
The address to query the the balance of.
Returns:
balance
An uint256 representing the amount owned by the passed address.
function actualBalanceOf(address _owner) public view returns (uint256 balance) view public
function actualBalanceOf(address _owner) public view returns (uint256 balance)
Developer note: Gets the balance of the specified address without freezing tokens.
n uint256 representing the amount owned by the passed address.
function freezingBalanceOf(address _owner) public view returns (uint256 balance) view public
function freezingBalanceOf(address _owner) public view returns (uint256 balance)