dsa-connectors/contracts/mainnet/connectors/oasis/events.sol

21 lines
422 B
Solidity
Raw Normal View History

2021-02-13 12:49:31 +00:00
pragma solidity ^0.7.0;
contract Events {
event LogBuy(
address indexed buyToken,
address indexed sellToken,
uint256 buyAmt,
uint256 sellAmt,
uint256 getId,
uint256 setId
);
event LogSell(
address indexed buyToken,
address indexed sellToken,
uint256 buyAmt,
uint256 sellAmt,
uint256 getId,
uint256 setId
);
}