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

12 lines
187 B
Solidity
Raw Normal View History

2022-06-20 05:04:07 +00:00
//SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
contract Events {
event LogSimulateSwap(
address sellToken,
address buyToken,
uint256 sellAmount,
uint256 buyAmount
);
}