From c2183b46dc715f3643705386e1bb109b970e9573 Mon Sep 17 00:00:00 2001 From: nicholaspai Date: Fri, 2 Feb 2024 13:25:08 -0500 Subject: [PATCH] Update SpokePool.sol --- contracts/SpokePool.sol | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/contracts/SpokePool.sol b/contracts/SpokePool.sol index 2d81c3160..8f1f6bd8e 100644 --- a/contracts/SpokePool.sol +++ b/contracts/SpokePool.sol @@ -167,6 +167,19 @@ abstract contract SpokePool is event SetHubPool(address indexed newHubPool); event EnabledDepositRoute(address indexed originToken, uint256 indexed destinationChainId, bool enabled); /// @custom:audit FOLLOWING EVENT TO BE DEPRECATED + event FundsDeposited( + uint256 amount, + uint256 originChainId, + uint256 indexed destinationChainId, + int64 relayerFeePct, + uint32 indexed depositId, + uint32 quoteTimestamp, + address originToken, + address recipient, + address indexed depositor, + bytes message + ); + /// @custom:audit FOLLOWING EVENT TO BE DEPRECATED event RequestedSpeedUpDeposit( int64 newRelayerFeePct, uint32 indexed depositId,