dsa-connectors/contracts/polygon/connectors/dexSimulation/events.sol
2022-06-20 10:34:07 +05:30

12 lines
187 B
Solidity

//SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
contract Events {
event LogSimulateSwap(
address sellToken,
address buyToken,
uint256 sellAmount,
uint256 buyAmount
);
}