Diff
checker
Text
Text
Bilder
Dokumente
Excel
Ordner
Legal
Enterprise
Desktop-App
Preise
Einloggen
Diffchecker Desktop herunterladen
Texte vergleichen
Finde den Unterschied zwischen zwei Textdateien
Werkzeuge
Verlauf
Live-Editor
Leerzeichen ausblenden
Gleiches ausblenden
Zeilenumbruch aus
Ansicht
Zweispaltig
Einspaltig
Vergleichsgenauigkeit
Intelligent
Wort
Zeichen
Textstile
Darstellung ändern
Syntaxhervorhebung
Syntax auswählen
Ignorieren
Text umwandeln
Zur ersten Änderung
Eingabe bearbeiten
Diffchecker Desktop
Der sicherste Weg, Diffchecker zu nutzen. Hol dir die Desktop-App: Deine Diffs verlassen nie deinen Computer!
Desktop holen
bZx
Erstellt
vor 6 Jahren
Diff läuft nie ab
Löschen
Exportieren
Teilen
Erklären
1 Entfernung
Zeilen
Gesamt
Entfernt
Zeichen
Gesamt
Entfernt
Um diese Funktion weiterhin zu nutzen, aktualisiere auf
Diff
checker
Pro
Preise anzeigen
807 Zeilen
Kopieren
1 Hinzufügung
Zeilen
Gesamt
Hinzugefügt
Zeichen
Gesamt
Hinzugefügt
Um diese Funktion weiterhin zu nutzen, aktualisiere auf
Diff
checker
Pro
Preise anzeigen
807 Zeilen
Kopieren
/**
/**
Kopieren
Kopiert
Kopieren
Kopiert
*Submitted for verification at Etherscan.io on 2020-09-
04
*Submitted for verification at Etherscan.io on 2020-09-
13
*/
*/
/**
/**
* Copyright 2017-2020, bZeroX, LLC <https://bzx.network/>. All Rights Reserved.
* Copyright 2017-2020, bZeroX, LLC <https://bzx.network/>. All Rights Reserved.
* Licensed under the Apache License, Version 2.0.
* Licensed under the Apache License, Version 2.0.
*/
*/
pragma solidity 0.5.17;
pragma solidity 0.5.17;
pragma experimental ABIEncoderV2;
pragma experimental ABIEncoderV2;
interface IWeth {
interface IWeth {
function deposit() external payable;
function deposit() external payable;
function withdraw(uint256 wad) external;
function withdraw(uint256 wad) external;
}
}
contract IERC20 {
contract IERC20 {
string public name;
string public name;
uint8 public decimals;
uint8 public decimals;
string public symbol;
string public symbol;
function totalSupply() public view returns (uint256);
function totalSupply() public view returns (uint256);
function balanceOf(address _who) public view returns (uint256);
function balanceOf(address _who) public view returns (uint256);
function allowance(address _owner, address _spender) public view returns (uint256);
function allowance(address _owner, address _spender) public view returns (uint256);
function approve(address _spender, uint256 _value) public returns (bool);
function approve(address _spender, uint256 _value) public returns (bool);
function transfer(address _to, uint256 _value) public returns (bool);
function transfer(address _to, uint256 _value) public returns (bool);
function transferFrom(address _from, address _to, uint256 _value) public returns (bool);
function transferFrom(address _from, address _to, uint256 _value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
event Transfer(address indexed from, address indexed to, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
}
contract IWethERC20 is IWeth, IERC20 {}
contract IWethERC20 is IWeth, IERC20 {}
/**
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
* checks.
*
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
* operation overflows.
*
*
* Using this library instead of the unchecked operations eliminates an entire
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
* class of bugs, so it's recommended to use it always.
*/
*/
library SafeMath {
library SafeMath {
/**
/**
* @dev Returns the addition of two unsigned integers, reverting on
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
* overflow.
*
*
* Counterpart to Solidity's `+` operator.
* Counterpart to Solidity's `+` operator.
*
*
* Requirements:
* Requirements:
* - Addition cannot overflow.
* - Addition cannot overflow.
*/
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
function add(uint256 a, uint256 b) internal pure returns (uint256) {
uint256 c = a + b;
uint256 c = a + b;
require(c >= a, "SafeMath: addition overflow");
require(c >= a, "SafeMath: addition overflow");
return c;
return c;
}
}
/**
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
* overflow (when the result is negative).
*
*
* Counterpart to Solidity's `-` operator.
* Counterpart to Solidity's `-` operator.
*
*
* Requirements:
* Requirements:
* - Subtraction cannot overflow.
* - Subtraction cannot overflow.
*/
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return sub(a, b, "SafeMath: subtraction overflow");
return sub(a, b, "SafeMath: subtraction overflow");
}
}
/**
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
* overflow (when the result is negative).
*
*
* Counterpart to Solidity's `-` operator.
* Counterpart to Solidity's `-` operator.
*
*
* Requirements:
* Requirements:
* - Subtraction cannot overflow.
* - Subtraction cannot overflow.
*
*
* _Available since v2.4.0._
* _Available since v2.4.0._
*/
*/
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b <= a, errorMessage);
require(b <= a, errorMessage);
uint256 c = a - b;
uint256 c = a - b;
return c;
return c;
}
}
/**
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
* overflow.
*
*
* Counterpart to Solidity's `*` operator.
* Counterpart to Solidity's `*` operator.
*
*
* Requirements:
* Requirements:
* - Multiplication cannot overflow.
* - Multiplication cannot overflow.
*/
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
if (a == 0) {
return 0;
return 0;
}
}
uint256 c = a * b;
uint256 c = a * b;
require(c / a == b, "SafeMath: multiplication overflow");
require(c / a == b, "SafeMath: multiplication overflow");
return c;
return c;
}
}
/**
/**
* @dev Returns the integer division of two unsigned integers. Reverts on
* @dev Returns the integer division of two unsigned integers. Reverts on
* division by zero. The result is rounded towards zero.
* division by zero. The result is rounded towards zero.
*
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
* uses an invalid opcode to revert (consuming all remaining gas).
*
*
* Requirements:
* Requirements:
* - The divisor cannot be zero.
* - The divisor cannot be zero.
*/
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return div(a, b, "SafeMath: division by zero");
return div(a, b, "SafeMath: division by zero");
}
}
/**
/**
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* @dev Returns the integer division of two unsigned integers. Reverts with custom message on
* division by zero. The result is rounded towards zero.
* division by zero. The result is rounded towards zero.
*
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
* uses an invalid opcode to revert (consuming all remaining gas).
*
*
* Requirements:
* Requirements:
* - The divisor cannot be zero.
* - The divisor cannot be zero.
*
*
* _Available since v2.4.0._
* _Available since v2.4.0._
*/
*/
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
// Solidity only automatically asserts when dividing by 0
require(b != 0, errorMessage);
require(b != 0, errorMessage);
uint256 c = a / b;
uint256 c = a / b;
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
// assert(a == b * c + a % b); // There is no case in which this doesn't hold
return c;
return c;
}
}
/**
/**
* @dev Integer division of two numbers, rounding up and truncating the quotient
* @dev Integer division of two numbers, rounding up and truncating the quotient
*/
*/
function divCeil(uint256 a, uint256 b) internal pure returns (uint256) {
function divCeil(uint256 a, uint256 b) internal pure returns (uint256) {
return divCeil(a, b, "SafeMath: division by zero");
return divCeil(a, b, "SafeMath: division by zero");
}
}
/**
/**
* @dev Integer division of two numbers, rounding up and truncating the quotient
* @dev Integer division of two numbers, rounding up and truncating the quotient
*/
*/
function divCeil(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
function divCeil(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
// Solidity only automatically asserts when dividing by 0
// Solidity only automatically asserts when dividing by 0
require(b != 0, errorMessage);
require(b != 0, errorMessage);
if (a == 0) {
if (a == 0) {
return 0;
return 0;
}
}
uint256 c = ((a - 1) / b) + 1;
uint256 c = ((a - 1) / b) + 1;
return c;
return c;
}
}
/**
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts when dividing by zero.
* Reverts when dividing by zero.
*
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
* invalid opcode to revert (consuming all remaining gas).
*
*
* Requirements:
* Requirements:
* - The divisor cannot be zero.
* - The divisor cannot be zero.
*/
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return mod(a, b, "SafeMath: modulo by zero");
return mod(a, b, "SafeMath: modulo by zero");
}
}
/**
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* Reverts with custom message when dividing by zero.
* Reverts with custom message when dividing by zero.
*
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
* invalid opcode to revert (consuming all remaining gas).
*
*
* Requirements:
* Requirements:
* - The divisor cannot be zero.
* - The divisor cannot be zero.
*
*
* _Available since v2.4.0._
* _Available since v2.4.0._
*/
*/
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) {
require(b != 0, errorMessage);
require(b != 0, errorMessage);
return a % b;
return a % b;
}
}
function min256(uint256 _a, uint256 _b) internal pure returns (uint256) {
function min256(uint256 _a, uint256 _b) internal pure returns (uint256) {
return _a < _b ? _a : _b;
return _a < _b ? _a : _b;
}
}
}
}
/**
/**
* @title SignedSafeMath
* @title SignedSafeMath
* @dev Signed math operations with safety checks that revert on error.
* @dev Signed math operations with safety checks that revert on error.
*/
*/
library SignedSafeMath {
library SignedSafeMath {
int256 constant private _INT256_MIN = -2**255;
int256 constant private _INT256_MIN = -2**255;
/**
/**
* @dev Returns the multiplication of two signed integers, reverting on
* @dev Returns the multiplication of two signed integers, reverting on
* overflow.
* overflow.
*
*
* Counterpart to Solidity's `*` operator.
* Counterpart to Solidity's `*` operator.
*
*
* Requirements:
* Requirements:
*
*
* - Multiplication cannot overflow.
* - Multiplication cannot overflow.
*/
*/
function mul(int256 a, int256 b) internal pure returns (int256) {
function mul(int256 a, int256 b) internal pure returns (int256) {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) {
if (a == 0) {
return 0;
return 0;
}
}
require(!(a == -1 && b == _INT256_MIN), "SignedSafeMath: multiplication overflow");
require(!(a == -1 && b == _INT256_MIN), "SignedSafeMath: multiplication overflow");
int256 c = a * b;
int256 c = a * b;
require(c / a == b, "SignedSafeMath: multiplication overflow");
require(c / a == b, "SignedSafeMath: multiplication overflow");
return c;
return c;
}
}
/**
/**
* @dev Returns the integer division of two signed integers. Reverts on
* @dev Returns the integer division of two signed integers. Reverts on
* division by zero. The result is rounded towards zero.
* division by zero. The result is rounded towards zero.
*
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
* uses an invalid opcode to revert (consuming all remaining gas).
*
*
* Requirements:
* Requirements:
*
*
* - The divisor cannot be zero.
* - The divisor cannot be zero.
*/
*/
function div(int256 a, int256 b) internal pure returns (int256) {
function div(int256 a, int256 b) internal pure returns (int256) {
require(b != 0, "SignedSafeMath: division by zero");
require(b != 0, "SignedSafeMath: division by zero");
require(!(b == -1 && a == _INT256_MIN), "SignedSafeMath: division overflow");
require(!(b == -1 && a == _INT256_MIN), "SignedSafeMath: division overflow");
int256 c = a / b;
int256 c = a / b;
return c;
return c;
}
}
/**
/**
* @dev Returns the subtraction of two signed integers, reverting on
* @dev Returns the subtraction of two signed integers, reverting on
* overflow.
* overflow.
*
*
* Counterpart to Solidity's `-` operator.
* Counterpart to Solidity's `-` operator.
*
*
* Requirements:
* Requirements:
*
*
* - Subtraction cannot overflow.
* - Subtraction cannot overflow.
*/
*/
function sub(int256 a, int256 b) internal pure returns (int256) {
function sub(int256 a, int256 b) internal pure returns (int256) {
int256 c = a - b;
int256 c = a - b;
require((b >= 0 && c <= a) || (b < 0 && c > a), "SignedSafeMath: subtraction overflow");
require((b >= 0 && c <= a) || (b < 0 && c > a), "SignedSafeMath: subtraction overflow");
return c;
return c;
}
}
/**
/**
* @dev Returns the addition of two signed integers, reverting on
* @dev Returns the addition of two signed integers, reverting on
* overflow.
* overflow.
*
*
* Counterpart to Solidity's `+` operator.
* Counterpart to Solidity's `+` operator.
*
*
* Requirements:
* Requirements:
*
*
* - Addition cannot overflow.
* - Addition cannot overflow.
*/
*/
function add(int256 a, int256 b) internal pure returns (int256) {
function add(int256 a, int256 b) internal pure returns (int256) {
int256 c = a + b;
int256 c = a + b;
require((b >= 0 && c >= a) || (b < 0 && c < a), "SignedSafeMath: addition overflow");
require((b >= 0 && c >= a) || (b < 0 && c < a), "SignedSafeMath: addition overflow");
return c;
return c;
}
}
}
}
/**
/**
* @title Helps contracts guard against reentrancy attacks.
* @title Helps contracts guard against reentrancy attacks.
* @author Remco Bloemen <remco@2π.com>, Eenae <alexey@mixbytes.io>
* @author Remco Bloemen <remco@2π.com>, Eenae <alexey@mixbytes.io>
* @dev If you mark a function `nonReentrant`, you should also
* @dev If you mark a function `nonReentrant`, you should also
* mark it `external`.
* mark it `external`.
*/
*/
contract ReentrancyGuard {
contract ReentrancyGuard {
/// @dev Constant for unlocked guard state - non-zero to prevent extra gas costs.
/// @dev Constant for unlocked guard state - non-zero to prevent extra gas costs.
/// See: https://github.com/OpenZeppelin/openzeppelin-solidity/issues/1056
/// See: https://github.com/OpenZeppelin/openzeppelin-solidity/issues/1056
uint256 internal constant REENTRANCY_GUARD_FREE = 1;
uint256 internal constant REENTRANCY_GUARD_FREE = 1;
/// @dev Constant for locked guard state
/// @dev Constant for locked guard state
uint256 internal constant REENTRANCY_GUARD_LOCKED = 2;
uint256 internal constant REENTRANCY_GUARD_LOCKED = 2;
/**
/**
* @dev We use a single lock for the whole contract.
* @dev We use a single lock for the whole contract.
*/
*/
uint256 internal reentrancyLock = REENTRANCY_GUARD_FREE;
uint256 internal reentrancyLock = REENTRANCY_GUARD_FREE;
/**
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* @dev Prevents a contract from calling itself, directly or indirectly.
* If you mark a function `nonReentrant`, you should also
* If you mark a function `nonReentrant`, you should also
* mark it `external`. Calling one `nonReentrant` function from
* mark it `external`. Calling one `nonReentrant` function from
* another is not supported. Instead, you can implement a
* another is not supported. Instead, you can implement a
* `private` function doing the actual work, and an `external`
* `private` function doing the actual work, and an `external`
* wrapper marked as `nonReentrant`.
* wrapper marked as `nonReentrant`.
*/
*/
modifier nonReentrant() {
modifier nonReentrant() {
require(reentrancyLock == REENTRANCY_GUARD_FREE, "nonReentrant");
require(reentrancyLock == REENTRANCY_GUARD_FREE, "nonReentrant");
reentrancyLock = REENTRANCY_GUARD_LOCKED;
reentrancyLock = REENTRANCY_GUARD_LOCKED;
_;
_;
reentrancyLock = REENTRANCY_GUARD_FREE;
reentrancyLock = REENTRANCY_GUARD_FREE;
}
}
}
}
/**
/**
* @dev Collection of functions related to the address type
* @dev Collection of functions related to the address type
*/
*/
library Address {
library Address {
/**
/**
* @dev Returns true if `account` is a contract.
* @dev Returns true if `account` is a contract.
*
*
* [IMPORTANT]
* [IMPORTANT]
* ====
* ====
* It is unsafe to assume that an address for which this function returns
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
* false is an externally-owned account (EOA) and not a contract.
*
*
* Among others, `isContract` will return false for the following
* Among others, `isContract` will return false for the following
* types of addresses:
* types of addresses:
*
*
* - an externally-owned account
* - an externally-owned account
* - a contract in construction
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* - an address where a contract lived, but was destroyed
* ====
* ====
*/
*/
function isContract(address account) internal view returns (bool) {
function isContract(address account) internal view returns (bool) {
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// According to EIP-1052, 0x0 is the value returned for not-yet created accounts
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned
// for accounts without code, i.e. `keccak256('')`
// for accounts without code, i.e. `keccak256('')`
bytes32 codehash;
bytes32 codehash;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470;
// solhint-disable-next-line no-inline-assembly
// solhint-disable-next-line no-inline-assembly
assembly { codehash := extcodehash(account) }
assembly { codehash := extcodehash(account) }
return (codehash != accountHash && codehash != 0x0);
return (codehash != accountHash && codehash != 0x0);
}
}
/**
/**
* @dev Converts an `address` into `address payable`. Note that this is
* @dev Converts an `address` into `address payable`. Note that this is
* simply a type cast: the actual underlying value is not changed.
* simply a type cast: the actual underlying value is not changed.
*
*
* _Available since v2.4.0._
* _Available since v2.4.0._
*/
*/
function toPayable(address account) internal pure returns (address payable) {
function toPayable(address account) internal pure returns (address payable) {
return address(uint160(account));
return address(uint160(account));
}
}
/**
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
* `recipient`, forwarding all available gas and reverting on errors.
*
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
* `transfer`. {sendValue} removes this limitation.
*
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*
*
* _Available since v2.4.0._
* _Available since v2.4.0._
*/
*/
function sendValue(address recipient, uint256 amount) internal {
function sendValue(address recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
require(address(this).balance >= amount, "Address: insufficient balance");
// solhint-disable-next-line avoid-call-value
// solhint-disable-next-line avoid-call-value
(bool success, ) = recipient.call.value(amount)("");
(bool success, ) = recipient.call.value(amount)("");
require(success, "Address: unable to send value, recipient may have reverted");
require(success, "Address: unable to send value, recipient may have reverted");
}
}
}
}
/*
/*
* @dev Provides information about the current execution context, including the
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with GSN meta-transactions the account sending and
* manner, since when dealing with GSN meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* paying for execution may not be the actual sender (as far as an application
* is concerned).
* is concerned).
*
*
* This contract is only required for intermediate, library-like contracts.
* This contract is only required for intermediate, library-like contracts.
*/
*/
contract Context {
contract Context {
// Empty internal constructor, to prevent people from mistakenly deploying
// Empty internal constructor, to prevent people from mistakenly deploying
// an instance of this contract, which should be used via inheritance.
// an instance of this contract, which should be used via inheritance.
constructor () internal { }
constructor () internal { }
// solhint-disable-previous-line no-empty-blocks
// solhint-disable-previous-line no-empty-blocks
function _msgSender() internal view returns (address payable) {
function _msgSender() internal view returns (address payable) {
return msg.sender;
return msg.sender;
}
}
function _msgData() internal view returns (bytes memory) {
function _msgData() internal view returns (bytes memory) {
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
return msg.data;
return msg.data;
}
}
}
}
/**
/**
* @dev Contract module which provides a basic access control mechanism, where
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
* specific functions.
*
*
* This module is used through inheritance. It will make available the modifier
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
* the owner.
*/
*/
contract Ownable is Context {
contract Ownable is Context {
address private _owner;
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
/**
* @dev Initializes the contract setting the deployer as the initial owner.
* @dev Initializes the contract setting the deployer as the initial owner.
*/
*/
constructor () internal {
constructor () internal {
address msgSender = _msgSender();
address msgSender = _msgSender();
_owner = msgSender;
_owner = msgSender;
emit OwnershipTransferred(address(0), msgSender);
emit OwnershipTransferred(address(0), msgSender);
}
}
/**
/**
* @dev Returns the address of the current owner.
* @dev Returns the address of the current owner.
*/
*/
function owner() public view returns (address) {
function owner() public view returns (address) {
return _owner;
return _owner;
}
}
/**
/**
* @dev Throws if called by any account other than the owner.
* @dev Throws if called by any account other than the owner.
*/
*/
modifier onlyOwner() {
modifier onlyOwner() {
require(isOwner(), "unauthorized");
require(isOwner(), "unauthorized");
_;
_;
}
}
/**
/**
* @dev Returns true if the caller is the current owner.
* @dev Returns true if the caller is the current owner.
*/
*/
function isOwner() public view returns (bool) {
function isOwner() public view returns (bool) {
return _msgSender() == _owner;
return _msgSender() == _owner;
}
}
/**
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
* Can only be called by the current owner.
*/
*/
function transferOwnership(address newOwner) public onlyOwner {
function transferOwnership(address newOwner) public onlyOwner {
_transferOwnership(newOwner);
_transferOwnership(newOwner);
}
}
/**
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* @dev Transfers ownership of the contract to a new account (`newOwner`).
*/
*/
function _transferOwnership(address newOwner) internal {
function _transferOwnership(address newOwner) internal {
require(newOwner != address(0), "Ownable: new owner is the zero address");
require(newOwner != address(0), "Ownable: new owner is the zero address");
emit OwnershipTransferred(_owner, newOwner);
emit OwnershipTransferred(_owner, newOwner);
_owner = newOwner;
_owner = newOwner;
}
}
}
}
interface ProtocolLike {
interface ProtocolLike {
function borrowOrTradeFromPool(
function borrowOrTradeFromPool(
bytes32 loanParamsId,
bytes32 loanParamsId,
bytes32 loanId, // if 0, start a new loan
bytes32 loanId, // if 0, start a new loan
bool isTorqueLoan,
bool isTorqueLoan,
uint256 initialMargin,
uint256 initialMargin,
address[4] calldata sentAddresses,
address[4] calldata sentAddresses,
// lender: must match loan if loanId provided
// lender: must match loan if loanId provided
// borrower: must match loan if loanId provided
// borrower: must match loan if loanId provided
// receiver: receiver of funds (address(0) assumes borrower address)
// receiver: receiver of funds (address(0) assumes borrower address)
// manager: delegated manager of loan unless address(0)
// manager: delegated manager of loan unless address(0)
uint256[5] calldata sentValues,
uint256[5] calldata sentValues,
// newRate: new loan interest rate
// newRate: new loan interest rate
// newPrincipal: new loan size (borrowAmount + any borrowed interest)
// newPrincipal: new loan size (borrowAmount + any borrowed interest)
// torqueInterest: new amount of interest to escrow for Torque loan (determines initial loan length)
// torqueInterest: new amount of interest to escrow for Torque loan (determines initial loan length)
// loanTokenReceived: total loanToken deposit (amount not sent to borrower in the case of Torque loans)
// loanTokenReceived: total loanToken deposit (amount not sent to borrower in the case of Torque loans)
// collateralTokenReceived: total collateralToken deposit
// collateralTokenReceived: total collateralToken deposit
bytes calldata loanDataBytes)
bytes calldata loanDataBytes)
external
external
payable
payable
returns (uint256 newPrincipal, uint256 newCollateral);
returns (uint256 newPrincipal, uint256 newCollateral);
function getTotalPrincipal(
function getTotalPrincipal(
address lender,
address lender,
address loanToken)
address loanToken)
external
external
view
view
returns (uint256);
returns (uint256);
function withdrawAccruedInterest(
function withdrawAccruedInterest(
address loanToken)
address loanToken)
external;
external;
function getLenderInterestData(
function getLenderInterestData(
address lender,
address lender,
address loanToken)
address loanToken)
external
external
view
view
returns (
returns (
uint256 interestPaid,
uint256 interestPaid,
uint256 interestPaidDate,
uint256 interestPaidDate,
uint256 interestOwedPerDay,
uint256 interestOwedPerDay,
uint256 interestUnPaid,
uint256 interestUnPaid,
uint256 interestFeePercent,
uint256 interestFeePercent,
uint256 principalTotal);
uint256 principalTotal);
function priceFeeds()
function priceFeeds()
external
external
view
view
returns (address);
returns (address);
function getEstimatedMarginExposure(
function getEstimatedMarginExposure(
address loanToken,
address loanToken,
address collateralToken,
address collateralToken,
uint256 loanTokenSent,
uint256 loanTokenSent,
uint256 collateralTokenSent,
uint256 collateralTokenSent,
uint256 interestRate,
uint256 interestRate,
uint256 newPrincipal)
uint256 newPrincipal)
external
external
view
view
returns (uint256);
returns (uint256);
function getRequiredCollateralByParams(
function getRequiredCollateralByParams(
bytes32 loanParamsId,
bytes32 loanParamsId,
address loanToken,
address loanToken,
address collateralToken,
address collateralToken,
uint256 newPrincipal,
uint256 newPrincipal,
bool isTorqueLoan)
bool isTorqueLoan)
external
external
view
view
returns (uint256 collateralAmountRequired);
returns (uint256 collateralAmountRequired);
function getBorrowAmountByParams(
function getBorrowAmountByParams(
bytes32 loanParamsId,
bytes32 loanParamsId,
address loanToken,
address loanToken,
address collateralToken,
address collateralToken,
uint256 collateralTokenAmount,
uint256 collateralTokenAmount,
bool isTorqueLoan)
bool isTorqueLoan)
external
external
view
view
returns (uint256 borrowAmount);
returns (uint256 borrowAmount);
function isLoanPool(
function isLoanPool(
address loanPool)
address loanPool)
external
external
view
view
returns (bool);
returns (bool);
function lendingFeePercent()
function lendingFeePercent()
external
external
view
view
returns (uint256);
returns (uint256);
}
}
interface FeedsLike {
interface FeedsLike {
function queryRate(
function queryRate(
address sourceTokenAddress,
address sourceTokenAddress,
address destTokenAddress)
address destTokenAddress)
external
external
view
view
returns (uint256 rate, uint256 precision);
returns (uint256 rate, uint256 precision);
}
}
contract ITokenHolderLike {
contract ITokenHolderLike {
function balanceOf(address _who) public view returns (uint256);
function balanceOf(address _who) public view returns (uint256);
function freeUpTo(uint256 value) public returns (uint256);
function freeUpTo(uint256 value) public returns (uint256);
function freeFromUpTo(address from, uint256 value) public returns (uint256);
function freeFromUpTo(address from, uint256 value) public returns (uint256);
}
}
contract GasTokenUser {
contract GasTokenUser {
ITokenHolderLike constant public gasToken = ITokenHolderLike(0x0000000000004946c0e9F43F4Dee607b0eF1fA1c);
ITokenHolderLike constant public gasToken = ITokenHolderLike(0x0000000000004946c0e9F43F4Dee607b0eF1fA1c);
ITokenHolderLike constant public tokenHolder = ITokenHolderLike(0x55Eb3DD3f738cfdda986B8Eff3fa784477552C61);
ITokenHolderLike constant public tokenHolder = ITokenHolderLike(0x55Eb3DD3f738cfdda986B8Eff3fa784477552C61);
modifier usesGasToken(address holder) {
modifier usesGasToken(address holder) {
if (holder == address(0)) {
if (holder == address(0)) {
holder = address(tokenHolder);
holder = address(tokenHolder);
}
}
if (gasToken.balanceOf(holder) != 0) {
if (gasToken.balanceOf(holder) != 0) {
uint256 gasCalcValue = gasleft();
uint256 gasCalcValue = gasleft();
_;
_;
gasCalcValue = (_gasUsed(gasCalcValue) + 14154) / 41947;
gasCalcValue = (_gasUsed(gasCalcValue) + 14154) / 41947;
if (holder == address(tokenHolder)) {
if (holder == address(tokenHolder)) {
tokenHolder.freeUpTo(
tokenHolder.freeUpTo(
gasCalcValue
gasCalcValue
);
);
} else {
} else {
tokenHolder.freeFromUpTo(
tokenHolder.freeFromUpTo(
holder,
holder,
gasCalcValue
gasCalcValue
);
);
}
}
} else {
} else {
_;
_;
}
}
}
}
function _gasUsed(
function _gasUsed(
uint256 startingGas)
uint256 startingGas)
internal
internal
view
view
returns (uint256)
returns (uint256)
{
{
return 21000 +
return 21000 +
startingGas -
startingGas -
gasleft() +
gasleft() +
16 *
16 *
msg.data.length;
msg.data.length;
}
}
}
}
contract Pausable {
contract Pausable {
// keccak256("Pausable_FunctionPause")
// keccak256("Pausable_FunctionPause")
bytes32 internal constant Pausable_FunctionPause = 0xa7143c84d793a15503da6f19bf9119a2dac94448ca45d77c8bf08f57b2e91047;
bytes32 internal constant Pausable_FunctionPause = 0xa7143c84d793a15503da6f19bf9119a2dac94448ca45d77c8bf08f57b2e91047;
modifier pausable(bytes4 sig) {
modifier pausable(bytes4 sig) {
require(!_isPaused(sig), "unauthorized");
require(!_isPaused(sig), "unauthorized");
_;
_;
}
}
function _isPaused(
function _isPaused(
bytes4 sig)
bytes4 sig)
internal
internal
view
view
returns (bool isPaused)
returns (bool isPaused)
{
{
bytes32 slot = keccak256(abi.encodePacked(sig, Pausable_FunctionPause));
bytes32 slot = keccak256(abi.encodePacked(sig, Pausable_FunctionPause));
assembly {
assembly {
isPaused := sload(slot)
isPaused := sload(slot)
}
}
}
}
}
}
contract LoanTokenBase is ReentrancyGuard, Ownable, Pausable {
contract LoanTokenBase is ReentrancyGuard, Ownable, Pausable {
uint256 internal constant WEI_PRECISION = 10**18;
uint256 internal constant WEI_PRECISION = 10**18;
uint256 internal constant WEI_PERCENT_PRECISION = 10**20;
uint256 internal constant WEI_PERCENT_PRECISION = 10**20;
int256 internal constant sWEI_PRECISION = 10**18;
int256 internal constant sWEI_PRECISION = 10**18;
string public name;
string public name;
string public symbol;
string public symbol;
uint8 public decimals;
uint8 public decimals;
// uint88 for tight packing -> 8 + 88 + 160 = 256
// uint88 for tight packing -> 8 + 88 + 160 = 256
uint88 internal lastSettleTime_;
uint88 internal lastSettleTime_;
address public loanTokenAddress;
address public loanTokenAddress;
uint256 public baseRate;
uint256 public baseRate;
uint256 public rateMultiplier;
uint256 public rateMultiplier;
uint256 public lowUtilBaseRate;
uint256 public lowUtilBaseRate;
uint256 public lowUtilRateMultiplier;
uint256 public lowUtilRateMultiplier;
uint256 public targetLevel;
uint256 public targetLevel;
uint256 public kinkLevel;
uint256 public kinkLevel;
uint256 public maxScaleRate;
uint256 public maxScaleRate;
uint256 internal _flTotalAssetSupply;
uint256 internal _flTotalAssetSupply;
uint256 public checkpointSupply;
uint256 public checkpointSupply;
uint256 public initialPrice;
uint256 public initialPrice;
mapping (uint256 => bytes32) public loanParamsIds; // mapping of keccak256(collateralToken, isTorqueLoan) to loanParamsId
mapping (uint256 => bytes32) public loanParamsIds; // mapping of keccak256(collateralToken, isTorqueLoan) to loanParamsId
mapping (address => uint256) internal checkpointPrices_; // price of token at last user checkpoint
mapping (address => uint256) internal checkpointPrices_; // price of token at last user checkpoint
}
}
contract AdvancedTokenStorage is LoanTokenBase {
contract AdvancedTokenStorage is LoanTokenBase {
using SafeMath for uint256;
using SafeMath for uint256;
event Transfer(
event Transfer(
address indexed from,
address indexed from,
address indexed to,
address indexed to,
uint256 value
uint256 value
);
);
event Approval(
event Approval(
address indexed owner,
address indexed owner,
address indexed spender,
address indexed spender,
uint256 value
uint256 value
);
);
event Mint(
event Mint(
address indexed minter,
address indexed minter,
uint256 tokenAmount,
uint256 tokenAmount,
uint256 assetAmount,
uint256 assetAmount,
uint256 price
uint256 price
);
);
event Burn(
event Burn(
address indexed burner,
address indexed burner,
uint256 tokenAmount,
uint256 tokenAmount,
uint256 assetAmount,
uint256 assetAmount,
uint256 price
uint256 price
);
);
mapping(address => uint256) internal balances;
mapping(address => uint256) internal balances;
mapping (address => mapping (address => uint256)) internal allowed;
mapping (address => mapping (address => uint256)) internal allowed;
uint256 internal totalSupply_;
uint256 internal totalSupply_;
function totalSupply()
function totalSupply()
public
public
view
view
returns (uint256)
returns (uint256)
{
{
return totalSupply_;
return totalSupply_;
}
}
function balanceOf(
function balanceOf(
address _owner)
address _owner)
public
public
view
view
returns (uint256)
returns (uint256)
{
{
return balances[_owner];
return balances[_owner];
}
}
function allowance(
function allowance(
address _owner,
address _owner,
address _spender)
address _spender)
public
public
view
view
returns (uint256)
returns (uint256)
{
{
return allowed[_owner][_spender];
return allowed[_owner][_spender];
}
}
}
}
contract AdvancedToken is AdvancedTokenStorage {
contract AdvancedToken is AdvancedTokenStorage {
using SafeMath for uint256;
using SafeMath for uint256;
function approve(
function approve(
address _spender,
address _spender,
uint256 _value)
uint256 _value)
public
public
returns (bool)
returns (bool)
{
{
allowed[msg.sender][_spender] = _value;
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
emit Approval(msg.sender, _spender, _value);
return true;
return true;
}
}
function increaseApproval(
function increaseApproval(
address _spender,
address _spender,
uint256 _addedValue)
uint256 _addedValue)
public
public
returns (bool)
returns (bool)
{
{
uint256 _allowed = allowed[msg.sender][_spender]
uint256 _allowed = allowed[msg.sender][_spender]
.add(_addedValue);
.add(_addedValue);
allowed[msg.sender][_spender] = _allowed;
allowed[msg.sender][_spender] = _allowed;
emit Approval(msg.sender, _spender, _allowed);
emit Approval(msg.sender, _spender, _allowed);
return true;
return true;
}
}
function decreaseApproval(
function decreaseApproval(
address _spender,
address _spender,
uint256 _subtractedValue)
uint256 _subtractedValue)
public
public
returns (bool)
returns (bool)
{
{
uint2
uint2
Gespeicherte Diffs
Originaltext
Datei öffnen
/** *Submitted for verification at Etherscan.io on 2020-09-04 */ /** * Copyright 2017-2020, bZeroX, LLC <https://bzx.network/>. All Rights Reserved. * Licensed under the Apache License, Version 2.0. */ pragma solidity 0.5.17; pragma experimental ABIEncoderV2; interface IWeth { function deposit() external payable; function withdraw(uint256 wad) external; } contract IERC20 { string public name; uint8 public decimals; string public symbol; function totalSupply() public view returns (uint256); function balanceOf(address _who) public view returns (uint256); function allowance(address _owner, address _spender) public view returns (uint256); function approve(address _spender, uint256 _value) public returns (bool); function transfer(address _to, uint256 _value) public returns (bool); function transferFrom(address _from, address _to, uint256 _value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } contract IWethERC20 is IWeth, IERC20 {} /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b != 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Integer division of two numbers, rounding up and truncating the quotient */ function divCeil(uint256 a, uint256 b) internal pure returns (uint256) { return divCeil(a, b, "SafeMath: division by zero"); } /** * @dev Integer division of two numbers, rounding up and truncating the quotient */ function divCeil(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b != 0, errorMessage); if (a == 0) { return 0; } uint256 c = ((a - 1) / b) + 1; return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } function min256(uint256 _a, uint256 _b) internal pure returns (uint256) { return _a < _b ? _a : _b; } } /** * @title SignedSafeMath * @dev Signed math operations with safety checks that revert on error. */ library SignedSafeMath { int256 constant private _INT256_MIN = -2**255; /** * @dev Returns the multiplication of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } require(!(a == -1 && b == _INT256_MIN), "SignedSafeMath: multiplication overflow"); int256 c = a * b; require(c / a == b, "SignedSafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two signed integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(int256 a, int256 b) internal pure returns (int256) { require(b != 0, "SignedSafeMath: division by zero"); require(!(b == -1 && a == _INT256_MIN), "SignedSafeMath: division overflow"); int256 c = a / b; return c; } /** * @dev Returns the subtraction of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a), "SignedSafeMath: subtraction overflow"); return c; } /** * @dev Returns the addition of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a), "SignedSafeMath: addition overflow"); return c; } } /** * @title Helps contracts guard against reentrancy attacks. * @author Remco Bloemen <remco@2π.com>, Eenae <alexey@mixbytes.io> * @dev If you mark a function `nonReentrant`, you should also * mark it `external`. */ contract ReentrancyGuard { /// @dev Constant for unlocked guard state - non-zero to prevent extra gas costs. /// See: https://github.com/OpenZeppelin/openzeppelin-solidity/issues/1056 uint256 internal constant REENTRANCY_GUARD_FREE = 1; /// @dev Constant for locked guard state uint256 internal constant REENTRANCY_GUARD_LOCKED = 2; /** * @dev We use a single lock for the whole contract. */ uint256 internal reentrancyLock = REENTRANCY_GUARD_FREE; /** * @dev Prevents a contract from calling itself, directly or indirectly. * If you mark a function `nonReentrant`, you should also * mark it `external`. Calling one `nonReentrant` function from * another is not supported. Instead, you can implement a * `private` function doing the actual work, and an `external` * wrapper marked as `nonReentrant`. */ modifier nonReentrant() { require(reentrancyLock == REENTRANCY_GUARD_FREE, "nonReentrant"); reentrancyLock = REENTRANCY_GUARD_LOCKED; _; reentrancyLock = REENTRANCY_GUARD_FREE; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. * * _Available since v2.4.0._ */ function sendValue(address recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "unauthorized"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _owner; } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface ProtocolLike { function borrowOrTradeFromPool( bytes32 loanParamsId, bytes32 loanId, // if 0, start a new loan bool isTorqueLoan, uint256 initialMargin, address[4] calldata sentAddresses, // lender: must match loan if loanId provided // borrower: must match loan if loanId provided // receiver: receiver of funds (address(0) assumes borrower address) // manager: delegated manager of loan unless address(0) uint256[5] calldata sentValues, // newRate: new loan interest rate // newPrincipal: new loan size (borrowAmount + any borrowed interest) // torqueInterest: new amount of interest to escrow for Torque loan (determines initial loan length) // loanTokenReceived: total loanToken deposit (amount not sent to borrower in the case of Torque loans) // collateralTokenReceived: total collateralToken deposit bytes calldata loanDataBytes) external payable returns (uint256 newPrincipal, uint256 newCollateral); function getTotalPrincipal( address lender, address loanToken) external view returns (uint256); function withdrawAccruedInterest( address loanToken) external; function getLenderInterestData( address lender, address loanToken) external view returns ( uint256 interestPaid, uint256 interestPaidDate, uint256 interestOwedPerDay, uint256 interestUnPaid, uint256 interestFeePercent, uint256 principalTotal); function priceFeeds() external view returns (address); function getEstimatedMarginExposure( address loanToken, address collateralToken, uint256 loanTokenSent, uint256 collateralTokenSent, uint256 interestRate, uint256 newPrincipal) external view returns (uint256); function getRequiredCollateralByParams( bytes32 loanParamsId, address loanToken, address collateralToken, uint256 newPrincipal, bool isTorqueLoan) external view returns (uint256 collateralAmountRequired); function getBorrowAmountByParams( bytes32 loanParamsId, address loanToken, address collateralToken, uint256 collateralTokenAmount, bool isTorqueLoan) external view returns (uint256 borrowAmount); function isLoanPool( address loanPool) external view returns (bool); function lendingFeePercent() external view returns (uint256); } interface FeedsLike { function queryRate( address sourceTokenAddress, address destTokenAddress) external view returns (uint256 rate, uint256 precision); } contract ITokenHolderLike { function balanceOf(address _who) public view returns (uint256); function freeUpTo(uint256 value) public returns (uint256); function freeFromUpTo(address from, uint256 value) public returns (uint256); } contract GasTokenUser { ITokenHolderLike constant public gasToken = ITokenHolderLike(0x0000000000004946c0e9F43F4Dee607b0eF1fA1c); ITokenHolderLike constant public tokenHolder = ITokenHolderLike(0x55Eb3DD3f738cfdda986B8Eff3fa784477552C61); modifier usesGasToken(address holder) { if (holder == address(0)) { holder = address(tokenHolder); } if (gasToken.balanceOf(holder) != 0) { uint256 gasCalcValue = gasleft(); _; gasCalcValue = (_gasUsed(gasCalcValue) + 14154) / 41947; if (holder == address(tokenHolder)) { tokenHolder.freeUpTo( gasCalcValue ); } else { tokenHolder.freeFromUpTo( holder, gasCalcValue ); } } else { _; } } function _gasUsed( uint256 startingGas) internal view returns (uint256) { return 21000 + startingGas - gasleft() + 16 * msg.data.length; } } contract Pausable { // keccak256("Pausable_FunctionPause") bytes32 internal constant Pausable_FunctionPause = 0xa7143c84d793a15503da6f19bf9119a2dac94448ca45d77c8bf08f57b2e91047; modifier pausable(bytes4 sig) { require(!_isPaused(sig), "unauthorized"); _; } function _isPaused( bytes4 sig) internal view returns (bool isPaused) { bytes32 slot = keccak256(abi.encodePacked(sig, Pausable_FunctionPause)); assembly { isPaused := sload(slot) } } } contract LoanTokenBase is ReentrancyGuard, Ownable, Pausable { uint256 internal constant WEI_PRECISION = 10**18; uint256 internal constant WEI_PERCENT_PRECISION = 10**20; int256 internal constant sWEI_PRECISION = 10**18; string public name; string public symbol; uint8 public decimals; // uint88 for tight packing -> 8 + 88 + 160 = 256 uint88 internal lastSettleTime_; address public loanTokenAddress; uint256 public baseRate; uint256 public rateMultiplier; uint256 public lowUtilBaseRate; uint256 public lowUtilRateMultiplier; uint256 public targetLevel; uint256 public kinkLevel; uint256 public maxScaleRate; uint256 internal _flTotalAssetSupply; uint256 public checkpointSupply; uint256 public initialPrice; mapping (uint256 => bytes32) public loanParamsIds; // mapping of keccak256(collateralToken, isTorqueLoan) to loanParamsId mapping (address => uint256) internal checkpointPrices_; // price of token at last user checkpoint } contract AdvancedTokenStorage is LoanTokenBase { using SafeMath for uint256; event Transfer( address indexed from, address indexed to, uint256 value ); event Approval( address indexed owner, address indexed spender, uint256 value ); event Mint( address indexed minter, uint256 tokenAmount, uint256 assetAmount, uint256 price ); event Burn( address indexed burner, uint256 tokenAmount, uint256 assetAmount, uint256 price ); mapping(address => uint256) internal balances; mapping (address => mapping (address => uint256)) internal allowed; uint256 internal totalSupply_; function totalSupply() public view returns (uint256) { return totalSupply_; } function balanceOf( address _owner) public view returns (uint256) { return balances[_owner]; } function allowance( address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } } contract AdvancedToken is AdvancedTokenStorage { using SafeMath for uint256; function approve( address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } function increaseApproval( address _spender, uint256 _addedValue) public returns (bool) { uint256 _allowed = allowed[msg.sender][_spender] .add(_addedValue); allowed[msg.sender][_spender] = _allowed; emit Approval(msg.sender, _spender, _allowed); return true; } function decreaseApproval( address _spender, uint256 _subtractedValue) public returns (bool) { uint256 _allowed = allowed[msg.sender][_spender]; if (_subtractedValue >= _allowed) { _allowed = 0; } else { _allowed -= _subtractedValue; } allowed[msg.sender][_spender] = _allowed; emit Approval(msg.sender, _spender, _allowed); return true; } function _mint( address _to, uint256 _tokenAmount, uint256 _assetAmount, uint256 _price) internal returns (uint256) { require(_to != address(0), "15"); uint256 _balance = balances[_to] .add(_tokenAmount); balances[_to] = _balance; totalSupply_ = totalSupply_ .add(_tokenAmount); emit Mint(_to, _tokenAmount, _assetAmount, _price); emit Transfer(address(0), _to, _tokenAmount); return _balance; } function _burn( address _who, uint256 _tokenAmount, uint256 _assetAmount, uint256 _price) internal returns (uint256) { uint256 _balance = balances[_who].sub(_tokenAmount, "16"); // a rounding error may leave dust behind, so we clear this out if (_balance <= 10) { _tokenAmount = _tokenAmount.add(_balance); _balance = 0; } balances[_who] = _balance; totalSupply_ = totalSupply_.sub(_tokenAmount); emit Burn(_who, _tokenAmount, _assetAmount, _price); emit Transfer(_who, address(0), _tokenAmount); return _balance; } } contract LoanTokenLogicStandard is AdvancedToken, GasTokenUser { using SafeMath for uint256; using SignedSafeMath for int256; modifier settlesInterest() { _settleInterest(); _; } address internal target_; uint256 public constant VERSION = 6; address internal constant arbitraryCaller = 0x000F400e6818158D541C3EBE45FE3AA0d47372FF; address public constant bZxContract = 0xD8Ee69652E4e4838f2531732a46d1f7F584F0b7f; address public constant wethToken = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; bytes32 internal constant iToken_ProfitSoFar = 0x37aa2b7d583612f016e4a4de4292cb015139b3d7762663d06a53964912ea2fb6; // keccak256("iToken_ProfitSoFar") bytes32 internal constant iToken_LowerAdminAddress = 0x7ad06df6a0af6bd602d90db766e0d5f253b45187c3717a0f9026ea8b10ff0d4b; // keccak256("iToken_LowerAdminAddress") bytes32 internal constant iToken_LowerAdminContract = 0x34b31cff1dbd8374124bd4505521fc29cab0f9554a5386ba7d784a4e611c7e31; // keccak256("iToken_LowerAdminContract") constructor( address _newOwner) public { transferOwnership(_newOwner); } function() external { revert("fallback not allowed"); } /* Public functions */ function mint( address receiver, uint256 depositAmount) external nonReentrant returns (uint256) // mintAmount { return _mintToken( receiver, depositAmount ); } function burn( address receiver, uint256 burnAmount) external nonReentrant returns (uint256 loanAmountPaid) { loanAmountPaid = _burnToken( burnAmount ); if (loanAmountPaid != 0) { _safeTransfer(loanTokenAddress, receiver, loanAmountPaid, "5"); } } function flashBorrow( uint256 borrowAmount, address borrower, address target, string calldata signature, bytes calldata data) external payable nonReentrant pausable(msg.sig) settlesInterest returns (bytes memory) { require(borrowAmount != 0, "38"); // save before balances uint256 beforeEtherBalance = address(this).balance.sub(msg.value); uint256 beforeAssetsBalance = _underlyingBalance() .add(totalAssetBorrow()); // lock totalAssetSupply for duration of flash loan _flTotalAssetSupply = beforeAssetsBalance; // transfer assets to calling contract _safeTransfer(loanTokenAddress, borrower, borrowAmount, "39"); bytes memory callData; if (bytes(signature).length == 0) { callData = data; } else { callData = abi.encodePacked(bytes4(keccak256(bytes(signature))), data); } // arbitrary call (bool success, bytes memory returnData) = arbitraryCaller.call.value(msg.value)( abi.encodeWithSelector( 0xde064e0d, // sendCall(address,bytes) target, callData ) ); require(success, "call failed"); // unlock totalAssetSupply _flTotalAssetSupply = 0; // verifies return of flash loan require( address(this).balance >= beforeEtherBalance && _underlyingBalance() .add(totalAssetBorrow()) >= beforeAssetsBalance, "40" ); return returnData; } // ***** NOTE: Reentrancy is allowed here to allow flashloan use cases ***** function borrow( bytes32 loanId, // 0 if new loan uint256 withdrawAmount, uint256 initialLoanDuration, // duration in seconds uint256 collateralTokenSent, // if 0, loanId must be provided; any ETH sent must equal this value address collateralTokenAddress, // if address(0), this means ETH and ETH must be sent with the call or loanId must be provided address borrower, address receiver, bytes memory /*loanDataBytes*/) // arbitrary order data (for future use) public payable returns (uint256, uint256) // returns new principal and new collateral added to loan { return _borrow( loanId, withdrawAmount, initialLoanDuration, collateralTokenSent, collateralTokenAddress, borrower, receiver, "" ); } // ***** NOTE: Reentrancy is allowed here to allow flashloan use cases ***** function borrowWithGasToken( bytes32 loanId, // 0 if new loan uint256 withdrawAmount, uint256 initialLoanDuration, // duration in seconds uint256 collateralTokenSent, // if 0, loanId must be provided; any ETH sent must equal this value address collateralTokenAddress, // if address(0), this means ETH and ETH must be sent with the call or loanId must be provided address borrower, address receiver, address gasTokenUser, // specifies an address that has given spend approval for gas/chi token bytes memory /*loanDataBytes*/) // arbitrary order data (for future use) public payable usesGasToken(gasTokenUser) returns (uint256, uint256) // returns new principal and new collateral added to loan { return _borrow( loanId, withdrawAmount, initialLoanDuration, collateralTokenSent, collateralTokenAddress, borrower, receiver, "" ); } // Called to borrow and immediately get into a position // ***** NOTE: Reentrancy is allowed here to allow flashloan use cases ***** function marginTrade( bytes32 loanId, // 0 if new loan uint256 leverageAmount, uint256 loanTokenSent, uint256 collateralTokenSent, address collateralTokenAddress, address trader, bytes memory loanDataBytes) // arbitrary order data public payable returns (uint256, uint256) // returns new principal and new collateral added to trade { return _marginTrade( loanId, leverageAmount, loanTokenSent, collateralTokenSent, collateralTokenAddress, trader, loanDataBytes ); } // Called to borrow and immediately get into a position // ***** NOTE: Reentrancy is allowed here to allow flashloan use cases ***** function marginTradeWithGasToken( bytes32 loanId, // 0 if new loan uint256 leverageAmount, uint256 loanTokenSent, uint256 collateralTokenSent, address collateralTokenAddress, address trader, address gasTokenUser, // specifies an address that has given spend approval for gas/chi token bytes memory loanDataBytes) // arbitrary order data public payable usesGasToken(gasTokenUser) returns (uint256, uint256) // returns new principal and new collateral added to trade { return _marginTrade( loanId, leverageAmount, loanTokenSent, collateralTokenSent, collateralTokenAddress, trader, loanDataBytes ); } function transfer( address _to, uint256 _value) external returns (bool) { return _internalTransferFrom( msg.sender, _to, _value, uint256(-1) ); } function transferFrom( address _from, address _to, uint256 _value) external returns (bool) { return _internalTransferFrom( _from, _to, _value, allowed[_from][msg.sender] /*ProtocolLike(bZxContract).isLoanPool(msg.sender) ? uint256(-1) : allowed[_from][msg.sender]*/ ); } function _internalTransferFrom( address _from, address _to, uint256 _value, uint256 _allowanceAmount) internal returns (bool) { if (_allowanceAmount != uint256(-1)) { allowed[_from][msg.sender] = _allowanceAmount.sub(_value, "14"); } uint256 _balancesFrom = balances[_from]; uint256 _balancesTo = balances[_to]; require(_to != address(0), "15"); uint256 _balancesFromNew = _balancesFrom .sub(_value, "16"); balances[_from] = _balancesFromNew; uint256 _balancesToNew = _balancesTo .add(_value); balances[_to] = _balancesToNew; // handle checkpoint update uint256 _currentPrice = tokenPrice(); _updateCheckpoints( _from, _balancesFrom, _balancesFromNew, _currentPrice ); _updateCheckpoints( _to, _balancesTo, _balancesToNew, _currentPrice ); emit Transfer(_from, _to, _value); return true; } function _updateCheckpoints( address _user, uint256 _oldBalance, uint256 _newBalance, uint256 _currentPrice) internal { bytes32 slot = keccak256( abi.encodePacked(_user, iToken_ProfitSoFar) ); int256 _currentProfit; if (_newBalance == 0) { _currentPrice = 0; } else if (_oldBalance != 0) { _currentProfit = _profitOf( slot, _oldBalance, _currentPrice, checkpointPrices_[_user] ); } assembly { sstore(slot, _currentProfit) } checkpointPrices_[_user] = _currentPrice; } /* Public View functions */ function profitOf( address user) public view returns (int256) { bytes32 slot = keccak256( abi.encodePacked(user, iToken_ProfitSoFar) ); return _profitOf( slot, balances[user], tokenPrice(), checkpointPrices_[user] ); } function _profitOf( bytes32 slot, uint256 _balance, uint256 _currentPrice, uint256 _checkpointPrice) internal view returns (int256 profitSoFar) { if (_checkpointPrice == 0) { return 0; } assembly { profitSoFar := sload(slot) } profitSoFar = int256(_currentPrice) .sub(int256(_checkpointPrice)) .mul(int256(_balance)) .div(sWEI_PRECISION) .add(profitSoFar); } function tokenPrice() public view returns (uint256) // price { uint256 interestUnPaid; if (lastSettleTime_ != uint88(block.timestamp)) { (,interestUnPaid) = _getAllInterest(); } return _tokenPrice(_totalAssetSupply(interestUnPaid)); } function checkpointPrice( address _user) public view returns (uint256) // price { return checkpointPrices_[_user]; } function marketLiquidity() public view returns (uint256) { uint256 totalSupply = _totalAssetSupply(0); uint256 totalBorrow = totalAssetBorrow(); if (totalSupply > totalBorrow) { return totalSupply - totalBorrow; } } function avgBorrowInterestRate() public view returns (uint256) { return _avgBorrowInterestRate(totalAssetBorrow()); } // the minimum rate the next base protocol borrower will receive for variable-rate loans function borrowInterestRate() public view returns (uint256) { return _nextBorrowInterestRate(0); } function nextBorrowInterestRate( uint256 borrowAmount) public view returns (uint256) { return _nextBorrowInterestRate(borrowAmount); } // interest that lenders are currently receiving when supplying to the pool function supplyInterestRate() public view returns (uint256) { return totalSupplyInterestRate(_totalAssetSupply(0)); } function nextSupplyInterestRate( uint256 supplyAmount) public view returns (uint256) { return totalSupplyInterestRate(_totalAssetSupply(0).add(supplyAmount)); } function totalSupplyInterestRate( uint256 assetSupply) public view returns (uint256) { uint256 assetBorrow = totalAssetBorrow(); if (assetBorrow != 0) { return _supplyInterestRate( assetBorrow, assetSupply ); } } function totalAssetBorrow() public view returns (uint256) { return ProtocolLike(bZxContract).getTotalPrincipal( address(this), loanTokenAddress ); } function totalAssetSupply() public view returns (uint256) { uint256 interestUnPaid; if (lastSettleTime_ != uint88(block.timestamp)) { (,interestUnPaid) = _getAllInterest(); } return _totalAssetSupply(interestUnPaid); } function getMaxEscrowAmount( uint256 leverageAmount) public view returns (uint256) { uint256 initialMargin = SafeMath.div(WEI_PRECISION * WEI_PERCENT_PRECISION, leverageAmount); return marketLiquidity() .mul(initialMargin) .div(_adjustValue( WEI_PERCENT_PRECISION, // maximum possible interest (100%) 2419200, // 28 day duration for margin trades initialMargin)); } // returns the user's balance of underlying token function assetBalanceOf( address _owner) public view returns (uint256) { return balanceOf(_owner) .mul(tokenPrice()) .div(WEI_PRECISION); } function getEstimatedMarginDetails( uint256 leverageAmount, uint256 loanTokenSent, uint256 collateralTokenSent, address collateralTokenAddress) // address(0) means ETH public view returns (uint256 principal, uint256 collateral, uint256 interestRate) { if (collateralTokenAddress == address(0)) { collateralTokenAddress = wethToken; } uint256 totalDeposit = _totalDeposit( collateralTokenAddress, collateralTokenSent, loanTokenSent ); (principal, interestRate) = _getMarginBorrowAmountAndRate( leverageAmount, totalDeposit ); if (principal > _underlyingBalance()) { return (0, 0, 0); } loanTokenSent = loanTokenSent .add(principal); collateral = ProtocolLike(bZxContract).getEstimatedMarginExposure( loanTokenAddress, collateralTokenAddress, loanTokenSent, collateralTokenSent, interestRate, principal ); } function getDepositAmountForBorrow( uint256 borrowAmount, uint256 initialLoanDuration, // duration in seconds address collateralTokenAddress) // address(0) means ETH public view returns (uint256) // depositAmount { if (borrowAmount != 0) { (,,uint256 newBorrowAmount) = _getInterestRateAndBorrowAmount( borrowAmount, totalAssetSupply(), initialLoanDuration ); if (newBorrowAmount <= _underlyingBalance()) { return ProtocolLike(bZxContract).getRequiredCollateralByParams( loanParamsIds[uint256(keccak256(abi.encodePacked( collateralTokenAddress, true )))], loanTokenAddress, collateralTokenAddress != address(0) ? collateralTokenAddress : wethToken, newBorrowAmount, true // isTorqueLoan ).add(10); // some dust to compensate for rounding errors } } } function getBorrowAmountForDeposit( uint256 depositAmount, uint256 initialLoanDuration, // duration in seconds address collateralTokenAddress) // address(0) means ETH public view returns (uint256 borrowAmount) { if (depositAmount != 0) { borrowAmount = ProtocolLike(bZxContract).getBorrowAmountByParams( loanParamsIds[uint256(keccak256(abi.encodePacked( collateralTokenAddress, true )))], loanTokenAddress, collateralTokenAddress != address(0) ? collateralTokenAddress : wethToken, depositAmount, true // isTorqueLoan ); (,,borrowAmount) = _getInterestRateAndBorrowAmount( borrowAmount, totalAssetSupply(), initialLoanDuration ); if (borrowAmount > _underlyingBalance()) { borrowAmount = 0; } } } /* Internal functions */ function _mintToken( address receiver, uint256 depositAmount) internal settlesInterest returns (uint256 mintAmount) { require (depositAmount != 0, "17"); uint256 currentPrice = _tokenPrice(_totalAssetSupply(0)); mintAmount = depositAmount .mul(WEI_PRECISION) .div(currentPrice); if (msg.value == 0) { _safeTransferFrom(loanTokenAddress, msg.sender, address(this), depositAmount, "18"); } else { require(msg.value == depositAmount, "18"); IWeth(wethToken).deposit.value(depositAmount)(); } _updateCheckpoints( receiver, balances[receiver], _mint(receiver, mintAmount, depositAmount, currentPrice), // newBalance currentPrice ); } function _burnToken( uint256 burnAmount) internal settlesInterest returns (uint256 loanAmountPaid) { require(burnAmount != 0, "19"); if (burnAmount > balanceOf(msg.sender)) { require(burnAmount == uint256(-1), "32"); burnAmount = balanceOf(msg.sender); } uint256 currentPrice = _tokenPrice(_totalAssetSupply(0)); uint256 loanAmountOwed = burnAmount .mul(currentPrice) .div(WEI_PRECISION); uint256 loanAmountAvailableInContract = _underlyingBalance(); loanAmountPaid = loanAmountOwed; require(loanAmountPaid <= loanAmountAvailableInContract, "37"); _updateCheckpoints( msg.sender, balances[msg.sender], _burn(msg.sender, burnAmount, loanAmountPaid, currentPrice), // newBalance currentPrice ); } function _borrow( bytes32 loanId, // 0 if new loan uint256 withdrawAmount, uint256 initialLoanDuration, // duration in seconds uint256 collateralTokenSent, // if 0, loanId must be provided; any ETH sent must equal this value address collateralTokenAddress, // if address(0), this means ETH and ETH must be sent with the call or loanId must be provided address borrower, address receiver, bytes memory /*loanDataBytes*/) // arbitrary order data (for future use) internal pausable(msg.sig) settlesInterest returns (uint256, uint256) // returns new principal and new collateral added to loan { require(withdrawAmount != 0, "6"); require(msg.value == 0 || msg.value == collateralTokenSent, "7"); require(collateralTokenSent != 0 || loanId != 0, "8"); require(collateralTokenAddress != address(0) || msg.value != 0 || loanId != 0, "9"); // ensures authorized use of existing loan require(loanId == 0 || msg.sender == borrower, "13"); if (collateralTokenAddress == address(0)) { collateralTokenAddress = wethToken; } require(collateralTokenAddress != loanTokenAddress, "10"); address[4] memory sentAddresses; uint256[5] memory sentAmounts; sentAddresses[0] = address(this); // lender sentAddresses[1] = borrower; sentAddresses[2] = receiver; //sentAddresses[3] = address(0); // manager //sentAmounts[0] = 0; // interestRate (found later) //sentAmounts[1] = 0; // borrowAmount (found later) //sentAmounts[2] = 0; // interestInitialAmount (found later) //sentAmounts[3] = 0; // loanTokenSent sentAmounts[4] = collateralTokenSent; // interestRate, interestInitialAmount, borrowAmount (newBorrowAmount) (sentAmounts[0], sentAmounts[2], sentAmounts[1]) = _getInterestRateAndBorrowAmount( withdrawAmount, _totalAssetSupply(0), // interest is settled above initialLoanDuration ); return _borrowOrTrade( loanId, withdrawAmount, 0, // leverageAmount (calculated later) collateralTokenAddress, sentAddresses, sentAmounts, "" // loanDataBytes ); } function _marginTrade( bytes32 loanId, // 0 if new loan uint256 leverageAmount, uint256 loanTokenSent, uint256 collateralTokenSent, address collateralTokenAddress, address trader, bytes memory loanDataBytes) internal pausable(msg.sig) settlesInterest returns (uint256, uint256) // returns new principal and new collateral added to trade { // ensures authorized use of existing loan require(loanId == 0 || msg.sender == trader, "13"); if (collateralTokenAddress == address(0)) { collateralTokenAddress = wethToken; } require(collateralTokenAddress != loanTokenAddress, "11"); uint256 totalDeposit = _totalDeposit( collateralTokenAddress, collateralTokenSent, loanTokenSent ); require(totalDeposit != 0, "12"); address[4] memory sentAddresses; uint256[5] memory sentAmounts; sentAddresses[0] = address(this); // lender sentAddresses[1] = trader; sentAddresses[2] = trader; //sentAddresses[3] = address(0); // manager //sentAmounts[0] = 0; // interestRate (found later) //sentAmounts[1] = 0; // borrowAmount (found later) //sentAmounts[2] = 0; // interestInitialAmount (interest is calculated based on fixed-term loan) sentAmounts[3] = loanTokenSent; sentAmounts[4] = collateralTokenSent; (sentAmounts[1], sentAmounts[0]) = _getMarginBorrowAmountAndRate( // borrowAmount, interestRate leverageAmount, totalDeposit ); return _borrowOrTrade( loanId, 0, // withdrawAmount leverageAmount, collateralTokenAddress, sentAddresses, sentAmounts, loanDataBytes ); } function _settleInterest() internal { uint88 ts = uint88(block.timestamp); if (lastSettleTime_ != ts) { ProtocolLike(bZxContract).withdrawAccruedInterest( loanTokenAddress ); lastSettleTime_ = ts; } } function _totalDeposit( address collateralTokenAddress, uint256 collateralTokenSent, uint256 loanTokenSent) internal view returns (uint256 totalDeposit) { totalDeposit = loanTokenSent; if (collateralTokenSent != 0) { (uint256 sourceToDestRate, uint256 sourceToDestPrecision) = FeedsLike(ProtocolLike(bZxContract).priceFeeds()).queryRate( collateralTokenAddress, loanTokenAddress ); if (sourceToDestRate != 0) { totalDeposit = collateralTokenSent .mul(sourceToDestRate) .div(sourceToDestPrecision) .add(totalDeposit); } } } function _getInterestRateAndBorrowAmount( uint256 borrowAmount, uint256 assetSupply, uint256 initialLoanDuration) // duration in seconds internal view returns (uint256 interestRate, uint256 interestInitialAmount, uint256 newBorrowAmount) { interestRate = _nextBorrowInterestRate2( borrowAmount, assetSupply ); // newBorrowAmount = borrowAmount * 10^18 / (10^18 - (interestRate * initialLoanDuration * 10^18 / (31536000 * 10^20))) newBorrowAmount = borrowAmount .mul(WEI_PRECISION) .div( SafeMath.sub(WEI_PRECISION, interestRate .mul(initialLoanDuration) .mul(WEI_PRECISION) .div(31536000 * WEI_PERCENT_PRECISION) // 365 * 86400 * WEI_PERCENT_PRECISION ) ); interestInitialAmount = newBorrowAmount .sub(borrowAmount); } // returns newPrincipal function _borrowOrTrade( bytes32 loanId, uint256 withdrawAmount, uint256 leverageAmount, address collateralTokenAddress, address[4] memory sentAddresses, uint256[5] memory sentAmounts, bytes memory loanDataBytes) internal returns (uint256, uint256) { require (sentAmounts[1] <= _underlyingBalance() && // newPrincipal sentAddresses[1] != address(0), // borrower "24" ); if (sentAddresses[2] == address(0)) { sentAddresses[2] = sentAddresses[1]; // receiver = borrower } // handle transfers prior to adding newPrincipal to loanTokenSent uint256 msgValue = _verifyTransfers( collateralTokenAddress, sentAddresses, sentAmounts, withdrawAmount ); // adding the loan token portion from the lender to loanTokenSent sentAmounts[3] = sentAmounts[3] .add(sentAmounts[1]); // newPrincipal if (withdrawAmount != 0) { // withdrawAmount already sent to the borrower, so we aren't sending it to the protocol sentAmounts[3] = sentAmounts[3] .sub(withdrawAmount); } bool isTorqueLoan = withdrawAmount != 0 ? true : false; bytes32 loanParamsId = loanParamsIds[uint256(keccak256(abi.encodePacked( collateralTokenAddress, isTorqueLoan )))]; // converting to initialMargin if (leverageAmount != 0) { leverageAmount = SafeMath.div(WEI_PRECISION * WEI_PERCENT_PRECISION, leverageAmount); } (sentAmounts[1], sentAmounts[4]) = ProtocolLike(bZxContract).borrowOrTradeFromPool.value(msgValue)( // newPrincipal, newCollateral loanParamsId, loanId, isTorqueLoan, leverageAmount, // initialMargin sentAddresses, sentAmounts, loanDataBytes ); require (sentAmounts[1] != 0, "25"); return (sentAmounts[1], sentAmounts[4]); // newPrincipal, newCollateral } // sentAddresses[0]: lender // sentAddresses[1]: borrower // sentAddresses[2]: receiver // sentAddresses[3]: manager // sentAmounts[0]: interestRate // sentAmounts[1]: newPrincipal // sentAmounts[2]: interestInitialAmount // sentAmounts[3]: loanTokenSent // sentAmounts[4]: collateralTokenSent function _verifyTransfers( address collateralTokenAddress, address[4] memory sentAddresses, uint256[5] memory sentAmounts, uint256 withdrawalAmount) internal returns (uint256 msgValue) { address _wethToken = wethToken; address _loanTokenAddress = loanTokenAddress; address receiver = sentAddresses[2]; uint256 newPrincipal = sentAmounts[1]; uint256 loanTokenSent = sentAmounts[3]; uint256 collateralTokenSent = sentAmounts[4]; require(_loanTokenAddress != collateralTokenAddress, "26"); msgValue = msg.value; if (withdrawalAmount != 0) { // withdrawOnOpen == true _safeTransfer(_loanTokenAddress, receiver, withdrawalAmount, "27"); if (newPrincipal > withdrawalAmount) { _safeTransfer(_loanTokenAddress, bZxContract, newPrincipal - withdrawalAmount, "27"); } } else { _safeTransfer(_loanTokenAddress, bZxContract, newPrincipal, "27"); } if (collateralTokenSent != 0) { if (collateralTokenAddress == _wethToken && msgValue != 0 && msgValue >= collateralTokenSent) { IWeth(_wethToken).deposit.value(collateralTokenSent)(); _safeTransfer(collateralTokenAddress, bZxContract, collateralTokenSent, "28"); msgValue -= collateralTokenSent; } else { _safeTransferFrom(collateralTokenAddress, msg.sender, bZxContract, collateralTokenSent, "28"); } } if (loanTokenSent != 0) { _safeTransferFrom(_loanTokenAddress, msg.sender, bZxContract, loanTokenSent, "29"); } } function _safeTransfer( address token, address to, uint256 amount, string memory errorMsg) internal { _callOptionalReturn( token, abi.encodeWithSelector(IERC20(token).transfer.selector, to, amount), errorMsg ); } function _safeTransferFrom( address token, address from, address to, uint256 amount, string memory errorMsg) internal { _callOptionalReturn( token, abi.encodeWithSelector(IERC20(token).transferFrom.selector, from, to, amount), errorMsg ); } function _callOptionalReturn( address token, bytes memory data, string memory errorMsg) internal { (bool success, bytes memory returndata) = token.call(data); require(success, errorMsg); if (returndata.length != 0) { require(abi.decode(returndata, (bool)), errorMsg); } } function _underlyingBalance() internal view returns (uint256) { return IERC20(loanTokenAddress).balanceOf(address(this)); } /* Internal View functions */ function _tokenPrice( uint256 assetSupply) internal view returns (uint256) { uint256 totalTokenSupply = totalSupply_; return totalTokenSupply != 0 ? assetSupply .mul(WEI_PRECISION) .div(totalTokenSupply) : initialPrice; } function _avgBorrowInterestRate( uint256 assetBorrow) internal view returns (uint256) { if (assetBorrow != 0) { (uint256 interestOwedPerDay,) = _getAllInterest(); return interestOwedPerDay .mul(365 * WEI_PERCENT_PRECISION) .div(assetBorrow); } } // next supply interest adjustment function _supplyInterestRate( uint256 assetBorrow, uint256 assetSupply) internal view returns (uint256) { if (assetBorrow != 0 && assetSupply >= assetBorrow) { return _avgBorrowInterestRate(assetBorrow) .mul(_utilizationRate(assetBorrow, assetSupply)) .mul(SafeMath.sub(WEI_PERCENT_PRECISION, ProtocolLike(bZxContract).lendingFeePercent())) .div(WEI_PERCENT_PRECISION * WEI_PERCENT_PRECISION); } } function _nextBorrowInterestRate( uint256 borrowAmount) internal view returns (uint256) { uint256 interestUnPaid; if (borrowAmount != 0) { if (lastSettleTime_ != uint88(block.timestamp)) { (,interestUnPaid) = _getAllInterest(); } uint256 balance = _underlyingBalance() .add(interestUnPaid); if (borrowAmount > balance) { borrowAmount = balance; } } return _nextBorrowInterestRate2( borrowAmount, _totalAssetSupply(interestUnPaid) ); } function _nextBorrowInterestRate2( uint256 newBorrowAmount, uint256 assetSupply) internal view returns (uint256 nextRate) { uint256 utilRate = _utilizationRate( totalAssetBorrow().add(newBorrowAmount), assetSupply ); uint256 thisMinRate; uint256 thisMaxRate; uint256 thisBaseRate = baseRate; uint256 thisRateMultiplier = rateMultiplier; uint256 thisTargetLevel = targetLevel; uint256 thisKinkLevel = kinkLevel; uint256 thisMaxScaleRate = maxScaleRate; if (utilRate < thisTargetLevel) { // target targetLevel utilization when utilization is under targetLevel utilRate = thisTargetLevel; } if (utilRate > thisKinkLevel) { // scale rate proportionally up to 100% uint256 thisMaxRange = WEI_PERCENT_PRECISION - thisKinkLevel; // will not overflow utilRate -= thisKinkLevel; if (utilRate > thisMaxRange) utilRate = thisMaxRange; thisMaxRate = thisRateMultiplier .add(thisBaseRate) .mul(thisKinkLevel) .div(WEI_PERCENT_PRECISION); nextRate = utilRate .mul(SafeMath.sub(thisMaxScaleRate, thisMaxRate)) .div(thisMaxRange) .add(thisMaxRate); } else { nextRate = utilRate .mul(thisRateMultiplier) .div(WEI_PERCENT_PRECISION) .add(thisBaseRate); thisMinRate = thisBaseRate; thisMaxRate = thisRateMultiplier .add(thisBaseRate); if (nextRate < thisMinRate) nextRate = thisMinRate; else if (nextRate > thisMaxRate) nextRate = thisMaxRate; } } function _getAllInterest() internal view returns ( uint256 interestOwedPerDay, uint256 interestUnPaid) { // interestPaid, interestPaidDate, interestOwedPerDay, interestUnPaid, interestFeePercent, principalTotal uint256 interestFeePercent; (,,interestOwedPerDay,interestUnPaid,interestFeePercent,) = ProtocolLike(bZxContract).getLenderInterestData( address(this), loanTokenAddress ); interestUnPaid = interestUnPaid .mul(SafeMath.sub(WEI_PERCENT_PRECISION, interestFeePercent)) .div(WEI_PERCENT_PRECISION); } function _getMarginBorrowAmountAndRate( uint256 leverageAmount, uint256 depositAmount) internal view returns (uint256 borrowAmount, uint256 interestRate) { uint256 initialMargin = SafeMath.div(WEI_PRECISION * WEI_PERCENT_PRECISION, leverageAmount); interestRate = _nextBorrowInterestRate2( depositAmount .mul(WEI_PERCENT_PRECISION) .div(initialMargin), _totalAssetSupply(0) ); // assumes that loan, collateral, and interest token are the same borrowAmount = depositAmount .mul(WEI_PERCENT_PRECISION * WEI_PERCENT_PRECISION) .div(_adjustValue( interestRate, 2419200, // 28 day duration for margin trades initialMargin)) .div(initialMargin); } function _totalAssetSupply( uint256 interestUnPaid) internal view returns (uint256) // assetSupply { if (totalSupply_ != 0) { uint256 assetsBalance = _flTotalAssetSupply; // temporary locked totalAssetSupply during a flash loan transaction if (assetsBalance == 0) { assetsBalance = _underlyingBalance() .add(totalAssetBorrow()); } return assetsBalance .add(interestUnPaid); } } function _adjustValue( uint256 interestRate, uint256 maxDuration, uint256 marginAmount) internal pure returns (uint256) { return maxDuration != 0 ? interestRate .mul(WEI_PERCENT_PRECISION) .mul(maxDuration) .div(31536000) // 86400 * 365 .div(marginAmount) .add(WEI_PERCENT_PRECISION) : WEI_PERCENT_PRECISION; } function _utilizationRate( uint256 assetBorrow, uint256 assetSupply) internal pure returns (uint256) { if (assetBorrow != 0 && assetSupply != 0) { // U = total_borrow / total_supply return assetBorrow .mul(WEI_PERCENT_PRECISION) .div(assetSupply); } } /* Owner-Only functions */ function updateSettings( address settingsTarget, bytes memory callData) public { if (msg.sender != owner()) { address _lowerAdmin; address _lowerAdminContract; assembly { _lowerAdmin := sload(iToken_LowerAdminAddress) _lowerAdminContract := sload(iToken_LowerAdminContract) } require(msg.sender == _lowerAdmin && settingsTarget == _lowerAdminContract); } address currentTarget = target_; target_ = settingsTarget; (bool result,) = address(this).call(callData); uint256 size; uint256 ptr; assembly { size := returndatasize ptr := mload(0x40) returndatacopy(ptr, 0, size) if eq(result, 0) { revert(ptr, size) } } target_ = currentTarget; assembly { return(ptr, size) } } } contract LoanTokenLogicWeth is LoanTokenLogicStandard { constructor( address _newOwner) public LoanTokenLogicStandard(_newOwner) {} function mintWithEther( address receiver) external payable nonReentrant returns (uint256 mintAmount) { return _mintToken( receiver, msg.value ); } function burnToEther( address receiver, uint256 burnAmount) external nonReentrant returns (uint256 loanAmountPaid) { loanAmountPaid = _burnToken( burnAmount ); if (loanAmountPaid != 0) { IWethERC20(wethToken).withdraw(loanAmountPaid); Address.sendValue( receiver, loanAmountPaid ); } } /* Internal functions */ // sentAddresses[0]: lender // sentAddresses[1]: borrower // sentAddresses[2]: receiver // sentAddresses[3]: manager // sentAmounts[0]: interestRate // sentAmounts[1]: newPrincipal // sentAmounts[2]: interestInitialAmount // sentAmounts[3]: loanTokenSent // sentAmounts[4]: collateralTokenSent function _verifyTransfers( address collateralTokenAddress, address[4] memory sentAddresses, uint256[5] memory sentAmounts, uint256 withdrawalAmount) internal returns (uint256 msgValue) { address _wethToken = wethToken; address _loanTokenAddress = _wethToken; address receiver = sentAddresses[2]; uint256 newPrincipal = sentAmounts[1]; uint256 loanTokenSent = sentAmounts[3]; uint256 collateralTokenSent = sentAmounts[4]; require(_loanTokenAddress != collateralTokenAddress, "26"); msgValue = msg.value; if (withdrawalAmount != 0) { // withdrawOnOpen == true IWethERC20(_wethToken).withdraw(withdrawalAmount); Address.sendValue( receiver, withdrawalAmount ); if (newPrincipal > withdrawalAmount) { _safeTransfer(_loanTokenAddress, bZxContract, newPrincipal - withdrawalAmount, "27"); } } else { _safeTransfer(_loanTokenAddress, bZxContract, newPrincipal, "27"); } if (collateralTokenSent != 0) { _safeTransferFrom(collateralTokenAddress, msg.sender, bZxContract, collateralTokenSent, "28"); } if (loanTokenSent != 0) { if (msgValue != 0 && msgValue >= loanTokenSent) { IWeth(_wethToken).deposit.value(loanTokenSent)(); _safeTransfer(_loanTokenAddress, bZxContract, loanTokenSent, "29"); msgValue -= loanTokenSent; } else { _safeTransferFrom(_loanTokenAddress, msg.sender, bZxContract, loanTokenSent, "29"); } } } }
Bearbeitung
Datei öffnen
/** *Submitted for verification at Etherscan.io on 2020-09-13 */ /** * Copyright 2017-2020, bZeroX, LLC <https://bzx.network/>. All Rights Reserved. * Licensed under the Apache License, Version 2.0. */ pragma solidity 0.5.17; pragma experimental ABIEncoderV2; interface IWeth { function deposit() external payable; function withdraw(uint256 wad) external; } contract IERC20 { string public name; uint8 public decimals; string public symbol; function totalSupply() public view returns (uint256); function balanceOf(address _who) public view returns (uint256); function allowance(address _owner, address _spender) public view returns (uint256); function approve(address _spender, uint256 _value) public returns (bool); function transfer(address _to, uint256 _value) public returns (bool); function transferFrom(address _from, address _to, uint256 _value) public returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } contract IWethERC20 is IWeth, IERC20 {} /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. * * _Available since v2.4.0._ */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b != 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Integer division of two numbers, rounding up and truncating the quotient */ function divCeil(uint256 a, uint256 b) internal pure returns (uint256) { return divCeil(a, b, "SafeMath: division by zero"); } /** * @dev Integer division of two numbers, rounding up and truncating the quotient */ function divCeil(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b != 0, errorMessage); if (a == 0) { return 0; } uint256 c = ((a - 1) / b) + 1; return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } function min256(uint256 _a, uint256 _b) internal pure returns (uint256) { return _a < _b ? _a : _b; } } /** * @title SignedSafeMath * @dev Signed math operations with safety checks that revert on error. */ library SignedSafeMath { int256 constant private _INT256_MIN = -2**255; /** * @dev Returns the multiplication of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } require(!(a == -1 && b == _INT256_MIN), "SignedSafeMath: multiplication overflow"); int256 c = a * b; require(c / a == b, "SignedSafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two signed integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(int256 a, int256 b) internal pure returns (int256) { require(b != 0, "SignedSafeMath: division by zero"); require(!(b == -1 && a == _INT256_MIN), "SignedSafeMath: division overflow"); int256 c = a / b; return c; } /** * @dev Returns the subtraction of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a), "SignedSafeMath: subtraction overflow"); return c; } /** * @dev Returns the addition of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a), "SignedSafeMath: addition overflow"); return c; } } /** * @title Helps contracts guard against reentrancy attacks. * @author Remco Bloemen <remco@2π.com>, Eenae <alexey@mixbytes.io> * @dev If you mark a function `nonReentrant`, you should also * mark it `external`. */ contract ReentrancyGuard { /// @dev Constant for unlocked guard state - non-zero to prevent extra gas costs. /// See: https://github.com/OpenZeppelin/openzeppelin-solidity/issues/1056 uint256 internal constant REENTRANCY_GUARD_FREE = 1; /// @dev Constant for locked guard state uint256 internal constant REENTRANCY_GUARD_LOCKED = 2; /** * @dev We use a single lock for the whole contract. */ uint256 internal reentrancyLock = REENTRANCY_GUARD_FREE; /** * @dev Prevents a contract from calling itself, directly or indirectly. * If you mark a function `nonReentrant`, you should also * mark it `external`. Calling one `nonReentrant` function from * another is not supported. Instead, you can implement a * `private` function doing the actual work, and an `external` * wrapper marked as `nonReentrant`. */ modifier nonReentrant() { require(reentrancyLock == REENTRANCY_GUARD_FREE, "nonReentrant"); reentrancyLock = REENTRANCY_GUARD_LOCKED; _; reentrancyLock = REENTRANCY_GUARD_FREE; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @dev Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. * * _Available since v2.4.0._ */ function sendValue(address recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "unauthorized"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _owner; } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } interface ProtocolLike { function borrowOrTradeFromPool( bytes32 loanParamsId, bytes32 loanId, // if 0, start a new loan bool isTorqueLoan, uint256 initialMargin, address[4] calldata sentAddresses, // lender: must match loan if loanId provided // borrower: must match loan if loanId provided // receiver: receiver of funds (address(0) assumes borrower address) // manager: delegated manager of loan unless address(0) uint256[5] calldata sentValues, // newRate: new loan interest rate // newPrincipal: new loan size (borrowAmount + any borrowed interest) // torqueInterest: new amount of interest to escrow for Torque loan (determines initial loan length) // loanTokenReceived: total loanToken deposit (amount not sent to borrower in the case of Torque loans) // collateralTokenReceived: total collateralToken deposit bytes calldata loanDataBytes) external payable returns (uint256 newPrincipal, uint256 newCollateral); function getTotalPrincipal( address lender, address loanToken) external view returns (uint256); function withdrawAccruedInterest( address loanToken) external; function getLenderInterestData( address lender, address loanToken) external view returns ( uint256 interestPaid, uint256 interestPaidDate, uint256 interestOwedPerDay, uint256 interestUnPaid, uint256 interestFeePercent, uint256 principalTotal); function priceFeeds() external view returns (address); function getEstimatedMarginExposure( address loanToken, address collateralToken, uint256 loanTokenSent, uint256 collateralTokenSent, uint256 interestRate, uint256 newPrincipal) external view returns (uint256); function getRequiredCollateralByParams( bytes32 loanParamsId, address loanToken, address collateralToken, uint256 newPrincipal, bool isTorqueLoan) external view returns (uint256 collateralAmountRequired); function getBorrowAmountByParams( bytes32 loanParamsId, address loanToken, address collateralToken, uint256 collateralTokenAmount, bool isTorqueLoan) external view returns (uint256 borrowAmount); function isLoanPool( address loanPool) external view returns (bool); function lendingFeePercent() external view returns (uint256); } interface FeedsLike { function queryRate( address sourceTokenAddress, address destTokenAddress) external view returns (uint256 rate, uint256 precision); } contract ITokenHolderLike { function balanceOf(address _who) public view returns (uint256); function freeUpTo(uint256 value) public returns (uint256); function freeFromUpTo(address from, uint256 value) public returns (uint256); } contract GasTokenUser { ITokenHolderLike constant public gasToken = ITokenHolderLike(0x0000000000004946c0e9F43F4Dee607b0eF1fA1c); ITokenHolderLike constant public tokenHolder = ITokenHolderLike(0x55Eb3DD3f738cfdda986B8Eff3fa784477552C61); modifier usesGasToken(address holder) { if (holder == address(0)) { holder = address(tokenHolder); } if (gasToken.balanceOf(holder) != 0) { uint256 gasCalcValue = gasleft(); _; gasCalcValue = (_gasUsed(gasCalcValue) + 14154) / 41947; if (holder == address(tokenHolder)) { tokenHolder.freeUpTo( gasCalcValue ); } else { tokenHolder.freeFromUpTo( holder, gasCalcValue ); } } else { _; } } function _gasUsed( uint256 startingGas) internal view returns (uint256) { return 21000 + startingGas - gasleft() + 16 * msg.data.length; } } contract Pausable { // keccak256("Pausable_FunctionPause") bytes32 internal constant Pausable_FunctionPause = 0xa7143c84d793a15503da6f19bf9119a2dac94448ca45d77c8bf08f57b2e91047; modifier pausable(bytes4 sig) { require(!_isPaused(sig), "unauthorized"); _; } function _isPaused( bytes4 sig) internal view returns (bool isPaused) { bytes32 slot = keccak256(abi.encodePacked(sig, Pausable_FunctionPause)); assembly { isPaused := sload(slot) } } } contract LoanTokenBase is ReentrancyGuard, Ownable, Pausable { uint256 internal constant WEI_PRECISION = 10**18; uint256 internal constant WEI_PERCENT_PRECISION = 10**20; int256 internal constant sWEI_PRECISION = 10**18; string public name; string public symbol; uint8 public decimals; // uint88 for tight packing -> 8 + 88 + 160 = 256 uint88 internal lastSettleTime_; address public loanTokenAddress; uint256 public baseRate; uint256 public rateMultiplier; uint256 public lowUtilBaseRate; uint256 public lowUtilRateMultiplier; uint256 public targetLevel; uint256 public kinkLevel; uint256 public maxScaleRate; uint256 internal _flTotalAssetSupply; uint256 public checkpointSupply; uint256 public initialPrice; mapping (uint256 => bytes32) public loanParamsIds; // mapping of keccak256(collateralToken, isTorqueLoan) to loanParamsId mapping (address => uint256) internal checkpointPrices_; // price of token at last user checkpoint } contract AdvancedTokenStorage is LoanTokenBase { using SafeMath for uint256; event Transfer( address indexed from, address indexed to, uint256 value ); event Approval( address indexed owner, address indexed spender, uint256 value ); event Mint( address indexed minter, uint256 tokenAmount, uint256 assetAmount, uint256 price ); event Burn( address indexed burner, uint256 tokenAmount, uint256 assetAmount, uint256 price ); mapping(address => uint256) internal balances; mapping (address => mapping (address => uint256)) internal allowed; uint256 internal totalSupply_; function totalSupply() public view returns (uint256) { return totalSupply_; } function balanceOf( address _owner) public view returns (uint256) { return balances[_owner]; } function allowance( address _owner, address _spender) public view returns (uint256) { return allowed[_owner][_spender]; } } contract AdvancedToken is AdvancedTokenStorage { using SafeMath for uint256; function approve( address _spender, uint256 _value) public returns (bool) { allowed[msg.sender][_spender] = _value; emit Approval(msg.sender, _spender, _value); return true; } function increaseApproval( address _spender, uint256 _addedValue) public returns (bool) { uint256 _allowed = allowed[msg.sender][_spender] .add(_addedValue); allowed[msg.sender][_spender] = _allowed; emit Approval(msg.sender, _spender, _allowed); return true; } function decreaseApproval( address _spender, uint256 _subtractedValue) public returns (bool) { uint256 _allowed = allowed[msg.sender][_spender]; if (_subtractedValue >= _allowed) { _allowed = 0; } else { _allowed -= _subtractedValue; } allowed[msg.sender][_spender] = _allowed; emit Approval(msg.sender, _spender, _allowed); return true; } function _mint( address _to, uint256 _tokenAmount, uint256 _assetAmount, uint256 _price) internal returns (uint256) { require(_to != address(0), "15"); uint256 _balance = balances[_to] .add(_tokenAmount); balances[_to] = _balance; totalSupply_ = totalSupply_ .add(_tokenAmount); emit Mint(_to, _tokenAmount, _assetAmount, _price); emit Transfer(address(0), _to, _tokenAmount); return _balance; } function _burn( address _who, uint256 _tokenAmount, uint256 _assetAmount, uint256 _price) internal returns (uint256) { uint256 _balance = balances[_who].sub(_tokenAmount, "16"); // a rounding error may leave dust behind, so we clear this out if (_balance <= 10) { _tokenAmount = _tokenAmount.add(_balance); _balance = 0; } balances[_who] = _balance; totalSupply_ = totalSupply_.sub(_tokenAmount); emit Burn(_who, _tokenAmount, _assetAmount, _price); emit Transfer(_who, address(0), _tokenAmount); return _balance; } } contract LoanTokenLogicStandard is AdvancedToken, GasTokenUser { using SafeMath for uint256; using SignedSafeMath for int256; modifier settlesInterest() { _settleInterest(); _; } address internal target_; uint256 public constant VERSION = 6; address internal constant arbitraryCaller = 0x000F400e6818158D541C3EBE45FE3AA0d47372FF; address public constant bZxContract = 0xD8Ee69652E4e4838f2531732a46d1f7F584F0b7f; address public constant wethToken = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; bytes32 internal constant iToken_ProfitSoFar = 0x37aa2b7d583612f016e4a4de4292cb015139b3d7762663d06a53964912ea2fb6; // keccak256("iToken_ProfitSoFar") bytes32 internal constant iToken_LowerAdminAddress = 0x7ad06df6a0af6bd602d90db766e0d5f253b45187c3717a0f9026ea8b10ff0d4b; // keccak256("iToken_LowerAdminAddress") bytes32 internal constant iToken_LowerAdminContract = 0x34b31cff1dbd8374124bd4505521fc29cab0f9554a5386ba7d784a4e611c7e31; // keccak256("iToken_LowerAdminContract") constructor( address _newOwner) public { transferOwnership(_newOwner); } function() external { revert("fallback not allowed"); } /* Public functions */ function mint( address receiver, uint256 depositAmount) external nonReentrant returns (uint256) // mintAmount { return _mintToken( receiver, depositAmount ); } function burn( address receiver, uint256 burnAmount) external nonReentrant returns (uint256 loanAmountPaid) { loanAmountPaid = _burnToken( burnAmount ); if (loanAmountPaid != 0) { _safeTransfer(loanTokenAddress, receiver, loanAmountPaid, "5"); } } function flashBorrow( uint256 borrowAmount, address borrower, address target, string calldata signature, bytes calldata data) external payable nonReentrant pausable(msg.sig) settlesInterest returns (bytes memory) { require(borrowAmount != 0, "38"); // save before balances uint256 beforeEtherBalance = address(this).balance.sub(msg.value); uint256 beforeAssetsBalance = _underlyingBalance() .add(totalAssetBorrow()); // lock totalAssetSupply for duration of flash loan _flTotalAssetSupply = beforeAssetsBalance; // transfer assets to calling contract _safeTransfer(loanTokenAddress, borrower, borrowAmount, "39"); bytes memory callData; if (bytes(signature).length == 0) { callData = data; } else { callData = abi.encodePacked(bytes4(keccak256(bytes(signature))), data); } // arbitrary call (bool success, bytes memory returnData) = arbitraryCaller.call.value(msg.value)( abi.encodeWithSelector( 0xde064e0d, // sendCall(address,bytes) target, callData ) ); require(success, "call failed"); // unlock totalAssetSupply _flTotalAssetSupply = 0; // verifies return of flash loan require( address(this).balance >= beforeEtherBalance && _underlyingBalance() .add(totalAssetBorrow()) >= beforeAssetsBalance, "40" ); return returnData; } // ***** NOTE: Reentrancy is allowed here to allow flashloan use cases ***** function borrow( bytes32 loanId, // 0 if new loan uint256 withdrawAmount, uint256 initialLoanDuration, // duration in seconds uint256 collateralTokenSent, // if 0, loanId must be provided; any ETH sent must equal this value address collateralTokenAddress, // if address(0), this means ETH and ETH must be sent with the call or loanId must be provided address borrower, address receiver, bytes memory /*loanDataBytes*/) // arbitrary order data (for future use) public payable returns (uint256, uint256) // returns new principal and new collateral added to loan { return _borrow( loanId, withdrawAmount, initialLoanDuration, collateralTokenSent, collateralTokenAddress, borrower, receiver, "" ); } // ***** NOTE: Reentrancy is allowed here to allow flashloan use cases ***** function borrowWithGasToken( bytes32 loanId, // 0 if new loan uint256 withdrawAmount, uint256 initialLoanDuration, // duration in seconds uint256 collateralTokenSent, // if 0, loanId must be provided; any ETH sent must equal this value address collateralTokenAddress, // if address(0), this means ETH and ETH must be sent with the call or loanId must be provided address borrower, address receiver, address gasTokenUser, // specifies an address that has given spend approval for gas/chi token bytes memory /*loanDataBytes*/) // arbitrary order data (for future use) public payable usesGasToken(gasTokenUser) returns (uint256, uint256) // returns new principal and new collateral added to loan { return _borrow( loanId, withdrawAmount, initialLoanDuration, collateralTokenSent, collateralTokenAddress, borrower, receiver, "" ); } // Called to borrow and immediately get into a position // ***** NOTE: Reentrancy is allowed here to allow flashloan use cases ***** function marginTrade( bytes32 loanId, // 0 if new loan uint256 leverageAmount, uint256 loanTokenSent, uint256 collateralTokenSent, address collateralTokenAddress, address trader, bytes memory loanDataBytes) // arbitrary order data public payable returns (uint256, uint256) // returns new principal and new collateral added to trade { return _marginTrade( loanId, leverageAmount, loanTokenSent, collateralTokenSent, collateralTokenAddress, trader, loanDataBytes ); } // Called to borrow and immediately get into a position // ***** NOTE: Reentrancy is allowed here to allow flashloan use cases ***** function marginTradeWithGasToken( bytes32 loanId, // 0 if new loan uint256 leverageAmount, uint256 loanTokenSent, uint256 collateralTokenSent, address collateralTokenAddress, address trader, address gasTokenUser, // specifies an address that has given spend approval for gas/chi token bytes memory loanDataBytes) // arbitrary order data public payable usesGasToken(gasTokenUser) returns (uint256, uint256) // returns new principal and new collateral added to trade { return _marginTrade( loanId, leverageAmount, loanTokenSent, collateralTokenSent, collateralTokenAddress, trader, loanDataBytes ); } function transfer( address _to, uint256 _value) external returns (bool) { return _internalTransferFrom( msg.sender, _to, _value, uint256(-1) ); } function transferFrom( address _from, address _to, uint256 _value) external returns (bool) { return _internalTransferFrom( _from, _to, _value, allowed[_from][msg.sender] /*ProtocolLike(bZxContract).isLoanPool(msg.sender) ? uint256(-1) : allowed[_from][msg.sender]*/ ); } function _internalTransferFrom( address _from, address _to, uint256 _value, uint256 _allowanceAmount) internal returns (bool) { if (_allowanceAmount != uint256(-1)) { allowed[_from][msg.sender] = _allowanceAmount.sub(_value, "14"); } require(_to != address(0), "15"); uint256 _balancesFrom = balances[_from]; uint256 _balancesFromNew = _balancesFrom .sub(_value, "16"); balances[_from] = _balancesFromNew; uint256 _balancesTo = balances[_to]; uint256 _balancesToNew = _balancesTo .add(_value); balances[_to] = _balancesToNew; // handle checkpoint update uint256 _currentPrice = tokenPrice(); _updateCheckpoints( _from, _balancesFrom, _balancesFromNew, _currentPrice ); _updateCheckpoints( _to, _balancesTo, _balancesToNew, _currentPrice ); emit Transfer(_from, _to, _value); return true; } function _updateCheckpoints( address _user, uint256 _oldBalance, uint256 _newBalance, uint256 _currentPrice) internal { bytes32 slot = keccak256( abi.encodePacked(_user, iToken_ProfitSoFar) ); int256 _currentProfit; if (_newBalance == 0) { _currentPrice = 0; } else if (_oldBalance != 0) { _currentProfit = _profitOf( slot, _oldBalance, _currentPrice, checkpointPrices_[_user] ); } assembly { sstore(slot, _currentProfit) } checkpointPrices_[_user] = _currentPrice; } /* Public View functions */ function profitOf( address user) public view returns (int256) { bytes32 slot = keccak256( abi.encodePacked(user, iToken_ProfitSoFar) ); return _profitOf( slot, balances[user], tokenPrice(), checkpointPrices_[user] ); } function _profitOf( bytes32 slot, uint256 _balance, uint256 _currentPrice, uint256 _checkpointPrice) internal view returns (int256 profitSoFar) { if (_checkpointPrice == 0) { return 0; } assembly { profitSoFar := sload(slot) } profitSoFar = int256(_currentPrice) .sub(int256(_checkpointPrice)) .mul(int256(_balance)) .div(sWEI_PRECISION) .add(profitSoFar); } function tokenPrice() public view returns (uint256) // price { uint256 interestUnPaid; if (lastSettleTime_ != uint88(block.timestamp)) { (,interestUnPaid) = _getAllInterest(); } return _tokenPrice(_totalAssetSupply(interestUnPaid)); } function checkpointPrice( address _user) public view returns (uint256) // price { return checkpointPrices_[_user]; } function marketLiquidity() public view returns (uint256) { uint256 totalSupply = _totalAssetSupply(0); uint256 totalBorrow = totalAssetBorrow(); if (totalSupply > totalBorrow) { return totalSupply - totalBorrow; } } function avgBorrowInterestRate() public view returns (uint256) { return _avgBorrowInterestRate(totalAssetBorrow()); } // the minimum rate the next base protocol borrower will receive for variable-rate loans function borrowInterestRate() public view returns (uint256) { return _nextBorrowInterestRate(0); } function nextBorrowInterestRate( uint256 borrowAmount) public view returns (uint256) { return _nextBorrowInterestRate(borrowAmount); } // interest that lenders are currently receiving when supplying to the pool function supplyInterestRate() public view returns (uint256) { return totalSupplyInterestRate(_totalAssetSupply(0)); } function nextSupplyInterestRate( uint256 supplyAmount) public view returns (uint256) { return totalSupplyInterestRate(_totalAssetSupply(0).add(supplyAmount)); } function totalSupplyInterestRate( uint256 assetSupply) public view returns (uint256) { uint256 assetBorrow = totalAssetBorrow(); if (assetBorrow != 0) { return _supplyInterestRate( assetBorrow, assetSupply ); } } function totalAssetBorrow() public view returns (uint256) { return ProtocolLike(bZxContract).getTotalPrincipal( address(this), loanTokenAddress ); } function totalAssetSupply() public view returns (uint256) { uint256 interestUnPaid; if (lastSettleTime_ != uint88(block.timestamp)) { (,interestUnPaid) = _getAllInterest(); } return _totalAssetSupply(interestUnPaid); } function getMaxEscrowAmount( uint256 leverageAmount) public view returns (uint256) { uint256 initialMargin = SafeMath.div(WEI_PRECISION * WEI_PERCENT_PRECISION, leverageAmount); return marketLiquidity() .mul(initialMargin) .div(_adjustValue( WEI_PERCENT_PRECISION, // maximum possible interest (100%) 2419200, // 28 day duration for margin trades initialMargin)); } // returns the user's balance of underlying token function assetBalanceOf( address _owner) public view returns (uint256) { return balanceOf(_owner) .mul(tokenPrice()) .div(WEI_PRECISION); } function getEstimatedMarginDetails( uint256 leverageAmount, uint256 loanTokenSent, uint256 collateralTokenSent, address collateralTokenAddress) // address(0) means ETH public view returns (uint256 principal, uint256 collateral, uint256 interestRate) { if (collateralTokenAddress == address(0)) { collateralTokenAddress = wethToken; } uint256 totalDeposit = _totalDeposit( collateralTokenAddress, collateralTokenSent, loanTokenSent ); (principal, interestRate) = _getMarginBorrowAmountAndRate( leverageAmount, totalDeposit ); if (principal > _underlyingBalance()) { return (0, 0, 0); } loanTokenSent = loanTokenSent .add(principal); collateral = ProtocolLike(bZxContract).getEstimatedMarginExposure( loanTokenAddress, collateralTokenAddress, loanTokenSent, collateralTokenSent, interestRate, principal ); } function getDepositAmountForBorrow( uint256 borrowAmount, uint256 initialLoanDuration, // duration in seconds address collateralTokenAddress) // address(0) means ETH public view returns (uint256) // depositAmount { if (borrowAmount != 0) { (,,uint256 newBorrowAmount) = _getInterestRateAndBorrowAmount( borrowAmount, totalAssetSupply(), initialLoanDuration ); if (newBorrowAmount <= _underlyingBalance()) { return ProtocolLike(bZxContract).getRequiredCollateralByParams( loanParamsIds[uint256(keccak256(abi.encodePacked( collateralTokenAddress, true )))], loanTokenAddress, collateralTokenAddress != address(0) ? collateralTokenAddress : wethToken, newBorrowAmount, true // isTorqueLoan ).add(10); // some dust to compensate for rounding errors } } } function getBorrowAmountForDeposit( uint256 depositAmount, uint256 initialLoanDuration, // duration in seconds address collateralTokenAddress) // address(0) means ETH public view returns (uint256 borrowAmount) { if (depositAmount != 0) { borrowAmount = ProtocolLike(bZxContract).getBorrowAmountByParams( loanParamsIds[uint256(keccak256(abi.encodePacked( collateralTokenAddress, true )))], loanTokenAddress, collateralTokenAddress != address(0) ? collateralTokenAddress : wethToken, depositAmount, true // isTorqueLoan ); (,,borrowAmount) = _getInterestRateAndBorrowAmount( borrowAmount, totalAssetSupply(), initialLoanDuration ); if (borrowAmount > _underlyingBalance()) { borrowAmount = 0; } } } /* Internal functions */ function _mintToken( address receiver, uint256 depositAmount) internal settlesInterest returns (uint256 mintAmount) { require (depositAmount != 0, "17"); uint256 currentPrice = _tokenPrice(_totalAssetSupply(0)); mintAmount = depositAmount .mul(WEI_PRECISION) .div(currentPrice); if (msg.value == 0) { _safeTransferFrom(loanTokenAddress, msg.sender, address(this), depositAmount, "18"); } else { require(msg.value == depositAmount, "18"); IWeth(wethToken).deposit.value(depositAmount)(); } _updateCheckpoints( receiver, balances[receiver], _mint(receiver, mintAmount, depositAmount, currentPrice), // newBalance currentPrice ); } function _burnToken( uint256 burnAmount) internal settlesInterest returns (uint256 loanAmountPaid) { require(burnAmount != 0, "19"); if (burnAmount > balanceOf(msg.sender)) { require(burnAmount == uint256(-1), "32"); burnAmount = balanceOf(msg.sender); } uint256 currentPrice = _tokenPrice(_totalAssetSupply(0)); uint256 loanAmountOwed = burnAmount .mul(currentPrice) .div(WEI_PRECISION); uint256 loanAmountAvailableInContract = _underlyingBalance(); loanAmountPaid = loanAmountOwed; require(loanAmountPaid <= loanAmountAvailableInContract, "37"); _updateCheckpoints( msg.sender, balances[msg.sender], _burn(msg.sender, burnAmount, loanAmountPaid, currentPrice), // newBalance currentPrice ); } function _borrow( bytes32 loanId, // 0 if new loan uint256 withdrawAmount, uint256 initialLoanDuration, // duration in seconds uint256 collateralTokenSent, // if 0, loanId must be provided; any ETH sent must equal this value address collateralTokenAddress, // if address(0), this means ETH and ETH must be sent with the call or loanId must be provided address borrower, address receiver, bytes memory /*loanDataBytes*/) // arbitrary order data (for future use) internal pausable(msg.sig) settlesInterest returns (uint256, uint256) // returns new principal and new collateral added to loan { require(withdrawAmount != 0, "6"); require(msg.value == 0 || msg.value == collateralTokenSent, "7"); require(collateralTokenSent != 0 || loanId != 0, "8"); require(collateralTokenAddress != address(0) || msg.value != 0 || loanId != 0, "9"); // ensures authorized use of existing loan require(loanId == 0 || msg.sender == borrower, "13"); if (collateralTokenAddress == address(0)) { collateralTokenAddress = wethToken; } require(collateralTokenAddress != loanTokenAddress, "10"); address[4] memory sentAddresses; uint256[5] memory sentAmounts; sentAddresses[0] = address(this); // lender sentAddresses[1] = borrower; sentAddresses[2] = receiver; //sentAddresses[3] = address(0); // manager //sentAmounts[0] = 0; // interestRate (found later) //sentAmounts[1] = 0; // borrowAmount (found later) //sentAmounts[2] = 0; // interestInitialAmount (found later) //sentAmounts[3] = 0; // loanTokenSent sentAmounts[4] = collateralTokenSent; // interestRate, interestInitialAmount, borrowAmount (newBorrowAmount) (sentAmounts[0], sentAmounts[2], sentAmounts[1]) = _getInterestRateAndBorrowAmount( withdrawAmount, _totalAssetSupply(0), // interest is settled above initialLoanDuration ); return _borrowOrTrade( loanId, withdrawAmount, 0, // leverageAmount (calculated later) collateralTokenAddress, sentAddresses, sentAmounts, "" // loanDataBytes ); } function _marginTrade( bytes32 loanId, // 0 if new loan uint256 leverageAmount, uint256 loanTokenSent, uint256 collateralTokenSent, address collateralTokenAddress, address trader, bytes memory loanDataBytes) internal pausable(msg.sig) settlesInterest returns (uint256, uint256) // returns new principal and new collateral added to trade { // ensures authorized use of existing loan require(loanId == 0 || msg.sender == trader, "13"); if (collateralTokenAddress == address(0)) { collateralTokenAddress = wethToken; } require(collateralTokenAddress != loanTokenAddress, "11"); uint256 totalDeposit = _totalDeposit( collateralTokenAddress, collateralTokenSent, loanTokenSent ); require(totalDeposit != 0, "12"); address[4] memory sentAddresses; uint256[5] memory sentAmounts; sentAddresses[0] = address(this); // lender sentAddresses[1] = trader; sentAddresses[2] = trader; //sentAddresses[3] = address(0); // manager //sentAmounts[0] = 0; // interestRate (found later) //sentAmounts[1] = 0; // borrowAmount (found later) //sentAmounts[2] = 0; // interestInitialAmount (interest is calculated based on fixed-term loan) sentAmounts[3] = loanTokenSent; sentAmounts[4] = collateralTokenSent; (sentAmounts[1], sentAmounts[0]) = _getMarginBorrowAmountAndRate( // borrowAmount, interestRate leverageAmount, totalDeposit ); return _borrowOrTrade( loanId, 0, // withdrawAmount leverageAmount, collateralTokenAddress, sentAddresses, sentAmounts, loanDataBytes ); } function _settleInterest() internal { uint88 ts = uint88(block.timestamp); if (lastSettleTime_ != ts) { ProtocolLike(bZxContract).withdrawAccruedInterest( loanTokenAddress ); lastSettleTime_ = ts; } } function _totalDeposit( address collateralTokenAddress, uint256 collateralTokenSent, uint256 loanTokenSent) internal view returns (uint256 totalDeposit) { totalDeposit = loanTokenSent; if (collateralTokenSent != 0) { (uint256 sourceToDestRate, uint256 sourceToDestPrecision) = FeedsLike(ProtocolLike(bZxContract).priceFeeds()).queryRate( collateralTokenAddress, loanTokenAddress ); if (sourceToDestRate != 0) { totalDeposit = collateralTokenSent .mul(sourceToDestRate) .div(sourceToDestPrecision) .add(totalDeposit); } } } function _getInterestRateAndBorrowAmount( uint256 borrowAmount, uint256 assetSupply, uint256 initialLoanDuration) // duration in seconds internal view returns (uint256 interestRate, uint256 interestInitialAmount, uint256 newBorrowAmount) { interestRate = _nextBorrowInterestRate2( borrowAmount, assetSupply ); // newBorrowAmount = borrowAmount * 10^18 / (10^18 - (interestRate * initialLoanDuration * 10^18 / (31536000 * 10^20))) newBorrowAmount = borrowAmount .mul(WEI_PRECISION) .div( SafeMath.sub(WEI_PRECISION, interestRate .mul(initialLoanDuration) .mul(WEI_PRECISION) .div(31536000 * WEI_PERCENT_PRECISION) // 365 * 86400 * WEI_PERCENT_PRECISION ) ); interestInitialAmount = newBorrowAmount .sub(borrowAmount); } // returns newPrincipal function _borrowOrTrade( bytes32 loanId, uint256 withdrawAmount, uint256 leverageAmount, address collateralTokenAddress, address[4] memory sentAddresses, uint256[5] memory sentAmounts, bytes memory loanDataBytes) internal returns (uint256, uint256) { require (sentAmounts[1] <= _underlyingBalance() && // newPrincipal sentAddresses[1] != address(0), // borrower "24" ); if (sentAddresses[2] == address(0)) { sentAddresses[2] = sentAddresses[1]; // receiver = borrower } // handle transfers prior to adding newPrincipal to loanTokenSent uint256 msgValue = _verifyTransfers( collateralTokenAddress, sentAddresses, sentAmounts, withdrawAmount ); // adding the loan token portion from the lender to loanTokenSent sentAmounts[3] = sentAmounts[3] .add(sentAmounts[1]); // newPrincipal if (withdrawAmount != 0) { // withdrawAmount already sent to the borrower, so we aren't sending it to the protocol sentAmounts[3] = sentAmounts[3] .sub(withdrawAmount); } bool isTorqueLoan = withdrawAmount != 0 ? true : false; bytes32 loanParamsId = loanParamsIds[uint256(keccak256(abi.encodePacked( collateralTokenAddress, isTorqueLoan )))]; // converting to initialMargin if (leverageAmount != 0) { leverageAmount = SafeMath.div(WEI_PRECISION * WEI_PERCENT_PRECISION, leverageAmount); } (sentAmounts[1], sentAmounts[4]) = ProtocolLike(bZxContract).borrowOrTradeFromPool.value(msgValue)( // newPrincipal, newCollateral loanParamsId, loanId, isTorqueLoan, leverageAmount, // initialMargin sentAddresses, sentAmounts, loanDataBytes ); require (sentAmounts[1] != 0, "25"); return (sentAmounts[1], sentAmounts[4]); // newPrincipal, newCollateral } // sentAddresses[0]: lender // sentAddresses[1]: borrower // sentAddresses[2]: receiver // sentAddresses[3]: manager // sentAmounts[0]: interestRate // sentAmounts[1]: newPrincipal // sentAmounts[2]: interestInitialAmount // sentAmounts[3]: loanTokenSent // sentAmounts[4]: collateralTokenSent function _verifyTransfers( address collateralTokenAddress, address[4] memory sentAddresses, uint256[5] memory sentAmounts, uint256 withdrawalAmount) internal returns (uint256 msgValue) { address _wethToken = wethToken; address _loanTokenAddress = loanTokenAddress; address receiver = sentAddresses[2]; uint256 newPrincipal = sentAmounts[1]; uint256 loanTokenSent = sentAmounts[3]; uint256 collateralTokenSent = sentAmounts[4]; require(_loanTokenAddress != collateralTokenAddress, "26"); msgValue = msg.value; if (withdrawalAmount != 0) { // withdrawOnOpen == true _safeTransfer(_loanTokenAddress, receiver, withdrawalAmount, "27"); if (newPrincipal > withdrawalAmount) { _safeTransfer(_loanTokenAddress, bZxContract, newPrincipal - withdrawalAmount, "27"); } } else { _safeTransfer(_loanTokenAddress, bZxContract, newPrincipal, "27"); } if (collateralTokenSent != 0) { if (collateralTokenAddress == _wethToken && msgValue != 0 && msgValue >= collateralTokenSent) { IWeth(_wethToken).deposit.value(collateralTokenSent)(); _safeTransfer(collateralTokenAddress, bZxContract, collateralTokenSent, "28"); msgValue -= collateralTokenSent; } else { _safeTransferFrom(collateralTokenAddress, msg.sender, bZxContract, collateralTokenSent, "28"); } } if (loanTokenSent != 0) { _safeTransferFrom(_loanTokenAddress, msg.sender, bZxContract, loanTokenSent, "29"); } } function _safeTransfer( address token, address to, uint256 amount, string memory errorMsg) internal { _callOptionalReturn( token, abi.encodeWithSelector(IERC20(token).transfer.selector, to, amount), errorMsg ); } function _safeTransferFrom( address token, address from, address to, uint256 amount, string memory errorMsg) internal { _callOptionalReturn( token, abi.encodeWithSelector(IERC20(token).transferFrom.selector, from, to, amount), errorMsg ); } function _callOptionalReturn( address token, bytes memory data, string memory errorMsg) internal { (bool success, bytes memory returndata) = token.call(data); require(success, errorMsg); if (returndata.length != 0) { require(abi.decode(returndata, (bool)), errorMsg); } } function _underlyingBalance() internal view returns (uint256) { return IERC20(loanTokenAddress).balanceOf(address(this)); } /* Internal View functions */ function _tokenPrice( uint256 assetSupply) internal view returns (uint256) { uint256 totalTokenSupply = totalSupply_; return totalTokenSupply != 0 ? assetSupply .mul(WEI_PRECISION) .div(totalTokenSupply) : initialPrice; } function _avgBorrowInterestRate( uint256 assetBorrow) internal view returns (uint256) { if (assetBorrow != 0) { (uint256 interestOwedPerDay,) = _getAllInterest(); return interestOwedPerDay .mul(365 * WEI_PERCENT_PRECISION) .div(assetBorrow); } } // next supply interest adjustment function _supplyInterestRate( uint256 assetBorrow, uint256 assetSupply) internal view returns (uint256) { if (assetBorrow != 0 && assetSupply >= assetBorrow) { return _avgBorrowInterestRate(assetBorrow) .mul(_utilizationRate(assetBorrow, assetSupply)) .mul(SafeMath.sub(WEI_PERCENT_PRECISION, ProtocolLike(bZxContract).lendingFeePercent())) .div(WEI_PERCENT_PRECISION * WEI_PERCENT_PRECISION); } } function _nextBorrowInterestRate( uint256 borrowAmount) internal view returns (uint256) { uint256 interestUnPaid; if (borrowAmount != 0) { if (lastSettleTime_ != uint88(block.timestamp)) { (,interestUnPaid) = _getAllInterest(); } uint256 balance = _underlyingBalance() .add(interestUnPaid); if (borrowAmount > balance) { borrowAmount = balance; } } return _nextBorrowInterestRate2( borrowAmount, _totalAssetSupply(interestUnPaid) ); } function _nextBorrowInterestRate2( uint256 newBorrowAmount, uint256 assetSupply) internal view returns (uint256 nextRate) { uint256 utilRate = _utilizationRate( totalAssetBorrow().add(newBorrowAmount), assetSupply ); uint256 thisMinRate; uint256 thisMaxRate; uint256 thisBaseRate = baseRate; uint256 thisRateMultiplier = rateMultiplier; uint256 thisTargetLevel = targetLevel; uint256 thisKinkLevel = kinkLevel; uint256 thisMaxScaleRate = maxScaleRate; if (utilRate < thisTargetLevel) { // target targetLevel utilization when utilization is under targetLevel utilRate = thisTargetLevel; } if (utilRate > thisKinkLevel) { // scale rate proportionally up to 100% uint256 thisMaxRange = WEI_PERCENT_PRECISION - thisKinkLevel; // will not overflow utilRate -= thisKinkLevel; if (utilRate > thisMaxRange) utilRate = thisMaxRange; thisMaxRate = thisRateMultiplier .add(thisBaseRate) .mul(thisKinkLevel) .div(WEI_PERCENT_PRECISION); nextRate = utilRate .mul(SafeMath.sub(thisMaxScaleRate, thisMaxRate)) .div(thisMaxRange) .add(thisMaxRate); } else { nextRate = utilRate .mul(thisRateMultiplier) .div(WEI_PERCENT_PRECISION) .add(thisBaseRate); thisMinRate = thisBaseRate; thisMaxRate = thisRateMultiplier .add(thisBaseRate); if (nextRate < thisMinRate) nextRate = thisMinRate; else if (nextRate > thisMaxRate) nextRate = thisMaxRate; } } function _getAllInterest() internal view returns ( uint256 interestOwedPerDay, uint256 interestUnPaid) { // interestPaid, interestPaidDate, interestOwedPerDay, interestUnPaid, interestFeePercent, principalTotal uint256 interestFeePercent; (,,interestOwedPerDay,interestUnPaid,interestFeePercent,) = ProtocolLike(bZxContract).getLenderInterestData( address(this), loanTokenAddress ); interestUnPaid = interestUnPaid .mul(SafeMath.sub(WEI_PERCENT_PRECISION, interestFeePercent)) .div(WEI_PERCENT_PRECISION); } function _getMarginBorrowAmountAndRate( uint256 leverageAmount, uint256 depositAmount) internal view returns (uint256 borrowAmount, uint256 interestRate) { uint256 initialMargin = SafeMath.div(WEI_PRECISION * WEI_PERCENT_PRECISION, leverageAmount); interestRate = _nextBorrowInterestRate2( depositAmount .mul(WEI_PERCENT_PRECISION) .div(initialMargin), _totalAssetSupply(0) ); // assumes that loan, collateral, and interest token are the same borrowAmount = depositAmount .mul(WEI_PERCENT_PRECISION * WEI_PERCENT_PRECISION) .div(_adjustValue( interestRate, 2419200, // 28 day duration for margin trades initialMargin)) .div(initialMargin); } function _totalAssetSupply( uint256 interestUnPaid) internal view returns (uint256) // assetSupply { if (totalSupply_ != 0) { uint256 assetsBalance = _flTotalAssetSupply; // temporary locked totalAssetSupply during a flash loan transaction if (assetsBalance == 0) { assetsBalance = _underlyingBalance() .add(totalAssetBorrow()); } return assetsBalance .add(interestUnPaid); } } function _adjustValue( uint256 interestRate, uint256 maxDuration, uint256 marginAmount) internal pure returns (uint256) { return maxDuration != 0 ? interestRate .mul(WEI_PERCENT_PRECISION) .mul(maxDuration) .div(31536000) // 86400 * 365 .div(marginAmount) .add(WEI_PERCENT_PRECISION) : WEI_PERCENT_PRECISION; } function _utilizationRate( uint256 assetBorrow, uint256 assetSupply) internal pure returns (uint256) { if (assetBorrow != 0 && assetSupply != 0) { // U = total_borrow / total_supply return assetBorrow .mul(WEI_PERCENT_PRECISION) .div(assetSupply); } } /* Owner-Only functions */ function updateSettings( address settingsTarget, bytes memory callData) public { if (msg.sender != owner()) { address _lowerAdmin; address _lowerAdminContract; assembly { _lowerAdmin := sload(iToken_LowerAdminAddress) _lowerAdminContract := sload(iToken_LowerAdminContract) } require(msg.sender == _lowerAdmin && settingsTarget == _lowerAdminContract); } address currentTarget = target_; target_ = settingsTarget; (bool result,) = address(this).call(callData); uint256 size; uint256 ptr; assembly { size := returndatasize ptr := mload(0x40) returndatacopy(ptr, 0, size) if eq(result, 0) { revert(ptr, size) } } target_ = currentTarget; assembly { return(ptr, size) } } } contract LoanTokenLogicWeth is LoanTokenLogicStandard { constructor( address _newOwner) public LoanTokenLogicStandard(_newOwner) {} function mintWithEther( address receiver) external payable nonReentrant returns (uint256 mintAmount) { return _mintToken( receiver, msg.value ); } function burnToEther( address receiver, uint256 burnAmount) external nonReentrant returns (uint256 loanAmountPaid) { loanAmountPaid = _burnToken( burnAmount ); if (loanAmountPaid != 0) { IWethERC20(wethToken).withdraw(loanAmountPaid); Address.sendValue( receiver, loanAmountPaid ); } } /* Internal functions */ // sentAddresses[0]: lender // sentAddresses[1]: borrower // sentAddresses[2]: receiver // sentAddresses[3]: manager // sentAmounts[0]: interestRate // sentAmounts[1]: newPrincipal // sentAmounts[2]: interestInitialAmount // sentAmounts[3]: loanTokenSent // sentAmounts[4]: collateralTokenSent function _verifyTransfers( address collateralTokenAddress, address[4] memory sentAddresses, uint256[5] memory sentAmounts, uint256 withdrawalAmount) internal returns (uint256 msgValue) { address _wethToken = wethToken; address _loanTokenAddress = _wethToken; address receiver = sentAddresses[2]; uint256 newPrincipal = sentAmounts[1]; uint256 loanTokenSent = sentAmounts[3]; uint256 collateralTokenSent = sentAmounts[4]; require(_loanTokenAddress != collateralTokenAddress, "26"); msgValue = msg.value; if (withdrawalAmount != 0) { // withdrawOnOpen == true IWethERC20(_wethToken).withdraw(withdrawalAmount); Address.sendValue( receiver, withdrawalAmount ); if (newPrincipal > withdrawalAmount) { _safeTransfer(_loanTokenAddress, bZxContract, newPrincipal - withdrawalAmount, "27"); } } else { _safeTransfer(_loanTokenAddress, bZxContract, newPrincipal, "27"); } if (collateralTokenSent != 0) { _safeTransferFrom(collateralTokenAddress, msg.sender, bZxContract, collateralTokenSent, "28"); } if (loanTokenSent != 0) { if (msgValue != 0 && msgValue >= loanTokenSent) { IWeth(_wethToken).deposit.value(loanTokenSent)(); _safeTransfer(_loanTokenAddress, bZxContract, loanTokenSent, "29"); msgValue -= loanTokenSent; } else { _safeTransferFrom(_loanTokenAddress, msg.sender, bZxContract, loanTokenSent, "29"); } } } }
Unterschied finden