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 078ee6e commit 135ea22Copy full SHA for 135ea22
packages/interfaces/contracts/toolshed/internal/IProvisionTracker.sol
@@ -4,4 +4,11 @@ pragma solidity 0.8.27;
4
interface IProvisionTracker {
5
// Errors
6
error ProvisionTrackerInsufficientTokens(uint256 tokensAvailable, uint256 tokensRequired);
7
+
8
+ /**
9
+ * @notice Gets the fees provision tracker
10
+ * @param indexer The address of the indexer
11
+ * @return The fees provision tracker
12
+ */
13
+ function feesProvisionTracker(address indexer) external view returns (uint256);
14
}
0 commit comments