dsa-connectors/contracts/mainnet/connectors/polygon-bridge/events.sol

12 lines
220 B
Solidity
Raw Normal View History

2022-03-22 15:24:40 +00:00
//SPDX-License-Identifier: MIT
2021-04-12 10:48:42 +00:00
pragma solidity ^0.7.0;
contract Events {
event LogDeposit(
address targetDsa,
address token,
uint256 amt,
uint256 getId,
uint256 setId
);
}