From 15df4bcf19d674d72040e2381bda4936b9a4689d Mon Sep 17 00:00:00 2001 From: Jongwon Park Date: Thu, 11 Apr 2024 15:50:46 -0500 Subject: [PATCH] fix(registry): Abstract for IPAccountRegistry (#56) --- contracts/registries/IPAccountRegistry.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/registries/IPAccountRegistry.sol b/contracts/registries/IPAccountRegistry.sol index 853024a8..d9680986 100644 --- a/contracts/registries/IPAccountRegistry.sol +++ b/contracts/registries/IPAccountRegistry.sol @@ -9,7 +9,7 @@ import { Errors } from "../lib/Errors.sol"; /// @title IPAccountRegistry /// @notice This contract is responsible for managing the registration and tracking of IP Accounts. /// It leverages a public ERC6551 registry to deploy IPAccount contracts. -contract IPAccountRegistry is IIPAccountRegistry { +abstract contract IPAccountRegistry is IIPAccountRegistry { /// @notice Returns the IPAccount implementation address address public immutable IP_ACCOUNT_IMPL;