dsa-connectors/contracts/avalanche/connectors/0x/events.sol

14 lines
265 B
Solidity
Raw Normal View History

2022-03-22 14:55:14 +00:00
//SPDX-License-Identifier: MIT
2021-12-12 14:50:43 +00:00
pragma solidity ^0.7.0;
contract Events {
event LogSwap(
address indexed buyToken,
address indexed sellToken,
uint256 buyAmt,
uint256 sellAmt,
uint256 getId,
uint256 setId
);
}