Skip to content

Commit 5c566fb

Browse files
committed
WIP
Signed-off-by: chrismaree <[email protected]>
1 parent 56dca16 commit 5c566fb

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

contracts/SpokePool.sol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -581,7 +581,7 @@ abstract contract SpokePool is
581581
uint32 fillDeadline,
582582
uint32 exclusivityPeriod,
583583
bytes calldata message
584-
) public payable {
584+
) public payable override {
585585
depositV3(
586586
depositor.toBytes32(),
587587
recipient.toBytes32(),

contracts/interfaces/V3SpokePoolInterface.sol

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -197,6 +197,21 @@ interface V3SpokePoolInterface {
197197
bytes calldata message
198198
) external payable;
199199

200+
function depositV3(
201+
address depositor,
202+
address recipient,
203+
address inputToken,
204+
address outputToken,
205+
uint256 inputAmount,
206+
uint256 outputAmount,
207+
uint256 destinationChainId,
208+
address exclusiveRelayer,
209+
uint32 quoteTimestamp,
210+
uint32 fillDeadline,
211+
uint32 exclusivityDeadline,
212+
bytes calldata message
213+
) external payable;
214+
200215
function depositV3Now(
201216
bytes32 depositor,
202217
bytes32 recipient,

0 commit comments

Comments
 (0)