version bumps

This commit is contained in:
Noah Zinsmeister
2019-12-08 14:52:19 -05:00
parent 90dc9f39ab
commit d9dec32a8b
12 changed files with 493 additions and 367 deletions

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.12; pragma solidity 0.5.13;
import "./interfaces/IUniswapV2.sol"; import "./interfaces/IUniswapV2.sol";

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.12; pragma solidity 0.5.13;
import "./interfaces/IUniswapV2Factory.sol"; import "./interfaces/IUniswapV2Factory.sol";
import "./UniswapV2.sol"; import "./UniswapV2.sol";

View File

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

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.12; pragma solidity 0.5.13;
interface IUniswapV2 { interface IUniswapV2 {
event LiquidityMinted( event LiquidityMinted(

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.12; pragma solidity 0.5.13;
interface IUniswapV2Factory { interface IUniswapV2Factory {
event ExchangeCreated(address indexed token0, address indexed token1, address exchange, uint256 exchangeNumber); event ExchangeCreated(address indexed token0, address indexed token1, address exchange, uint256 exchangeNumber);

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.12; pragma solidity 0.5.13;
library Math { library Math {
function add512(uint x0, uint64 x1, uint y0, uint64 y1) internal pure returns (uint z0, uint64 z1) { function add512(uint x0, uint64 x1, uint y0, uint64 y1) internal pure returns (uint z0, uint64 z1) {

View File

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

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.12; pragma solidity 0.5.13;
// helpful links // helpful links
// https://en.wikipedia.org/wiki/Q_(number_format) // https://en.wikipedia.org/wiki/Q_(number_format)

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.12; pragma solidity 0.5.13;
import "../interfaces/IERC20.sol"; import "../interfaces/IERC20.sol";

View File

@ -1,4 +1,4 @@
pragma solidity 0.5.12; pragma solidity 0.5.13;
contract SafeTransfer { contract SafeTransfer {
function safeTransfer(address token, address to, uint value) internal { function safeTransfer(address token, address to, uint value) internal {

View File

@ -3,13 +3,13 @@
"node": "^10" "node": "^10"
}, },
"dependencies": { "dependencies": {
"solc": "0.5.12" "solc": "0.5.13"
}, },
"devDependencies": { "devDependencies": {
"@types/chai": "^4.2.3", "@types/chai": "^4.2.3",
"@types/mocha": "^5.2.7", "@types/mocha": "^5.2.7",
"chai": "^4.2.0", "chai": "^4.2.0",
"ethereum-waffle": "^2.1.0", "ethereum-waffle": "^2.1.1",
"ethereumjs-util": "^6.1.0", "ethereumjs-util": "^6.1.0",
"mocha": "^6.2.2", "mocha": "^6.2.2",
"prettier": "^1.18.2", "prettier": "^1.18.2",

836
yarn.lock

File diff suppressed because it is too large Load Diff