dsa-connectors/contracts/arbitrum/connectors/arb-claim/events.sol

16 lines
272 B
Solidity
Raw Normal View History

2023-04-19 16:06:43 +00:00
// 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,
2023-04-19 17:13:05 +00:00
address indexed delegatee
2023-04-19 16:06:43 +00:00
);
}