Core Events
This section covers the core events emitted by the Papaya protocol.
Transfer
event Transfer(address indexed _from, address indexed _to, uint256 _value)Parameters
Description
Example
// Listen for transfer events
papayaContract.on("Transfer", (from, to, value) => {
console.log(`Transfer: ${value} tokens from ${from} to ${to}`);
});Refill
Parameters
Description
Example
Liquidated
Parameters
Description
Example
OwnershipTransferred
Parameters
Description
Example
EIP712DomainChanged
Description
Example
Last updated