Skip to content

Commit f22e83a

Browse files
committed
fix: add missing nextAccountSeqID and multicall to IL2GNSToolshed interface
1 parent db7fd6d commit f22e83a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

packages/interfaces/contracts/toolshed/IL2GNSToolshed.sol

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ pragma solidity ^0.7.6 || 0.8.27;
33

44
import { IGNS } from "../contracts/discovery/IGNS.sol";
55
import { IL2GNS } from "../contracts/l2/discovery/IL2GNS.sol";
6+
import { IMulticall } from "../contracts/base/IMulticall.sol";
67

7-
interface IL2GNSToolshed is IGNS, IL2GNS {
8+
interface IL2GNSToolshed is IGNS, IL2GNS, IMulticall {
9+
function nextAccountSeqID(address account) external view returns (uint256);
810
function subgraphNFT() external view returns (address);
911
}

0 commit comments

Comments
 (0)