update to solc@0.5.16

update waffle version and fix deprecations

move CI from circle to github actions
This commit is contained in:
Noah Zinsmeister
2020-01-22 11:47:24 -05:00
parent 0781322e0b
commit b972227df8
20 changed files with 732 additions and 241 deletions

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.15;
pragma solidity =0.5.16;
import "./interfaces/IUniswapV2ERC20.sol";
import "./libraries/SafeMath.sol";

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.15;
pragma solidity =0.5.16;
import "./interfaces/IUniswapV2Exchange.sol";
import "./UniswapV2ERC20.sol";

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.15;
pragma solidity =0.5.16;
import "./interfaces/IUniswapV2Factory.sol";
import "./UniswapV2Exchange.sol";

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.15;
pragma solidity =0.5.16;
interface IERC20 {
event Transfer(address indexed from, address indexed to, uint value);

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.15;
pragma solidity =0.5.16;
interface IUniswapV2ERC20 {
event Transfer(address indexed from, address indexed to, uint value);

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.15;
pragma solidity =0.5.16;
interface IUniswapV2Exchange {
event Mint(address indexed sender, uint amount0, uint amount1);

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.15;
pragma solidity =0.5.16;
interface IUniswapV2Factory {
event ExchangeCreated(address indexed token0, address indexed token1, address exchange, uint256);

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.15;
pragma solidity =0.5.16;
library Math {
function min(uint x, uint y) internal pure returns (uint z) {

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.15;
pragma solidity =0.5.16;
library SafeMath {
function add(uint x, uint y) internal pure returns (uint z) {

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.15;
pragma solidity =0.5.16;
library UQ112x112 {
uint224 constant Q112 = 2**112;

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.15;
pragma solidity =0.5.16;
import "../UniswapV2ERC20.sol";