dsa-connectors/contracts/polygon/connectors/swap/events.sol

15 lines
244 B
Solidity
Raw Normal View History

2022-06-04 03:43:19 +00:00
//SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
contract Events {
event LogSwap(
2022-06-05 04:27:17 +00:00
string _connector,
2022-06-04 03:43:19 +00:00
address indexed buyToken,
address indexed sellToken,
uint256 buyAmt,
uint256 sellAmt,
uint256 getId,
uint256 setId
);
}