From 1c8a63ca986577b828eed2ffe9ee18d279484dfe Mon Sep 17 00:00:00 2001 From: 0age <37939117+0age@users.noreply.github.com> Date: Mon, 21 Oct 2024 05:51:47 -0700 Subject: [PATCH] add a missing fn to interface --- src/interfaces/ITheCompact.sol | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/interfaces/ITheCompact.sol b/src/interfaces/ITheCompact.sol index 1f4e04e..bb56e2e 100644 --- a/src/interfaces/ITheCompact.sol +++ b/src/interfaces/ITheCompact.sol @@ -107,6 +107,8 @@ interface ITheCompact { function deposit(address token, address allocator, ResetPeriod resetPeriod, Scope scope, uint256 amount, address recipient) external returns (uint256 id); + function deposit(uint256[2][] calldata idsAndAmounts, address recipient) external payable returns (bool); + function deposit( address token, uint256 amount,