mirror of
https://github.com/Instadapp/dsa-connectors-2.0.git
synced 2024-07-29 21:57:39 +00:00
13 lines
226 B
Solidity
13 lines
226 B
Solidity
//SPDX-License-Identifier: MIT
|
|
pragma solidity 0.8.19;
|
|
|
|
contract Events {
|
|
event LogSwap(
|
|
address buyToken,
|
|
address sellToken,
|
|
uint256 buyAmt,
|
|
uint256 sellAmt,
|
|
uint256 setId
|
|
);
|
|
}
|