Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions contracts/SpokePool.sol
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down