@@ -10,9 +10,9 @@ interface IMorphoMarketV1Adapter is IAdapter {
1010
1111 event SetSkimRecipient (address indexed newSkimRecipient );
1212 event Skim (address indexed token , uint256 assets );
13- event SubmitBurnShares (bytes32 indexed id , uint256 executableAt );
14- event RevokeBurnShares (bytes32 indexed id );
15- event BurnShares (bytes32 indexed id , uint256 supplyShares );
13+ event SubmitBurnShares (bytes32 indexed marketId , uint256 executableAt );
14+ event RevokeBurnShares (bytes32 indexed marketId );
15+ event BurnShares (bytes32 indexed marketId , uint256 supplyShares );
1616 event Allocate (bytes32 indexed marketId , uint256 newAllocation , uint256 mintedShares );
1717 event Deallocate (bytes32 indexed marketId , uint256 newAllocation , uint256 burnedShares );
1818
@@ -40,14 +40,14 @@ interface IMorphoMarketV1Adapter is IAdapter {
4040 function marketIdsLength () external view returns (uint256 );
4141 function allocation (MarketParams memory marketParams ) external view returns (uint256 );
4242 function expectedSupplyAssets (bytes32 marketId ) external view returns (uint256 );
43- function burnSharesExecutableAt (bytes32 id ) external view returns (uint256 );
43+ function burnSharesExecutableAt (bytes32 marketId ) external view returns (uint256 );
4444 function ids (MarketParams memory marketParams ) external view returns (bytes32 [] memory );
4545
4646 /* NON-VIEW FUNCTIONS */
4747
48- function submitBurnShares (bytes32 id ) external ;
49- function revokeBurnShares (bytes32 id ) external ;
50- function burnShares (bytes32 id ) external ;
48+ function submitBurnShares (bytes32 marketId ) external ;
49+ function revokeBurnShares (bytes32 marketId ) external ;
50+ function burnShares (bytes32 marketId ) external ;
5151 function setSkimRecipient (address newSkimRecipient ) external ;
5252 function skim (address token ) external ;
5353}
0 commit comments