dsa-connectors/contracts/arbitrum/connectors/arb-claim/events.sol
2023-04-19 20:06:43 +04:00

24 lines
454 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
contract Events {
event LogArbAirdropClaimed(
address indexed account,
uint256 indexed claimable,
uint256 setId
);
event LogArbTokensDelegated(
address indexed account,
address indexed delegatee,
uint256 indexed delegatedAmount
);
event LogArbTokensDelegatedBySig(
address indexed account,
address indexed delegatee,
uint256 indexed delegatedAmount,
uint256 nonce
);
}