IEvents
Events
DistributePoints
Emitted when points are distributed to an address.
event DistributePoints(address indexed to, uint256 indexed amount)
Tip
Emitted when points are tipped from one address to another.
event Tip(address indexed from, address indexed to, bytes32 indexed feedId, uint256 amount)
Purchase
Emitted when points are paid from one address to another for some purchase.
event Purchase(
address indexed from, address indexed to, bytes32 indexed feedId, uint256 amount
)
AirdropTokens
Emitted when points are airdropped to an address.
event AirdropTokens(address indexed to, uint256 indexed amount)
TaxCollected
Emitted when tax is collected.
event TaxCollected(address indexed collector, uint256 indexed amount)
Parameters
Name | Type | Description |
---|---|---|
collector | address | The address that collected the tax. |
amount | uint256 | The amount of tax collected. |
WithdrawnByFeedId
Emitted when points are withdrawn by feed id.
event WithdrawnByFeedId(address indexed to, bytes32 indexed feedId, uint256 indexed amount)
Withdrawn
Emitted when tokens are withdrawn from an address.
event Withdrawn(address indexed user, address indexed to, uint256 indexed amount)