IReceivableEvent
Last updated
Was this helpful?
Emitted when mint a new receivable.
event AssetCreated(
address indexed buyer_,
address indexed seller_,
uint256 indexed tokenId_,
uint256 faceAmount_,
uint256 repaymentTimestamp_
);Parameters
buyer_
address
The address of the buyer that's expected to pay for this receivable.
seller_
address
The address of the seller that's expected to receive payment for this receivable.
tokenId_
uint256
The id of the receivable.
faceAmount_
uint256
The amount of the receivable.
repaymentTimestamp_
uint256
The timestamp when the receivable is expected to be repaid.
Emitted when burn a receivable.
Parameters
tokenId_
uint256
The id of the receivable.
Emitted when the governor is transferred.
Parameters
oldGovernor
address
The address of the old governor.
newGovernor
address
The address of the new governor.
Last updated
Was this helpful?
Was this helpful?
event AssetBurned(uint256 indexed tokenId_);event TransferGovernor(address indexed oldGovernor, address indexed newGovernor);