Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions contracts/interfaces/ICoverMigrator.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,10 @@ import "@openzeppelin/contracts-v4/token/ERC721/IERC721Receiver.sol";

interface ICoverMigrator {
function submitClaim(uint coverId) external;

function migrateCoverFrom(
uint coverId,
address msgSender,
address newOwner
) external returns (uint newCoverId);
}
7 changes: 5 additions & 2 deletions contracts/interfaces/IMasterAwareV2.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,11 @@ interface IMasterAwareV2 {
AS, // Assessment.sol
TK, // NXMToken.sol
PS, // LegacyPooledStaking.sol
GV, // Governance.sol
IC // IndividualClaims.sol
GV, // Governance.sol
IC, // IndividualClaims.sol
GW, // LegacyGateway.sol
QD, // LegacyQuotationData.sol
CL // CoverMigrator.sol
}

function changeMasterAddress(address masterAddress) external;
Expand Down
Loading