Biswap-Kapinus
36 removals
461 lines
36 additions
461 lines
/**
/**
*Submitted for verification at BscScan.com on 2021-05-24
*Submitted for verification at BscScan.com on 2023-06-09
*/
*/
pragma solidity =0.5.16;
pragma solidity =0.5.16;
interface IBiswapPair {
interface IKapinusPair {
event Approval(address indexed owner, address indexed spender, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external pure returns (string memory);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint);
function nonces(address owner) external view returns (uint);
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
event Mint(address indexed sender, uint amount0, uint amount1);
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Swap(
event Swap(
address indexed sender,
address indexed sender,
uint amount0In,
uint amount0In,
uint amount1In,
uint amount1In,
uint amount0Out,
uint amount0Out,
uint amount1Out,
uint amount1Out,
address indexed to
address indexed to
);
);
event Sync(uint112 reserve0, uint112 reserve1);
event Sync(uint112 reserve0, uint112 reserve1);
function MINIMUM_LIQUIDITY() external pure returns (uint);
function MINIMUM_LIQUIDITY() external pure returns (uint);
function factory() external view returns (address);
function factory() external view returns (address);
function token0() external view returns (address);
function token0() external view returns (address);
function token1() external view returns (address);
function token1() external view returns (address);
function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
function price0CumulativeLast() external view returns (uint);
function price0CumulativeLast() external view returns (uint);
function price1CumulativeLast() external view returns (uint);
function price1CumulativeLast() external view returns (uint);
function kLast() external view returns (uint);
function kLast() external view returns (uint);
function swapFee() external view returns (uint32);
function swapFee() external view returns (uint32);
function devFee() external view returns (uint32);
function devFee() external view returns (uint32);
function mint(address to) external returns (uint liquidity);
function mint(address to) external returns (uint liquidity);
function burn(address to) external returns (uint amount0, uint amount1);
function burn(address to) external returns (uint amount0, uint amount1);
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
function skim(address to) external;
function skim(address to) external;
function sync() external;
function sync() external;
function initialize(address, address) external;
function initialize(address, address) external;
function setSwapFee(uint32) external;
function setSwapFee(uint32) external;
function setDevFee(uint32) external;
function setDevFee(uint32) external;
}
}
interface IBiswapERC20 {
interface IKapinusERC20 {
event Approval(address indexed owner, address indexed spender, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external pure returns (string memory);
function name() external pure returns (string memory);
function symbol() external pure returns (string memory);
function symbol() external pure returns (string memory);
function decimals() external pure returns (uint8);
function decimals() external pure returns (uint8);
function totalSupply() external view returns (uint);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function DOMAIN_SEPARATOR() external view returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function PERMIT_TYPEHASH() external pure returns (bytes32);
function nonces(address owner) external view returns (uint);
function nonces(address owner) external view returns (uint);
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;
}
}
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) {
require((z = x + y) >= x, 'ds-math-add-overflow');
require((z = x + y) >= x, 'ds-math-add-overflow');
}
}
function sub(uint x, uint y) internal pure returns (uint z) {
function sub(uint x, uint y) internal pure returns (uint z) {
require((z = x - y) <= x, 'ds-math-sub-underflow');
require((z = x - y) <= x, 'ds-math-sub-underflow');
}
}
function mul(uint x, uint y) internal pure returns (uint z) {
function mul(uint x, uint y) internal pure returns (uint z) {
require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow');
require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow');
}
}
}
}
contract BiswapERC20 is IBiswapERC20 {
contract KapinusERC20 is IKapinusERC20 {
using SafeMath for uint;
using SafeMath for uint;
string public constant name = 'Biswap LPs';
string public constant name = 'Kapinus LPs';
string public constant symbol = 'BSW-LP';
string public constant symbol = 'KAP-LP';
uint8 public constant decimals = 18;
uint8 public constant decimals = 18;
uint public totalSupply;
uint public totalSupply;
mapping(address => uint) public balanceOf;
mapping(address => uint) public balanceOf;
mapping(address => mapping(address => uint)) public allowance;
mapping(address => mapping(address => uint)) public allowance;
bytes32 public DOMAIN_SEPARATOR;
bytes32 public DOMAIN_SEPARATOR;
// keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
// keccak256("Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)");
bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
bytes32 public constant PERMIT_TYPEHASH = 0x6e71edae12b1b97f4d1f60370fef10105fa2faae0126114a169c64845d6126c9;
mapping(address => uint) public nonces;
mapping(address => uint) public nonces;
event Approval(address indexed owner, address indexed spender, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
event Transfer(address indexed from, address indexed to, uint value);
constructor() public {
constructor() public {
uint chainId;
uint chainId;
assembly {
assembly {
chainId := chainid
chainId := chainid
}
}
DOMAIN_SEPARATOR = keccak256(
DOMAIN_SEPARATOR = keccak256(
abi.encode(
abi.encode(
keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'),
keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)'),
keccak256(bytes(name)),
keccak256(bytes(name)),
keccak256(bytes('1')),
keccak256(bytes('1')),
chainId,
chainId,
address(this)
address(this)
)
)
);
);
}
}
function _mint(address to, uint value) internal {
function _mint(address to, uint value) internal {
totalSupply = totalSupply.add(value);
totalSupply = totalSupply.add(value);
balanceOf[to] = balanceOf[to].add(value);
balanceOf[to] = balanceOf[to].add(value);
emit Transfer(address(0), to, value);
emit Transfer(address(0), to, value);
}
}
function _burn(address from, uint value) internal {
function _burn(address from, uint value) internal {
balanceOf[from] = balanceOf[from].sub(value);
balanceOf[from] = balanceOf[from].sub(value);
totalSupply = totalSupply.sub(value);
totalSupply = totalSupply.sub(value);
emit Transfer(from, address(0), value);
emit Transfer(from, address(0), value);
}
}
function _approve(address owner, address spender, uint value) private {
function _approve(address owner, address spender, uint value) private {
allowance[owner][spender] = value;
allowance[owner][spender] = value;
emit Approval(owner, spender, value);
emit Approval(owner, spender, value);
}
}
function _transfer(address from, address to, uint value) private {
function _transfer(address from, address to, uint value) private {
balanceOf[from] = balanceOf[from].sub(value);
balanceOf[from] = balanceOf[from].sub(value);
balanceOf[to] = balanceOf[to].add(value);
balanceOf[to] = balanceOf[to].add(value);
emit Transfer(from, to, value);
emit Transfer(from, to, value);
}
}
function approve(address spender, uint value) external returns (bool) {
function approve(address spender, uint value) external returns (bool) {
_approve(msg.sender, spender, value);
_approve(msg.sender, spender, value);
return true;
return true;
}
}
function transfer(address to, uint value) external returns (bool) {
function transfer(address to, uint value) external returns (bool) {
_transfer(msg.sender, to, value);
_transfer(msg.sender, to, value);
return true;
return true;
}
}
function transferFrom(address from, address to, uint value) external returns (bool) {
function transferFrom(address from, address to, uint value) external returns (bool) {
if (allowance[from][msg.sender] != uint(-1)) {
if (allowance[from][msg.sender] != uint(-1)) {
allowance[from][msg.sender] = allowance[from][msg.sender].sub(value);
allowance[from][msg.sender] = allowance[from][msg.sender].sub(value);
}
}
_transfer(from, to, value);
_transfer(from, to, value);
return true;
return true;
}
}
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external {
require(deadline >= block.timestamp, 'Biswap: EXPIRED');
require(deadline >= block.timestamp, 'Kapinus: EXPIRED');
bytes32 digest = keccak256(
bytes32 digest = keccak256(
abi.encodePacked(
abi.encodePacked(
'\x19\x01',
'\x19\x01',
DOMAIN_SEPARATOR,
DOMAIN_SEPARATOR,
keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline))
keccak256(abi.encode(PERMIT_TYPEHASH, owner, spender, value, nonces[owner]++, deadline))
)
)
);
);
address recoveredAddress = ecrecover(digest, v, r, s);
address recoveredAddress = ecrecover(digest, v, r, s);
require(recoveredAddress != address(0) && recoveredAddress == owner, 'Biswap: INVALID_SIGNATURE');
require(recoveredAddress != address(0) && recoveredAddress == owner, 'Kapinus: INVALID_SIGNATURE');
_approve(owner, spender, value);
_approve(owner, spender, value);
}
}
}
}
library Math {
library Math {
function min(uint x, uint y) internal pure returns (uint z) {
function min(uint x, uint y) internal pure returns (uint z) {
z = x < y ? x : y;
z = x < y ? x : y;
}
}
// babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
// babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
function sqrt(uint y) internal pure returns (uint z) {
function sqrt(uint y) internal pure returns (uint z) {
if (y > 3) {
if (y > 3) {
z = y;
z = y;
uint x = y / 2 + 1;
uint x = y / 2 + 1;
while (x < z) {
while (x < z) {
z = x;
z = x;
x = (y / x + x) / 2;
x = (y / x + x) / 2;
}
}
} else if (y != 0) {
} else if (y != 0) {
z = 1;
z = 1;
}
}
}
}
}
}
library UQ112x112 {
library UQ112x112 {
uint224 constant Q112 = 2**112;
uint224 constant Q112 = 2**112;
// encode a uint112 as a UQ112x112
// encode a uint112 as a UQ112x112
function encode(uint112 y) internal pure returns (uint224 z) {
function encode(uint112 y) internal pure returns (uint224 z) {
z = uint224(y) * Q112; // never overflows
z = uint224(y) * Q112; // never overflows
}
}
// divide a UQ112x112 by a uint112, returning a UQ112x112
// divide a UQ112x112 by a uint112, returning a UQ112x112
function uqdiv(uint224 x, uint112 y) internal pure returns (uint224 z) {
function uqdiv(uint224 x, uint112 y) internal pure returns (uint224 z) {
z = x / uint224(y);
z = x / uint224(y);
}
}
}
}
interface IERC20 {
interface IERC20 {
event Approval(address indexed owner, address indexed spender, uint value);
event Approval(address indexed owner, address indexed spender, uint value);
event Transfer(address indexed from, address indexed to, uint value);
event Transfer(address indexed from, address indexed to, uint value);
function name() external view returns (string memory);
function name() external view returns (string memory);
function symbol() external view returns (string memory);
function symbol() external view returns (string memory);
function decimals() external view returns (uint8);
function decimals() external view returns (uint8);
function totalSupply() external view returns (uint);
function totalSupply() external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function balanceOf(address owner) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function allowance(address owner, address spender) external view returns (uint);
function approve(address spender, uint value) external returns (bool);
function approve(address spender, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transfer(address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
function transferFrom(address from, address to, uint value) external returns (bool);
}
}
interface IBiswapFactory {
interface IKapinusFactory {
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
event PairCreated(address indexed token0, address indexed token1, address pair, uint);
function feeTo() external view returns (address);
function feeTo() external view returns (address);
function feeToSetter() external view returns (address);
function feeToSetter() external view returns (address);
function INIT_CODE_HASH() external pure returns (bytes32);
function INIT_CODE_HASH() external pure returns (bytes32);
function getPair(address tokenA, address tokenB) external view returns (address pair);
function getPair(address tokenA, address tokenB) external view returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairs(uint) external view returns (address pair);
function allPairsLength() external view returns (uint);
function allPairsLength() external view returns (uint);
function createPair(address tokenA, address tokenB) external returns (address pair);
function createPair(address tokenA, address tokenB) external returns (address pair);
function setFeeTo(address) external;
function setFeeTo(address) external;
function setFeeToSetter(address) external;
function setFeeToSetter(address) external;
function setDevFee(address pair, uint8 _devFee) external;
function setDevFee(address pair, uint8 _devFee) external;
function setSwapFee(address pair, uint32 swapFee) external;
function setSwapFee(address pair, uint32 swapFee) external;
}
}
interface IBiswapCallee {
interface IKapinusCallee {
function BiswapCall(address sender, uint amount0, uint amount1, bytes calldata data) external;
function KapinusCall(address sender, uint amount0, uint amount1, bytes calldata data) external;
}
}
contract BiswapPair is IBiswapPair, BiswapERC20 {
contract KapinusPair is IKapinusPair, KapinusERC20 {
using SafeMath for uint;
using SafeMath for uint;
using UQ112x112 for uint224;
using UQ112x112 for uint224;
uint public constant MINIMUM_LIQUIDITY = 10**3;
uint public constant MINIMUM_LIQUIDITY = 10**3;
bytes4 private constant SELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)')));
bytes4 private constant SELECTOR = bytes4(keccak256(bytes('transfer(address,uint256)')));
address public factory;
address public factory;
address public token0;
address public token0;
address public token1;
address public token1;
uint112 private reserve0; // uses single storage slot, accessible via getReserves
uint112 private reserve0; // uses single storage slot, accessible via getReserves
uint112 private reserve1; // uses single storage slot, accessible via getReserves
uint112 private reserve1; // uses single storage slot, accessible via getReserves
uint32 private blockTimestampLast; // uses single storage slot, accessible via getReserves
uint32 private blockTimestampLast; // uses single storage slot, accessible via getReserves
uint public price0CumulativeLast;
uint public price0CumulativeLast;
uint public price1CumulativeLast;
uint public price1CumulativeLast;
uint public kLast; // reserve0 * reserve1, as of immediately after the most recent liquidity event
uint public kLast; // reserve0 * reserve1, as of immediately after the most recent liquidity event
uint32 public swapFee = 1; // uses 0.1% default
uint32 public swapFee = 5; // uses 0.5% default
uint32 public devFee = 1; // uses 0.5% default from swap fee
uint32 public devFee = 1; // uses 0.1% default from swap fee
uint private unlocked = 1;
uint private unlocked = 1;
modifier lock() {
modifier lock() {
require(unlocked == 1, 'Biswap: LOCKED');
require(unlocked == 1, 'Kapinus: LOCKED');
unlocked = 0;
unlocked = 0;
_;
_;
unlocked = 1;
unlocked = 1;
}
}
function getReserves() public view returns (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast) {
function getReserves() public view returns (uint112 _reserve0, uint112 _reserve1, uint32 _blockTimestampLast) {
_reserve0 = reserve0;
_reserve0 = reserve0;
_reserve1 = reserve1;
_reserve1 = reserve1;
_blockTimestampLast = blockTimestampLast;
_blockTimestampLast = blockTimestampLast;
}
}
function _safeTransfer(address token, address to, uint value) private {
function _safeTransfer(address token, address to, uint value) private {
(bool success, bytes memory data) = token.call(abi.encodeWithSelector(SELECTOR, to, value));
(bool success, bytes memory data) = token.call(abi.encodeWithSelector(SELECTOR, to, value));
require(success && (data.length == 0 || abi.decode(data, (bool))), 'Biswap: TRANSFER_FAILED');
require(success && (data.length == 0 || abi.decode(data, (bool))), 'Kapinus: TRANSFER_FAILED');
}
}
event Mint(address indexed sender, uint amount0, uint amount1);
event Mint(address indexed sender, uint amount0, uint amount1);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
event Swap(
event Swap(
address indexed sender,
address indexed sender,
uint amount0In,
uint amount0In,
uint amount1In,
uint amount1In,
uint amount0Out,
uint amount0Out,
uint amount1Out,
uint amount1Out,
address indexed to
address indexed to
);
);
event Sync(uint112 reserve0, uint112 reserve1);
event Sync(uint112 reserve0, uint112 reserve1);
constructor() public {
constructor() public {
factory = msg.sender;
factory = msg.sender;
}
}
// called once by the factory at time of deployment
// called once by the factory at time of deployment
function initialize(address _token0, address _token1) external {
function initialize(address _token0, address _token1) external {
require(msg.sender == factory, 'Biswap: FORBIDDEN'); // sufficient check
require(msg.sender == factory, 'Kapinus: FORBIDDEN'); // sufficient check
token0 = _token0;
token0 = _token0;
token1 = _token1;
token1 = _token1;
}
}
function setSwapFee(uint32 _swapFee) external {
function setSwapFee(uint32 _swapFee) external {
require(_swapFee > 0, "BiswapPair: lower then 0");
require(_swapFee > 0, "KapinusPair: lower then 0");
require(msg.sender == factory, 'BiswapPair: FORBIDDEN');
require(msg.sender == factory, 'KapinusPair: FORBIDDEN');
require(_swapFee <= 1000, 'BiswapPair: FORBIDDEN_FEE');
require(_swapFee <= 1000, 'KapinusPair: FORBIDDEN_FEE');
swapFee = _swapFee;
swapFee = _swapFee;
}
}
function setDevFee(uint32 _devFee) external {
function setDevFee(uint32 _devFee) external {
require(_devFee > 0, "BiswapPair: lower then 0");
require(_devFee > 0, "KapinusPair: lower then 0");
require(msg.sender == factory, 'BiswapPair: FORBIDDEN');
require(msg.sender == factory, 'KapinusPair: FORBIDDEN');
require(_devFee <= 500, 'BiswapPair: FORBIDDEN_FEE');
require(_devFee <= 500, 'KapinusPair: FORBIDDEN_FEE');
devFee = _devFee;
devFee = _devFee;
}
}
// update reserves and, on the first call per block, price accumulators
// update reserves and, on the first call per block, price accumulators
function _update(uint balance0, uint balance1, uint112 _reserve0, uint112 _reserve1) private {
function _update(uint balance0, uint balance1, uint112 _reserve0, uint112 _reserve1) private {
require(balance0 <= uint112(-1) && balance1 <= uint112(-1), 'Biswap: OVERFLOW');
require(balance0 <= uint112(-1) && balance1 <= uint112(-1), 'Kapinus: OVERFLOW');
uint32 blockTimestamp = uint32(block.timestamp % 2**32);
uint32 blockTimestamp = uint32(block.timestamp % 2**32);
uint32 timeElapsed = blockTimestamp - blockTimestampLast; // overflow is desired
uint32 timeElapsed = blockTimestamp - blockTimestampLast; // overflow is desired
if (timeElapsed > 0 && _reserve0 != 0 && _reserve1 != 0) {
if (timeElapsed > 0 && _reserve0 != 0 && _reserve1 != 0) {
// * never overflows, and + overflow is desired
// * never overflows, and + overflow is desired
price0CumulativeLast += uint(UQ112x112.encode(_reserve1).uqdiv(_reserve0)) * timeElapsed;
price0CumulativeLast += uint(UQ112x112.encode(_reserve1).uqdiv(_reserve0)) * timeElapsed;
price1CumulativeLast += uint(UQ112x112.encode(_reserve0).uqdiv(_reserve1)) * timeElapsed;
price1CumulativeLast += uint(UQ112x112.encode(_reserve0).uqdiv(_reserve1)) * timeElapsed;
}
}
reserve0 = uint112(balance0);
reserve0 = uint112(balance0);
reserve1 = uint112(balance1);
reserve1 = uint112(balance1);
blockTimestampLast = blockTimestamp;
blockTimestampLast = blockTimestamp;
emit Sync(reserve0, reserve1);
emit Sync(reserve0, reserve1);
}
}
// if fee is on, mint liquidity equivalent to 1/6th of the growth in sqrt(k)
// if fee is on, mint liquidity equivalent to 1/6th of the growth in sqrt(k)
function _mintFee(uint112 _reserve0, uint112 _reserve1) private returns (bool feeOn) {
function _mintFee(uint112 _reserve0, uint112 _reserve1) private returns (bool feeOn) {
address feeTo = IBiswapFactory(factory).feeTo();
address feeTo = IKapinusFactory(factory).feeTo();
feeOn = feeTo != address(0);
feeOn = feeTo != address(0);
uint _kLast = kLast; // gas savings
uint _kLast = kLast; // gas savings
if (feeOn) {
if (feeOn) {
if (_kLast != 0) {
if (_kLast != 0) {
uint rootK = Math.sqrt(uint(_reserve0).mul(_reserve1));
uint rootK = Math.sqrt(uint(_reserve0).mul(_reserve1));
uint rootKLast = Math.sqrt(_kLast);
uint rootKLast = Math.sqrt(_kLast);
if (rootK > rootKLast) {
if (rootK > rootKLast) {
uint numerator = totalSupply.mul(rootK.sub(rootKLast));
uint numerator = totalSupply.mul(rootK.sub(rootKLast));
uint denominator = rootK.mul(devFee).add(rootKLast);
uint denominator = rootK.mul(devFee).add(rootKLast);
uint liquidity = numerator / denominator;
uint liquidity = numerator / denominator;
if (liquidity > 0) _mint(feeTo, liquidity);
if (liquidity > 0) _mint(feeTo, liquidity);
}
}
}
}
} else if (_kLast != 0) {
} else if (_kLast != 0) {
kLast = 0;
kLast = 0;
}
}
}
}
// this low-level function should be called from a contract which performs important safety checks
// this low-level function should be called from a contract which performs important safety checks
function mint(address to) external lock returns (uint liquidity) {
function mint(address to) external lock returns (uint liquidity) {
(uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
(uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
uint balance0 = IERC20(token0).balanceOf(address(this));
uint balance0 = IERC20(token0).balanceOf(address(this));
uint balance1 = IERC20(token1).balanceOf(address(this));
uint balance1 = IERC20(token1).balanceOf(address(this));
uint amount0 = balance0.sub(_reserve0);
uint amount0 = balance0.sub(_reserve0);
uint amount1 = balance1.sub(_reserve1);
uint amount1 = balance1.sub(_reserve1);
bool feeOn = _mintFee(_reserve0, _reserve1);
bool feeOn = _mintFee(_reserve0, _reserve1);
uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
if (_totalSupply == 0) {
if (_totalSupply == 0) {
liquidity = Math.sqrt(amount0.mul(amount1)).sub(MINIMUM_LIQUIDITY);
liquidity = Math.sqrt(amount0.mul(amount1)).sub(MINIMUM_LIQUIDITY);
_mint(address(0), MINIMUM_LIQUIDITY); // permanently lock the first MINIMUM_LIQUIDITY tokens
_mint(address(0), MINIMUM_LIQUIDITY); // permanently lock the first MINIMUM_LIQUIDITY tokens
} else {
} else {
liquidity = Math.min(amount0.mul(_totalSupply) / _reserve0, amount1.mul(_totalSupply) / _reserve1);
liquidity = Math.min(amount0.mul(_totalSupply) / _reserve0, amount1.mul(_totalSupply) / _reserve1);
}
}
require(liquidity > 0, 'Biswap: INSUFFICIENT_LIQUIDITY_MINTED');
require(liquidity > 0, 'Kapinus: INSUFFICIENT_LIQUIDITY_MINTED');
_mint(to, liquidity);
_mint(to, liquidity);
_update(balance0, balance1, _reserve0, _reserve1);
_update(balance0, balance1, _reserve0, _reserve1);
if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date
if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date
emit Mint(msg.sender, amount0, amount1);
emit Mint(msg.sender, amount0, amount1);
}
}
// this low-level function should be called from a contract which performs important safety checks
// this low-level function should be called from a contract which performs important safety checks
function burn(address to) external lock returns (uint amount0, uint amount1) {
function burn(address to) external lock returns (uint amount0, uint amount1) {
(uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
(uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
address _token0 = token0; // gas savings
address _token0 = token0; // gas savings
address _token1 = token1; // gas savings
address _token1 = token1; // gas savings
uint balance0 = IERC20(_token0).balanceOf(address(this));
uint balance0 = IERC20(_token0).balanceOf(address(this));
uint balance1 = IERC20(_token1).balanceOf(address(this));
uint balance1 = IERC20(_token1).balanceOf(address(this));
uint liquidity = balanceOf[address(this)];
uint liquidity = balanceOf[address(this)];
bool feeOn = _mintFee(_reserve0, _reserve1);
bool feeOn = _mintFee(_reserve0, _reserve1);
uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
uint _totalSupply = totalSupply; // gas savings, must be defined here since totalSupply can update in _mintFee
amount0 = liquidity.mul(balance0) / _totalSupply; // using balances ensures pro-rata distribution
amount0 = liquidity.mul(balance0) / _totalSupply; // using balances ensures pro-rata distribution
amount1 = liquidity.mul(balance1) / _totalSupply; // using balances ensures pro-rata distribution
amount1 = liquidity.mul(balance1) / _totalSupply; // using balances ensures pro-rata distribution
require(amount0 > 0 && amount1 > 0, 'Biswap: INSUFFICIENT_LIQUIDITY_BURNED');
require(amount0 > 0 && amount1 > 0, 'Kapinus: INSUFFICIENT_LIQUIDITY_BURNED');
_burn(address(this), liquidity);
_burn(address(this), liquidity);
_safeTransfer(_token0, to, amount0);
_safeTransfer(_token0, to, amount0);
_safeTransfer(_token1, to, amount1);
_safeTransfer(_token1, to, amount1);
balance0 = IERC20(_token0).balanceOf(address(this));
balance0 = IERC20(_token0).balanceOf(address(this));
balance1 = IERC20(_token1).balanceOf(address(this));
balance1 = IERC20(_token1).balanceOf(address(this));
_update(balance0, balance1, _reserve0, _reserve1);
_update(balance0, balance1, _reserve0, _reserve1);
if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date
if (feeOn) kLast = uint(reserve0).mul(reserve1); // reserve0 and reserve1 are up-to-date
emit Burn(msg.sender, amount0, amount1, to);
emit Burn(msg.sender, amount0, amount1, to);
}
}
// this low-level function should be called from a contract which performs important safety checks
// this low-level function should be called from a contract which performs important safety checks
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external lock {
function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external lock {
require(amount0Out > 0 || amount1Out > 0, 'Biswap: INSUFFICIENT_OUTPUT_AMOUNT');
require(amount0Out > 0 || amount1Out > 0, 'Kapinus: INSUFFICIENT_OUTPUT_AMOUNT');
(uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
(uint112 _reserve0, uint112 _reserve1,) = getReserves(); // gas savings
require(amount0Out < _reserve0 && amount1Out < _reserve1, 'Biswap: INSUFFICIENT_LIQUIDITY');
require(amount0Out < _reserve0 && amount1Out < _reserve1, 'Kapinus: INSUFFICIENT_LIQUIDITY');
uint balance0;
uint balance0;
uint balance1;
uint balance1;
{ // scope for _token{0,1}, avoids stack too deep errors
{ // scope for _token{0,1}, avoids stack too deep errors
address _token0 = token0;
address _token0 = token0;
address _token1 = token1;
address _token1 = token1;
require(to != _token0 && to != _token1, 'Biswap: INVALID_TO');
require(to != _token0 && to != _token1, 'Kapinus: INVALID_TO');
if (amount0Out > 0) _safeTransfer(_token0, to, amount0Out); // optimistically transfer tokens
if (amount0Out > 0) _safeTransfer(_token0, to, amount0Out); // optimistically transfer tokens
if (amount1Out > 0) _safeTransfer(_token1, to, amount1Out); // optimistically transfer tokens
if (amount1Out > 0) _safeTransfer(_token1, to, amount1Out); // optimistically transfer tokens
if (data.length > 0) IBiswapCallee(to).BiswapCall(msg.sender, amount0Out, amount1Out, data);
if (data.length > 0) IKapinusCallee(to).KapinusCall(msg.sender, amount0Out, amount1Out, data);
balance0 = IERC20(_token0).balanceOf(address(this));
balance0 = IERC20(_token0).balanceOf(address(this));
balance1 = IERC20(_token1).balanceOf(address(this));
balance1 = IERC20(_token1).balanceOf(address(this));
}
}
uint amount0In = balance0 > _reserve0 - amount0Out ? balance0 - (_reserve0 - amount0Out) : 0;
uint amount0In = balance0 > _reserve0 - amount0Out ? balance0 - (_reserve0 - amount0Out) : 0;
uint amount1In = balance1 > _reserve1 - amount1Out ? balance1 - (_reserve1 - amount1Out) : 0;
uint amount1In = balance1 > _reserve1 - amount1Out ? balance1 - (_reserve1 - amount1Out) : 0;
require(amount0In > 0 || amount1In > 0, 'Biswap: INSUFFICIENT_INPUT_AMOUNT');
require(amount0In > 0 || amount1In > 0, 'Kapinus: INSUFFICIENT_INPUT_AMOUNT');
{ // scope for reserve{0,1}Adjusted, avoids stack too deep errors
{ // scope for reserve{0,1}Adjusted, avoids stack too deep errors
uint _swapFee = swapFee;
uint _swapFee = swapFee;
uint balance0Adjusted = balance0.mul(1000).sub(amount0In.mul(_swapFee));
uint balance0Adjusted = balance0.mul(1000).sub(amount0In.mul(_swapFee));
uint balance1Adjusted = balance1.mul(1000).sub(amount1In.mul(_swapFee));
uint balance1Adjusted = balance1.mul(1000).sub(amount1In.mul(_swapFee));
require(balance0Adjusted.mul(balance1Adjusted) >= uint(_reserve0).mul(_reserve1).mul(1000**2), 'Biswap: K');
require(balance0Adjusted.mul(balance1Adjusted) >= uint(_reserve0).mul(_reserve1).mul(1000**2), 'Kapinus: K');
}
}
_update(balance0, balance1, _reserve0, _reserve1);
_update(balance0, balance1, _reserve0, _reserve1);
emit Swap(msg.sender, amount0In, amount1In, amount0Out, amount1Out, to);
emit Swap(msg.sender, amount0In, amount1In, amount0Out, amount1Out, to);
}
}
// force balances to match reserves
// force balances to match reserves
function skim(address to) external lock {
function skim(address to) external lock {
address _token0 = token0; // gas savings
address _token0 = token0; // gas savings
address _token1 = token1; // gas savings
address _token1 = token1; // gas savings
_safeTransfer(_token0, to, IERC20(_token0).balanceOf(address(this)).sub(reserve0));
_safeTransfer(_token0, to, IERC20(_token0).balanceOf(address(this)).sub(reserve0));
_safeTransfer(_token1, to, IERC20(_token1).balanceOf(address(this)).sub(reserve1));
_safeTransfer(_token1, to, IERC20(_token1).balanceOf(address(this)).sub(reserve1));
}
}
// force reserves to match balances
// force reserves to match balances
function sync() external lock {
function sync() external lock {
_update(IERC20(token0).balanceOf(address(this)), IERC20(token1).balanceOf(address(this)), reserve0, reserve1);
_update(IERC20(token0).balanceOf(address(this)), IERC20(token1).balanceOf(address(this)), reserve0, reserve1);
}
}
}
}