update to solc@0.5.16
update waffle version and fix deprecations move CI from circle to github actions
This commit is contained in:
@ -1,4 +1,4 @@
|
||||
pragma solidity 0.5.15;
|
||||
pragma solidity =0.5.16;
|
||||
|
||||
import "./interfaces/IUniswapV2ERC20.sol";
|
||||
import "./libraries/SafeMath.sol";
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
pragma solidity 0.5.15;
|
||||
pragma solidity =0.5.16;
|
||||
|
||||
import "./interfaces/IUniswapV2Exchange.sol";
|
||||
import "./UniswapV2ERC20.sol";
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
pragma solidity 0.5.15;
|
||||
pragma solidity =0.5.16;
|
||||
|
||||
import "./interfaces/IUniswapV2Factory.sol";
|
||||
import "./UniswapV2Exchange.sol";
|
||||
|
||||
@ -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);
|
||||
|
||||
@ -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);
|
||||
|
||||
@ -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);
|
||||
|
||||
@ -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);
|
||||
|
||||
@ -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) {
|
||||
|
||||
@ -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) {
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
pragma solidity 0.5.15;
|
||||
pragma solidity =0.5.16;
|
||||
|
||||
library UQ112x112 {
|
||||
uint224 constant Q112 = 2**112;
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
pragma solidity 0.5.15;
|
||||
pragma solidity =0.5.16;
|
||||
|
||||
import "../UniswapV2ERC20.sol";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user