tornado-aggregator/contracts/Aggregator.sol

11 lines
274 B
Solidity
Raw Normal View History

2020-10-07 15:05:34 +02:00
// SPDX-License-Identifier: MIT
pragma solidity ^0.6.12;
pragma experimental ABIEncoderV2;
import "./GovernanceAggregator.sol";
import "./PriceAggregator.sol";
import "./SwapAggregator.sol";
contract Aggregator is GovernanceAggregator, PriceAggregator, SwapAggregator {}