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

15 lines
250 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(
string _connector,
address indexed buyToken,
address indexed sellToken,
uint256 buyAmt,
uint256 sellAmt,
uint256 getId,
uint256 setId
);
}