dsa-connectors/contracts/mainnet/connectors/0x/events.sol

14 lines
265 B
Solidity
Raw Normal View History

2022-03-22 15:24:40 +00:00
//SPDX-License-Identifier: MIT
2022-03-22 16:24:20 +00:00
pragma solidity ^0.7.0;
2021-12-06 12:17:55 +00:00
contract Events {
event LogSwap(
address indexed buyToken,
address indexed sellToken,
uint256 buyAmt,
uint256 sellAmt,
uint256 getId,
uint256 setId
);
}