Skip to content

Commit

Permalink
fix issue/redeem interface
Browse files Browse the repository at this point in the history
  • Loading branch information
tbrent committed Jun 21, 2024
1 parent 8c9aa67 commit 2683d0d
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions docs/mev.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,28 @@ A challenge that anyone building on top of the protocol will face is that underl
- Arbitrum: https://arbiscan.io/address/0x387A0C36681A22F728ab54426356F4CAa6bB48a9

```solidity
function issue(address rToken, uint256 amount) external returns (uint256);
function redeem(address rToken, uint256 amount) external returns (uint256);
function issue(address rToken, uint256 amount)
external
returns (
address[] memory tokens,
uint256[] memory deposits,
uint192[] memory depositsUoA
);
function redeem(address rToken, uint256 amount)
external
returns (
address[] memory tokens,
uint256[] memory withdrawals,
uint256[] memory available
);
function redeemCustom(
IRToken rToken,
uint256 amount,
uint48[] memory basketNonces,
uint192[] memory portions
) external returns (address[] memory tokens, uint256[] memory withdrawals);
```

Expand Down

0 comments on commit 2683d0d

Please sign in to comment.