You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Note that `maxDeposit` increases and decreases in sync with `claimableDepositRequest`.
75
75
76
-
Requests MUST NOT skip or otherwise short-circuit the Claim state. In other words, to initiate and claim a Request, a user MUST call both request* and the corresponding claim* function separately, even in the same block. Vaults MUST NOT "push" tokens onto the user after a Request, users MUST "pull" the tokens via the Claim function.
76
+
Requests MUST NOT skip or otherwise short-circuit the Claim state. In other words, to initiate and claim a Request, a user MUST call both request* and the corresponding Claim function separately, even in the same block. Vaults MUST NOT "push" tokens onto the user after a Request, users MUST "pull" the tokens via the Claim function.
77
77
78
78
For asynchronous Vaults, the exchange rate between `shares` and `assets` including fees and yield is up to the Vault implementation. In other words, pending redemption Requests MAY NOT be yield-bearing and MAY NOT have a fixed exchange rate.
79
79
@@ -108,7 +108,7 @@ MUST revert if all of `assets` cannot be requested for `deposit`/`mint` (due to
108
108
109
109
Note that most implementations will require pre-approval of the Vault with the Vault's underlying `asset` token.
110
110
111
-
MUST emit the `RequestDeposit` event.
111
+
MUST emit the `DepositRequest` event.
112
112
113
113
```yaml
114
114
- name: requestDeposit
@@ -197,7 +197,7 @@ The `assets` that will be received on `redeem` or `withdraw` MAY NOT be equivale
197
197
198
198
MUST revert if all of `shares` cannot be requested for `redeem` / `withdraw` (due to withdrawal limit being reached, slippage, the owner not having enough shares, etc).
199
199
200
-
MUST emit the `RequestRedeem` event.
200
+
MUST emit the `RedeemRequest` event.
201
201
202
202
```yaml
203
203
- name: requestRedeem
@@ -562,4 +562,4 @@ Any user approving an operator must trust that operator with both the `asset` an
562
562
563
563
## Copyright
564
564
565
-
Copyright and related rights waived via [CC0](../LICENSE.md).
565
+
Copyright and related rights waived via [CC0](../LICENSE.md).
0 commit comments