dsa-connectors/contracts/polygon/connectors/0x/interface.sol

14 lines
282 B
Solidity
Raw Normal View History

2022-03-22 16:17:41 +00:00
//SPDX-License-Identifier: MIT
2021-12-06 16:44:25 +00:00
pragma solidity ^0.7.0;
import {TokenInterface} from "../../common/interfaces.sol";
struct ZeroExData {
TokenInterface sellToken;
TokenInterface buyToken;
uint256 _sellAmt;
uint256 _buyAmt;
uint256 unitAmt;
bytes callData;
}