Skip to content

Commit 83aa11d

Browse files
authored
feat(docs): add RedemptionPerformed event to IAssetManagerEvents documentation (#740)
1 parent d4482e3 commit 83aa11d

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

docs/fassets/reference/IAssetManagerEvents.mdx

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,3 +194,17 @@ event RedemptionTicketUpdated(
194194
uint256 indexed redemptionTicketId,
195195
uint256 ticketValueUBA);
196196
```
197+
198+
### `RedemptionPerformed`
199+
200+
The event is emitted when the agent provides proof of redemption payment, and the agent's collateral is released.
201+
202+
```solidity
203+
event RedemptionPerformed(
204+
address indexed agentVault,
205+
address indexed redeemer,
206+
uint64 indexed requestId,
207+
bytes32 transactionHash,
208+
uint256 redemptionAmountUBA,
209+
int256 spentUnderlyingUBA);
210+
```

0 commit comments

Comments
 (0)