Checkpoint module for issuing ether dividends (EtherDividendCheckpoint.sol)
event EtherDividendDeposited(address indexed _depositor, uint256 _checkpointId, uint256 _maturity, uint256 _expiry, uint256 _amount, uint256 _totalSupply, uint256 indexed _dividendIndex, bytes32 indexed _name);
event EtherDividendClaimed(address indexed _payee, uint256 indexed _dividendIndex, uint256 _amount, uint256 _withheld);
event EtherDividendReclaimed(address indexed _claimer, uint256 indexed _dividendIndex, uint256 _claimedAmount);
event EtherDividendClaimFailed(address indexed _payee, uint256 indexed _dividendIndex, uint256 _amount, uint256 _withheld);
event EtherDividendWithholdingWithdrawn(address indexed _claimer, uint256 indexed _dividendIndex, uint256 _withheldAmount);Functions
createDividend
createDividendWithCheckpoint
createDividendWithExclusions
createDividendWithCheckpointAndExclusions
_createDividendWithCheckpointAndExclusions
_payDividend
reclaimDividend
withdrawWithholding
Last updated
Was this helpful?