We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db7fd6d commit f22e83aCopy full SHA for f22e83a
packages/interfaces/contracts/toolshed/IL2GNSToolshed.sol
@@ -3,7 +3,9 @@ pragma solidity ^0.7.6 || 0.8.27;
3
4
import { IGNS } from "../contracts/discovery/IGNS.sol";
5
import { IL2GNS } from "../contracts/l2/discovery/IL2GNS.sol";
6
+import { IMulticall } from "../contracts/base/IMulticall.sol";
7
-interface IL2GNSToolshed is IGNS, IL2GNS {
8
+interface IL2GNSToolshed is IGNS, IL2GNS, IMulticall {
9
+ function nextAccountSeqID(address account) external view returns (uint256);
10
function subgraphNFT() external view returns (address);
11
}
0 commit comments