More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 9,513 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Deposit Wei Into... | 310323019 | 55 days ago | IN | 0 ETH | 0.00000767 | ||||
Withdraw Wei Fro... | 310321838 | 55 days ago | IN | 0 ETH | 0.00000441 | ||||
Withdraw ETH Fro... | 310321710 | 55 days ago | IN | 0 ETH | 0.00000579 | ||||
Deposit Wei Into... | 310320442 | 55 days ago | IN | 0 ETH | 0.00000525 | ||||
Withdraw Wei Fro... | 310320163 | 55 days ago | IN | 0 ETH | 0.00000684 | ||||
Withdraw Wei Fro... | 310319478 | 55 days ago | IN | 0 ETH | 0.00000953 | ||||
Deposit Wei Into... | 310319462 | 55 days ago | IN | 0 ETH | 0.00000655 | ||||
Deposit Wei Into... | 310319441 | 55 days ago | IN | 0 ETH | 0.00000668 | ||||
Deposit ETH Into... | 310319340 | 55 days ago | IN | 118 ETH | 0.00000546 | ||||
Deposit Wei Into... | 310318836 | 55 days ago | IN | 0 ETH | 0.00000673 | ||||
Deposit Wei Into... | 310316989 | 55 days ago | IN | 0 ETH | 0.00000889 | ||||
Deposit Wei Into... | 310316678 | 55 days ago | IN | 0 ETH | 0.00000783 | ||||
Withdraw Wei Fro... | 310316213 | 55 days ago | IN | 0 ETH | 0.00000767 | ||||
Withdraw Wei Fro... | 310314465 | 55 days ago | IN | 0 ETH | 0.00000681 | ||||
Withdraw Wei Fro... | 310310500 | 55 days ago | IN | 0 ETH | 0.00001465 | ||||
Deposit Wei Into... | 310310441 | 55 days ago | IN | 0 ETH | 0.00000661 | ||||
Withdraw Wei Fro... | 310309775 | 55 days ago | IN | 0 ETH | 0.0000062 | ||||
Deposit Wei Into... | 310308932 | 55 days ago | IN | 0 ETH | 0.00000461 | ||||
Withdraw ETH Fro... | 310307852 | 55 days ago | IN | 0 ETH | 0.00000699 | ||||
Deposit Wei Into... | 310306862 | 55 days ago | IN | 0 ETH | 0.00000589 | ||||
Withdraw Wei Fro... | 310305327 | 55 days ago | IN | 0 ETH | 0.00000541 | ||||
Withdraw Wei Fro... | 310304626 | 55 days ago | IN | 0 ETH | 0.00000436 | ||||
Withdraw Wei Fro... | 310303575 | 55 days ago | IN | 0 ETH | 0.00000626 | ||||
Deposit Wei Into... | 310300245 | 55 days ago | IN | 0 ETH | 0.0000041 | ||||
Deposit ETH Into... | 310295825 | 55 days ago | IN | 1.1 ETH | 0.00000391 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
319861713 | 27 days ago | 0.0014268 ETH | ||||
319861713 | 27 days ago | 0.0014268 ETH | ||||
319768853 | 27 days ago | 0.01 ETH | ||||
319768853 | 27 days ago | 0.01 ETH | ||||
319768282 | 27 days ago | 0.02195215 ETH | ||||
319768282 | 27 days ago | 0.02195215 ETH | ||||
319766924 | 27 days ago | 0.05046226 ETH | ||||
319766423 | 27 days ago | 80.12156617 ETH | ||||
319766423 | 27 days ago | 80.12156617 ETH | ||||
319754753 | 27 days ago | 0.02516787 ETH | ||||
319754753 | 27 days ago | 0.02516787 ETH | ||||
319753445 | 27 days ago | 0.01185281 ETH | ||||
319747156 | 27 days ago | 0.0011 ETH | ||||
319747156 | 27 days ago | 0.0011 ETH | ||||
319745400 | 27 days ago | 0.0001 ETH | ||||
319745016 | 27 days ago | 0.001 ETH | ||||
319743066 | 27 days ago | 0.60390284 ETH | ||||
319743066 | 27 days ago | 0.60390284 ETH | ||||
319739608 | 27 days ago | 0.01518943 ETH | ||||
319739608 | 27 days ago | 0.01518943 ETH | ||||
319736033 | 27 days ago | 0.00969821 ETH | ||||
319736033 | 27 days ago | 0.00969821 ETH | ||||
319735849 | 27 days ago | 0.03877794 ETH | ||||
319735849 | 27 days ago | 0.03877794 ETH | ||||
319733834 | 27 days ago | 0.03880631 ETH |
Loading...
Loading
Contract Name:
DepositWithdrawalProxy
Compiler Version
v0.5.16+commit.9c3226ce
Optimization Enabled:
Yes with 10000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* Copyright 2022 Dolomite. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { Address } from "@openzeppelin/contracts/utils/Address.sol"; import { ReentrancyGuard } from "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { IDolomiteMargin } from "../../protocol/interfaces/IDolomiteMargin.sol"; import { Account } from "../../protocol/lib/Account.sol"; import { Actions } from "../../protocol/lib/Actions.sol"; import { Require } from "../../protocol/lib/Require.sol"; import { Types } from "../../protocol/lib/Types.sol"; import { AccountActionHelper } from "../helpers/AccountActionHelper.sol"; import { AccountBalanceHelper } from "../helpers/AccountBalanceHelper.sol"; import { OnlyDolomiteMargin } from "../helpers/OnlyDolomiteMargin.sol"; import { IDepositWithdrawalProxy } from "../interfaces/IDepositWithdrawalProxy.sol"; import { IWETH } from "../interfaces/IWETH.sol"; /** * @title DepositWithdrawalProxy * @author Dolomite * * @dev Contract for depositing or withdrawing to/from Dolomite easily. This lowers gas costs on Arbitrum by minimizing * callData */ contract DepositWithdrawalProxy is IDepositWithdrawalProxy, OnlyDolomiteMargin, ReentrancyGuard { using Address for address payable; // ============ Constants ============ bytes32 constant FILE = "DepositWithdrawalProxy"; // ============ Field Variables ============ IWETH WETH; uint256 ETH_MARKET_ID; bool g_initialized; // ============ Modifiers ============ modifier requireIsInitialized() { Require.that( g_initialized, FILE, "not initialized" ); _; } // ============ Constructor ============ constructor ( address _dolomiteMargin ) public OnlyDolomiteMargin(_dolomiteMargin) {} // ============ External Functions ============ function() external payable { Require.that( msg.sender == address(WETH), FILE, "invalid ETH sender" ); } function initializeETHMarket( address payable _weth ) external { Require.that( !g_initialized, FILE, "already initialized" ); g_initialized = true; WETH = IWETH(_weth); ETH_MARKET_ID = DOLOMITE_MARGIN.getMarketIdByTokenAddress(_weth); WETH.approve(address(DOLOMITE_MARGIN), uint(-1)); } function depositWei( uint256 _toAccountNumber, uint256 _marketId, uint256 _amountWei ) external nonReentrant { AccountActionHelper.deposit( DOLOMITE_MARGIN, /* _accountOwner = */ msg.sender, // solium-disable-line indentation /* _fromAccount = */ msg.sender, // solium-disable-line indentation _toAccountNumber, _marketId, Types.AssetAmount({ sign: true, denomination: Types.AssetDenomination.Wei, ref: Types.AssetReference.Delta, value: _amountWei == uint(-1) ? _getSenderBalance(_marketId) : _amountWei }) ); } function depositETH( uint256 _toAccountNumber ) external payable requireIsInitialized nonReentrant { _wrap(); AccountActionHelper.deposit( DOLOMITE_MARGIN, /* _accountOwner = */ msg.sender, // solium-disable-line indentation /* _fromAccount = */ address(this), // solium-disable-line indentation _toAccountNumber, ETH_MARKET_ID, Types.AssetAmount({ sign: true, denomination: Types.AssetDenomination.Wei, ref: Types.AssetReference.Delta, value: msg.value }) ); } function depositWeiIntoDefaultAccount( uint256 _marketId, uint256 _amountWei ) external nonReentrant { AccountActionHelper.deposit( DOLOMITE_MARGIN, /* _accountOwner = */ msg.sender, // solium-disable-line indentation /* _fromAccount = */ msg.sender, // solium-disable-line indentation /* _toAccountNumber = */ 0, // solium-disable-line indentation _marketId, Types.AssetAmount({ sign: true, denomination: Types.AssetDenomination.Wei, ref: Types.AssetReference.Delta, value: _amountWei == uint(-1) ? _getSenderBalance(_marketId) : _amountWei }) ); } function depositETHIntoDefaultAccount() external payable requireIsInitialized nonReentrant { _wrap(); AccountActionHelper.deposit( DOLOMITE_MARGIN, /* _accountOwner = */ msg.sender, // solium-disable-line indentation /* _fromAccount = */ address(this), // solium-disable-line indentation /* _toAccountNumber = */ 0, // solium-disable-line indentation ETH_MARKET_ID, Types.AssetAmount({ sign: true, denomination: Types.AssetDenomination.Wei, ref: Types.AssetReference.Delta, value: msg.value }) ); } function withdrawWei( uint256 _fromAccountNumber, uint256 _marketId, uint256 _amountWei, AccountBalanceHelper.BalanceCheckFlag _balanceCheckFlag ) external nonReentrant { AccountActionHelper.withdraw( DOLOMITE_MARGIN, /* _accountOwner = */ msg.sender, // solium-disable-line indentation _fromAccountNumber, /* _toAccount = */ msg.sender, // solium-disable-line indentation _marketId, Types.AssetAmount({ sign: false, denomination: Types.AssetDenomination.Wei, ref: _amountWei == uint(-1) ? Types.AssetReference.Target : Types.AssetReference.Delta, value: _amountWei == uint(-1) ? 0 : _amountWei }), _balanceCheckFlag ); } function withdrawETH( uint256 _fromAccountNumber, uint256 _amountWei, AccountBalanceHelper.BalanceCheckFlag _balanceCheckFlag ) external requireIsInitialized nonReentrant { AccountActionHelper.withdraw( DOLOMITE_MARGIN, /* _accountOwner = */ msg.sender, // solium-disable-line indentation _fromAccountNumber, /* _toAccount = */ address(this), // solium-disable-line indentation ETH_MARKET_ID, Types.AssetAmount({ sign: false, denomination: Types.AssetDenomination.Wei, ref: _amountWei == uint(-1) ? Types.AssetReference.Target : Types.AssetReference.Delta, value: _amountWei == uint(-1) ? 0 : _amountWei }), _balanceCheckFlag ); _unwrapAndSend(); } function withdrawWeiFromDefaultAccount( uint256 _marketId, uint256 _amountWei, AccountBalanceHelper.BalanceCheckFlag _balanceCheckFlag ) external nonReentrant { AccountActionHelper.withdraw( DOLOMITE_MARGIN, /* _accountOwner = */ msg.sender, // solium-disable-line indentation /* _fromAccountNumber = */ 0, // solium-disable-line indentation /* _toAccount = */ msg.sender, // solium-disable-line indentation _marketId, Types.AssetAmount({ sign: false, denomination: Types.AssetDenomination.Wei, ref: _amountWei == uint(-1) ? Types.AssetReference.Target : Types.AssetReference.Delta, value: _amountWei == uint(-1) ? 0 : _amountWei }), _balanceCheckFlag ); } function withdrawETHFromDefaultAccount( uint256 _amountWei, AccountBalanceHelper.BalanceCheckFlag _balanceCheckFlag ) external requireIsInitialized nonReentrant { AccountActionHelper.withdraw( DOLOMITE_MARGIN, /* _accountOwner = */ msg.sender, // solium-disable-line indentation /* _fromAccountNumber = */ 0, // solium-disable-line indentation /* _toAccount = */ address(this), // solium-disable-line indentation ETH_MARKET_ID, Types.AssetAmount({ sign: false, denomination: Types.AssetDenomination.Wei, ref: _amountWei == uint(-1) ? Types.AssetReference.Target : Types.AssetReference.Delta, value: _amountWei == uint(-1) ? 0 : _amountWei }), _balanceCheckFlag ); _unwrapAndSend(); } // ========================= Par Functions ========================= function depositPar( uint256 _toAccountNumber, uint256 _marketId, uint256 _amountPar ) external nonReentrant { AccountActionHelper.deposit( DOLOMITE_MARGIN, /* _accountOwner = */ msg.sender, // solium-disable-line indentation /* _fromAccount = */ msg.sender, // solium-disable-line indentation _toAccountNumber, _marketId, Types.AssetAmount({ sign: true, denomination: Types.AssetDenomination.Par, ref: Types.AssetReference.Delta, value: _amountPar }) ); } function depositParIntoDefaultAccount( uint256 _marketId, uint256 _amountPar ) external nonReentrant { AccountActionHelper.deposit( DOLOMITE_MARGIN, /* _accountOwner = */ msg.sender, // solium-disable-line indentation /* _fromAccount = */ msg.sender, // solium-disable-line indentation /* _toAccountNumber = */ 0, // solium-disable-line indentation _marketId, Types.AssetAmount({ sign: true, denomination: Types.AssetDenomination.Par, ref: Types.AssetReference.Delta, value: _amountPar }) ); } function withdrawPar( uint256 _fromAccountNumber, uint256 _marketId, uint256 _amountPar, AccountBalanceHelper.BalanceCheckFlag _balanceCheckFlag ) external nonReentrant { AccountActionHelper.withdraw( DOLOMITE_MARGIN, /* _accountOwner = */ msg.sender, // solium-disable-line indentation _fromAccountNumber, /* _toAccount = */ msg.sender, // solium-disable-line indentation _marketId, Types.AssetAmount({ sign: false, denomination: Types.AssetDenomination.Par, ref: _amountPar == uint(-1) ? Types.AssetReference.Target : Types.AssetReference.Delta, value: _amountPar == uint(-1) ? 0 : _amountPar }), _balanceCheckFlag ); } function withdrawParFromDefaultAccount( uint256 _marketId, uint256 _amountPar, AccountBalanceHelper.BalanceCheckFlag _balanceCheckFlag ) external nonReentrant { AccountActionHelper.withdraw( DOLOMITE_MARGIN, /* _accountOwner = */ msg.sender, // solium-disable-line indentation /* _fromAccountNumber = */ 0, // solium-disable-line indentation /* _toAccount = */ msg.sender, // solium-disable-line indentation _marketId, Types.AssetAmount({ sign: false, denomination: Types.AssetDenomination.Par, ref: _amountPar == uint(-1) ? Types.AssetReference.Target : Types.AssetReference.Delta, value: _amountPar == uint(-1) ? 0 : _amountPar }), _balanceCheckFlag ); } // ============ Internal Functions ============ function _wrap() internal { WETH.deposit.value(msg.value)(); } function _unwrapAndSend() internal { IWETH _WETH = WETH; uint amount = _WETH.balanceOf(address(this)); _WETH.withdraw(amount); msg.sender.sendValue(amount); } function _getSenderBalance(uint256 _marketId) internal view returns (uint) { return IERC20(DOLOMITE_MARGIN.getMarketTokenAddress(_marketId)).balanceOf(msg.sender); } }
/* Copyright 2019 dYdX Trading Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { Bits } from "./Bits.sol"; import { Interest } from "./Interest.sol"; import { Monetary } from "./Monetary.sol"; import { Require } from "./Require.sol"; /** * @title Cache * @author dYdX * * Library for caching information about markets */ library Cache { // ============ Constants ============ bytes32 internal constant FILE = "Cache"; // ============ Structs ============ struct MarketInfo { uint marketId; address token; bool isClosing; uint128 borrowPar; uint128 supplyPar; Interest.Index index; Monetary.Price price; } struct MarketCache { MarketInfo[] markets; uint256[] marketBitmaps; uint256 marketsLength; } // ============ Setter Functions ============ /** * Initialize an empty cache for some given number of total markets. */ function create( uint256 numMarkets ) internal pure returns (MarketCache memory) { return MarketCache({ markets: new MarketInfo[](0), marketBitmaps: Bits.createBitmaps(numMarkets), marketsLength: 0 }); } // ============ Getter Functions ============ function getNumMarkets( MarketCache memory cache ) internal pure returns (uint256) { return cache.markets.length; } function hasMarket( MarketCache memory cache, uint256 marketId ) internal pure returns (bool) { return Bits.hasBit(cache.marketBitmaps, marketId); } function get( MarketCache memory cache, uint256 marketId ) internal pure returns (MarketInfo memory) { Require.that( cache.markets.length > 0, FILE, "not initialized" ); return _getInternal( cache.markets, 0, cache.marketsLength, marketId ); } function set( MarketCache memory cache, uint256 marketId ) internal pure { // Devs should not be able to call this function once the `markets` array has been initialized (non-zero length) Require.that( cache.markets.length == 0, FILE, "already initialized" ); Bits.setBit(cache.marketBitmaps, marketId); cache.marketsLength += 1; } function getAtIndex( MarketCache memory cache, uint256 index ) internal pure returns (MarketInfo memory) { Require.that( index < cache.markets.length, FILE, "invalid index", index, cache.markets.length ); return cache.markets[index]; } // ============ Private Functions ============ function _getInternal( MarketInfo[] memory data, uint beginInclusive, uint endExclusive, uint marketId ) private pure returns (MarketInfo memory) { uint len = endExclusive - beginInclusive; // If length equals 0 OR length equals 1 but the item wasn't found, revert assert(!(len == 0 || (len == 1 && data[beginInclusive].marketId != marketId))); uint mid = beginInclusive + len / 2; uint midMarketId = data[mid].marketId; if (marketId < midMarketId) { return _getInternal( data, beginInclusive, mid, marketId ); } else if (marketId > midMarketId) { return _getInternal( data, mid + 1, endExclusive, marketId ); } else { return data[mid]; } } }
pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
pragma solidity ^0.5.0; /** * @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 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; } }
/* Copyright 2019 dYdX Trading Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol"; import { DolomiteMarginMath } from "./DolomiteMarginMath.sol"; /** * @title Types * @author dYdX * * Library for interacting with the basic structs used in DolomiteMargin */ library Types { using DolomiteMarginMath for uint256; // ============ Permission ============ struct OperatorArg { address operator; bool trusted; } // ============ AssetAmount ============ enum AssetDenomination { Wei, // the amount is denominated in wei Par // the amount is denominated in par } enum AssetReference { Delta, // the amount is given as a delta from the current value Target // the amount is given as an exact number to end up at } struct AssetAmount { bool sign; // true if positive AssetDenomination denomination; AssetReference ref; uint256 value; } // ============ Par (Principal Amount) ============ // Total borrow and supply values for a market struct TotalPar { uint128 borrow; uint128 supply; } // Individual principal amount for an account struct Par { bool sign; // true if positive uint128 value; } function zeroPar() internal pure returns (Par memory) { return Par({ sign: false, value: 0 }); } function sub( Par memory a, Par memory b ) internal pure returns (Par memory) { return add(a, negative(b)); } function add( Par memory a, Par memory b ) internal pure returns (Par memory) { Par memory result; if (a.sign == b.sign) { result.sign = a.sign; result.value = SafeMath.add(a.value, b.value).to128(); } else { if (a.value >= b.value) { result.sign = a.sign; result.value = SafeMath.sub(a.value, b.value).to128(); } else { result.sign = b.sign; result.value = SafeMath.sub(b.value, a.value).to128(); } } return result; } function equals( Par memory a, Par memory b ) internal pure returns (bool) { if (a.value == b.value) { if (a.value == 0) { return true; } return a.sign == b.sign; } return false; } function negative( Par memory a ) internal pure returns (Par memory) { return Par({ sign: !a.sign, value: a.value }); } function isNegative( Par memory a ) internal pure returns (bool) { return !a.sign && a.value > 0; } function isPositive( Par memory a ) internal pure returns (bool) { return a.sign && a.value > 0; } function isZero( Par memory a ) internal pure returns (bool) { return a.value == 0; } function isLessThanZero( Par memory a ) internal pure returns (bool) { return a.value > 0 && !a.sign; } function isGreaterThanOrEqualToZero( Par memory a ) internal pure returns (bool) { return isZero(a) || a.sign; } // ============ Wei (Token Amount) ============ // Individual token amount for an account struct Wei { bool sign; // true if positive uint256 value; } function zeroWei() internal pure returns (Wei memory) { return Wei({ sign: false, value: 0 }); } function sub( Wei memory a, Wei memory b ) internal pure returns (Wei memory) { return add(a, negative(b)); } function add( Wei memory a, Wei memory b ) internal pure returns (Wei memory) { Wei memory result; if (a.sign == b.sign) { result.sign = a.sign; result.value = SafeMath.add(a.value, b.value); } else { if (a.value >= b.value) { result.sign = a.sign; result.value = SafeMath.sub(a.value, b.value); } else { result.sign = b.sign; result.value = SafeMath.sub(b.value, a.value); } } return result; } function equals( Wei memory a, Wei memory b ) internal pure returns (bool) { if (a.value == b.value) { if (a.value == 0) { return true; } return a.sign == b.sign; } return false; } function negative( Wei memory a ) internal pure returns (Wei memory) { return Wei({ sign: !a.sign, value: a.value }); } function isNegative( Wei memory a ) internal pure returns (bool) { return !a.sign && a.value > 0; } function isPositive( Wei memory a ) internal pure returns (bool) { return a.sign && a.value > 0; } function isZero( Wei memory a ) internal pure returns (bool) { return a.value == 0; } }
/* Copyright 2019 dYdX Trading Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { IERC20Detailed } from "../interfaces/IERC20Detailed.sol"; /** * @title Token * @author dYdX * * This library contains basic functions for interacting with ERC20 tokens. Modified to work with * tokens that don't adhere strictly to the ERC20 standard (for example tokens that don't return a * boolean value on success). */ library Token { // ============ Library Functions ============ function transfer( address token, address to, uint256 amount ) internal { if (amount == 0 || to == address(this)) { return; } _callOptionalReturn( token, abi.encodeWithSelector(IERC20Detailed(token).transfer.selector, to, amount), "Token: transfer failed" ); } function transferFrom( address token, address from, address to, uint256 amount ) internal { if (amount == 0 || to == from) { return; } // solium-disable arg-overflow _callOptionalReturn( token, abi.encodeWithSelector(IERC20Detailed(token).transferFrom.selector, from, to, amount), "Token: transferFrom failed" ); // solium-enable arg-overflow } // ============ Private Functions ============ function _callOptionalReturn(address token, bytes memory data, string memory error) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. // A Solidity high level call has three parts: // 1. The target address is checked to contain contract code. Not needed since tokens are manually added // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solium-disable-next-line security/no-low-level-calls (bool success, bytes memory returnData) = token.call(data); require(success, error); if (returnData.length > 0) { // Return data is optional require(abi.decode(returnData, (bool)), error); } } }
/* Copyright 2019 dYdX Trading Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { DolomiteMarginMath } from "./DolomiteMarginMath.sol"; /** * @title Time * @author dYdX * * Library for dealing with time, assuming timestamps fit within 32 bits (valid until year 2106) */ library Time { // ============ Library Functions ============ function currentTime() internal view returns (uint32) { return DolomiteMarginMath.to32(block.timestamp); } }
/* Copyright 2019 dYdX Trading Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol"; import { Account } from "./Account.sol"; import { Bits } from "./Bits.sol"; import { Cache } from "./Cache.sol"; import { Decimal } from "./Decimal.sol"; import { Interest } from "./Interest.sol"; import { EnumerableSet } from "./EnumerableSet.sol"; import { DolomiteMarginMath } from "./DolomiteMarginMath.sol"; import { Monetary } from "./Monetary.sol"; import { Require } from "./Require.sol"; import { Time } from "./Time.sol"; import { Token } from "./Token.sol"; import { Types } from "./Types.sol"; import { IERC20Detailed } from "../interfaces/IERC20Detailed.sol"; import { IInterestSetter } from "../interfaces/IInterestSetter.sol"; import { IPriceOracle } from "../interfaces/IPriceOracle.sol"; /** * @title Storage * @author dYdX * * Functions for reading, writing, and verifying state in DolomiteMargin */ library Storage { using Cache for Cache.MarketCache; using Storage for Storage.State; using DolomiteMarginMath for uint256; using Types for Types.Par; using Types for Types.Wei; using SafeMath for uint256; using EnumerableSet for EnumerableSet.Set; // ============ Constants ============ bytes32 internal constant FILE = "Storage"; // ============ Structs ============ // All information necessary for tracking a market struct Market { // Contract address of the associated ERC20 token address token; // Whether additional borrows are allowed for this market bool isClosing; // Whether this market can be removed and its ID can be recycled and reused bool isRecyclable; // Total aggregated supply and borrow amount of the entire market Types.TotalPar totalPar; // Interest index of the market Interest.Index index; // Contract address of the price oracle for this market IPriceOracle priceOracle; // Contract address of the interest setter for this market IInterestSetter interestSetter; // Multiplier on the marginRatio for this market, IE 5% (0.05 * 1e18). This number increases the market's // required collateralization by: reducing the user's supplied value (in terms of dollars) for this market and // increasing its borrowed value. This is done through the following operation: // `suppliedWei = suppliedWei + (assetValueForThisMarket / (1 + marginPremium))` // This number increases the user's borrowed wei by multiplying it by: // `borrowedWei = borrowedWei + (assetValueForThisMarket * (1 + marginPremium))` Decimal.D256 marginPremium; // Multiplier on the liquidationSpread for this market, IE 20% (0.2 * 1e18). This number increases the // `liquidationSpread` using the following formula: // `liquidationSpread = liquidationSpread * (1 + spreadPremium)` // NOTE: This formula is applied up to two times - one for each market whose spreadPremium is greater than 0 // (when performing a liquidation between two markets) Decimal.D256 spreadPremium; // The maximum amount that can be held by the protocol. This allows the protocol to cap any additional risk // that is inferred by allowing borrowing against low-cap or assets with increased volatility. Setting this // value to 0 is analogous to having no limit. This value can never be below 0. Types.Wei maxWei; } // The global risk parameters that govern the health and security of the system struct RiskParams { // Required ratio of over-collateralization Decimal.D256 marginRatio; // Percentage penalty incurred by liquidated accounts Decimal.D256 liquidationSpread; // Percentage of the borrower's interest fee that gets passed to the suppliers Decimal.D256 earningsRate; // The minimum absolute borrow value of an account // There must be sufficient incentivize to liquidate undercollateralized accounts Monetary.Value minBorrowedValue; // The maximum number of markets a user can have a non-zero balance for a given account. uint256 accountMaxNumberOfMarketsWithBalances; } // The maximum RiskParam values that can be set struct RiskLimits { // The highest that the ratio can be for liquidating under-water accounts uint64 marginRatioMax; // The highest that the liquidation rewards can be when a liquidator liquidates an account uint64 liquidationSpreadMax; // The highest that the supply APR can be for a market, as a proportion of the borrow rate. Meaning, a rate of // 100% (1e18) would give suppliers all of the interest that borrowers are paying. A rate of 90% would give // suppliers 90% of the interest that borrowers pay. uint64 earningsRateMax; // The highest min margin ratio premium that can be applied to a particular market. Meaning, a value of 100% // (1e18) would require borrowers to maintain an extra 100% collateral to maintain a healthy margin ratio. This // value works by increasing the debt owed and decreasing the supply held for the particular market by this // amount, plus 1e18 (since a value of 10% needs to be applied as `decimal.plusOne`) uint64 marginPremiumMax; // The highest liquidation reward that can be applied to a particular market. This percentage is applied // in addition to the liquidation spread in `RiskParams`. Meaning a value of 1e18 is 100%. It is calculated as: // `liquidationSpread * Decimal.onePlus(spreadPremium)` uint64 spreadPremiumMax; uint128 minBorrowedValueMax; } // The entire storage state of DolomiteMargin struct State { // number of markets uint256 numMarkets; // marketId => Market mapping (uint256 => Market) markets; // token address => marketId mapping (address => uint256) tokenToMarketId; // Linked list from marketId to the next recycled market id mapping(uint256 => uint256) recycledMarketIds; // owner => account number => Account mapping (address => mapping (uint256 => Account.Storage)) accounts; // Addresses that can control other users accounts mapping (address => mapping (address => bool)) operators; // Addresses that can control all users accounts mapping (address => bool) globalOperators; // Addresses of auto traders that can only be called by global operators. IE for expirations mapping (address => bool) specialAutoTraders; // mutable risk parameters of the system RiskParams riskParams; // immutable risk limits of the system RiskLimits riskLimits; } // ============ Functions ============ function getToken( Storage.State storage state, uint256 marketId ) internal view returns (address) { return state.markets[marketId].token; } function getTotalPar( Storage.State storage state, uint256 marketId ) internal view returns (Types.TotalPar memory) { return state.markets[marketId].totalPar; } function getMaxWei( Storage.State storage state, uint256 marketId ) internal view returns (Types.Wei memory) { return state.markets[marketId].maxWei; } function getIndex( Storage.State storage state, uint256 marketId ) internal view returns (Interest.Index memory) { return state.markets[marketId].index; } function getNumExcessTokens( Storage.State storage state, uint256 marketId ) internal view returns (Types.Wei memory) { Interest.Index memory index = state.getIndex(marketId); Types.TotalPar memory totalPar = state.getTotalPar(marketId); address token = state.getToken(marketId); Types.Wei memory balanceWei = Types.Wei({ sign: true, value: IERC20Detailed(token).balanceOf(address(this)) }); ( Types.Wei memory supplyWei, Types.Wei memory borrowWei ) = Interest.totalParToWei(totalPar, index); // borrowWei is negative, so subtracting it makes the value more positive return balanceWei.sub(borrowWei).sub(supplyWei); } function getStatus( Storage.State storage state, Account.Info memory account ) internal view returns (Account.Status) { return state.accounts[account.owner][account.number].status; } function getPar( Storage.State storage state, Account.Info memory account, uint256 marketId ) internal view returns (Types.Par memory) { return state.accounts[account.owner][account.number].balances[marketId]; } function getWei( Storage.State storage state, Account.Info memory account, uint256 marketId, Interest.Index memory index ) internal view returns (Types.Wei memory) { Types.Par memory par = state.getPar(account, marketId); if (par.isZero()) { return Types.zeroWei(); } return Interest.parToWei(par, index); } function getMarketsWithBalancesSet( Storage.State storage state, Account.Info memory account ) internal view returns (EnumerableSet.Set storage) { return state.accounts[account.owner][account.number].marketsWithNonZeroBalanceSet; } function getMarketsWithBalances( Storage.State storage state, Account.Info memory account ) internal view returns (uint256[] memory) { return state.accounts[account.owner][account.number].marketsWithNonZeroBalanceSet.values(); } function getAccountMarketWithBalanceAtIndex( Storage.State storage state, Account.Info memory account, uint256 index ) internal view returns (uint256) { return state.accounts[account.owner][account.number].marketsWithNonZeroBalanceSet.getAtIndex(index); } function getNumberOfMarketsWithBalances( Storage.State storage state, Account.Info memory account ) internal view returns (uint256) { return state.accounts[account.owner][account.number].marketsWithNonZeroBalanceSet.length(); } function getAccountNumberOfMarketsWithDebt( Storage.State storage state, Account.Info memory account ) internal view returns (uint256) { return state.accounts[account.owner][account.number].numberOfMarketsWithDebt; } function getLiquidationSpreadForPair( Storage.State storage state, uint256 heldMarketId, uint256 owedMarketId ) internal view returns (Decimal.D256 memory) { uint256 result = state.riskParams.liquidationSpread.value; result = Decimal.mul(result, Decimal.onePlus(state.markets[heldMarketId].spreadPremium)); result = Decimal.mul(result, Decimal.onePlus(state.markets[owedMarketId].spreadPremium)); return Decimal.D256({ value: result }); } function fetchNewIndex( Storage.State storage state, uint256 marketId, Interest.Index memory index ) internal view returns (Interest.Index memory) { Interest.Rate memory rate = state.fetchInterestRate(marketId, index); return Interest.calculateNewIndex( index, rate, state.getTotalPar(marketId), state.riskParams.earningsRate ); } function fetchInterestRate( Storage.State storage state, uint256 marketId, Interest.Index memory index ) internal view returns (Interest.Rate memory) { Types.TotalPar memory totalPar = state.getTotalPar(marketId); ( Types.Wei memory supplyWei, Types.Wei memory borrowWei ) = Interest.totalParToWei(totalPar, index); Interest.Rate memory rate = state.markets[marketId].interestSetter.getInterestRate( state.getToken(marketId), borrowWei.value, supplyWei.value ); return rate; } function fetchPrice( Storage.State storage state, uint256 marketId, address token ) internal view returns (Monetary.Price memory) { IPriceOracle oracle = IPriceOracle(state.markets[marketId].priceOracle); Monetary.Price memory price = oracle.getPrice(token); Require.that( price.value != 0, FILE, "Price cannot be zero", marketId ); return price; } function getAccountValues( Storage.State storage state, Account.Info memory account, Cache.MarketCache memory cache, bool adjustForLiquidity ) internal view returns (Monetary.Value memory, Monetary.Value memory) { Monetary.Value memory supplyValue; Monetary.Value memory borrowValue; uint256 numMarkets = cache.getNumMarkets(); for (uint256 i = 0; i < numMarkets; i++) { Types.Wei memory userWei = state.getWei(account, cache.getAtIndex(i).marketId, cache.getAtIndex(i).index); if (userWei.isZero()) { continue; } uint256 assetValue = userWei.value.mul(cache.getAtIndex(i).price.value); Decimal.D256 memory adjust = Decimal.one(); if (adjustForLiquidity) { adjust = Decimal.onePlus(state.markets[cache.getAtIndex(i).marketId].marginPremium); } if (userWei.sign) { supplyValue.value = supplyValue.value.add(Decimal.div(assetValue, adjust)); } else { borrowValue.value = borrowValue.value.add(Decimal.mul(assetValue, adjust)); } } return (supplyValue, borrowValue); } function isCollateralized( Storage.State storage state, Account.Info memory account, Cache.MarketCache memory cache, bool requireMinBorrow ) internal view returns (bool) { if (state.getAccountNumberOfMarketsWithDebt(account) == 0) { // The user does not have a balance with a borrow amount, so they must be collateralized return true; } // get account values (adjusted for liquidity) ( Monetary.Value memory supplyValue, Monetary.Value memory borrowValue ) = state.getAccountValues(account, cache, /* adjustForLiquidity = */ true); if (requireMinBorrow) { Require.that( borrowValue.value >= state.riskParams.minBorrowedValue.value, FILE, "Borrow value too low", account.owner, account.number ); } uint256 requiredMargin = Decimal.mul(borrowValue.value, state.riskParams.marginRatio); return supplyValue.value >= borrowValue.value.add(requiredMargin); } function isGlobalOperator( Storage.State storage state, address operator ) internal view returns (bool) { return state.globalOperators[operator]; } function isAutoTraderSpecial( Storage.State storage state, address autoTrader ) internal view returns (bool) { return state.specialAutoTraders[autoTrader]; } function isLocalOperator( Storage.State storage state, address owner, address operator ) internal view returns (bool) { return state.operators[owner][operator]; } function requireIsGlobalOperator( Storage.State storage state, address operator ) internal view { bool isValidOperator = state.isGlobalOperator(operator); Require.that( isValidOperator, FILE, "Unpermissioned global operator", operator ); } function requireIsOperator( Storage.State storage state, Account.Info memory account, address operator ) internal view { bool isValidOperator = operator == account.owner || state.isGlobalOperator(operator) || state.isLocalOperator(account.owner, operator); Require.that( isValidOperator, FILE, "Unpermissioned operator", operator ); } /** * Determine and set an account's balance based on the intended balance change. Return the * equivalent amount in wei */ function getNewParAndDeltaWei( Storage.State storage state, Account.Info memory account, uint256 marketId, Interest.Index memory index, Types.AssetAmount memory amount ) internal view returns (Types.Par memory, Types.Wei memory) { Types.Par memory oldPar = state.getPar(account, marketId); if (amount.value == 0 && amount.ref == Types.AssetReference.Delta) { return (oldPar, Types.zeroWei()); } Types.Wei memory oldWei = Interest.parToWei(oldPar, index); Types.Par memory newPar; Types.Wei memory deltaWei; if (amount.denomination == Types.AssetDenomination.Wei) { deltaWei = Types.Wei({ sign: amount.sign, value: amount.value }); if (amount.ref == Types.AssetReference.Target) { deltaWei = deltaWei.sub(oldWei); } newPar = Interest.weiToPar(oldWei.add(deltaWei), index); } else { // AssetDenomination.Par newPar = Types.Par({ sign: amount.sign, value: amount.value.to128() }); if (amount.ref == Types.AssetReference.Delta) { newPar = oldPar.add(newPar); } deltaWei = Interest.parToWei(newPar, index).sub(oldWei); } return (newPar, deltaWei); } function getNewParAndDeltaWeiForLiquidation( Storage.State storage state, Account.Info memory account, uint256 marketId, Interest.Index memory index, Types.AssetAmount memory amount ) internal view returns (Types.Par memory, Types.Wei memory) { Types.Par memory oldPar = state.getPar(account, marketId); Require.that( !oldPar.isPositive(), FILE, "Owed balance cannot be positive", account.owner, account.number ); ( Types.Par memory newPar, Types.Wei memory deltaWei ) = state.getNewParAndDeltaWei( account, marketId, index, amount ); // if attempting to over-repay the owed asset, bound it by the maximum if (newPar.isPositive()) { newPar = Types.zeroPar(); deltaWei = state.getWei(account, marketId, index).negative(); } Require.that( !deltaWei.isNegative() && oldPar.value >= newPar.value, FILE, "Owed balance cannot increase", account.owner, account.number ); // if not paying back enough wei to repay any par, then bound wei to zero if (oldPar.equals(newPar)) { deltaWei = Types.zeroWei(); } return (newPar, deltaWei); } function isVaporizable( Storage.State storage state, Account.Info memory account, Cache.MarketCache memory cache ) internal view returns (bool) { bool hasNegative = false; uint256 numMarkets = cache.getNumMarkets(); for (uint256 i = 0; i < numMarkets; i++) { Types.Par memory par = state.getPar(account, cache.getAtIndex(i).marketId); if (par.isZero()) { continue; } else if (par.sign) { return false; } else { hasNegative = true; } } return hasNegative; } // =============== Setter Functions =============== function updateIndex( Storage.State storage state, uint256 marketId ) internal returns (Interest.Index memory) { Interest.Index memory index = state.getIndex(marketId); if (index.lastUpdate == Time.currentTime()) { return index; } return state.markets[marketId].index = state.fetchNewIndex(marketId, index); } function setStatus( Storage.State storage state, Account.Info memory account, Account.Status status ) internal { state.accounts[account.owner][account.number].status = status; } function setPar( Storage.State storage state, Account.Info memory account, uint256 marketId, Types.Par memory newPar ) internal { Types.Par memory oldPar = state.getPar(account, marketId); if (Types.equals(oldPar, newPar)) { // GUARD statement return; } // updateTotalPar Types.TotalPar memory totalPar = state.getTotalPar(marketId); // roll-back oldPar if (oldPar.sign) { totalPar.supply = uint256(totalPar.supply).sub(oldPar.value).to128(); } else { totalPar.borrow = uint256(totalPar.borrow).sub(oldPar.value).to128(); } // roll-forward newPar if (newPar.sign) { totalPar.supply = uint256(totalPar.supply).add(newPar.value).to128(); } else { totalPar.borrow = uint256(totalPar.borrow).add(newPar.value).to128(); } if (oldPar.isLessThanZero() && newPar.isGreaterThanOrEqualToZero()) { // user went from borrowing to repaying or positive state.accounts[account.owner][account.number].numberOfMarketsWithDebt -= 1; } else if (oldPar.isGreaterThanOrEqualToZero() && newPar.isLessThanZero()) { // user went from zero or positive to borrowing state.accounts[account.owner][account.number].numberOfMarketsWithDebt += 1; } if (newPar.isZero() && (!oldPar.isZero())) { // User went from a non-zero balance to zero. Remove the market from the set. state.accounts[account.owner][account.number].marketsWithNonZeroBalanceSet.remove(marketId); } else if ((!newPar.isZero()) && oldPar.isZero()) { // User went from zero to non-zero. Add the market to the set. state.accounts[account.owner][account.number].marketsWithNonZeroBalanceSet.add(marketId); } state.markets[marketId].totalPar = totalPar; state.accounts[account.owner][account.number].balances[marketId] = newPar; } /** * Determine and set an account's balance based on a change in wei */ function setParFromDeltaWei( Storage.State storage state, Account.Info memory account, uint256 marketId, Interest.Index memory index, Types.Wei memory deltaWei ) internal { if (deltaWei.isZero()) { return; } Types.Wei memory oldWei = state.getWei(account, marketId, index); Types.Wei memory newWei = oldWei.add(deltaWei); Types.Par memory newPar = Interest.weiToPar(newWei, index); state.setPar( account, marketId, newPar ); } /** * Initializes the cache using the set bits */ function initializeCache( Storage.State storage state, Cache.MarketCache memory cache ) internal view { cache.markets = new Cache.MarketInfo[](cache.marketsLength); uint counter = 0; // Really neat byproduct of iterating through a bitmap using the least significant bit, where each set flag // represents the marketId, --> the initialized `cache.markets` array is sorted in O(n)! // Meaning, this function call is O(n) where `n` is the number of markets in the cache for (uint i = 0; i < cache.marketBitmaps.length; i++) { uint bitmap = cache.marketBitmaps[i]; while (bitmap != 0) { uint nextSetBit = Bits.getLeastSignificantBit(bitmap); uint marketId = Bits.getMarketIdFromBit(i, nextSetBit); address token = state.getToken(marketId); Types.TotalPar memory totalPar = state.getTotalPar(marketId); cache.markets[counter++] = Cache.MarketInfo({ marketId: marketId, token: token, isClosing: state.markets[marketId].isClosing, borrowPar: totalPar.borrow, supplyPar: totalPar.supply, index: state.getIndex(marketId), price: state.fetchPrice(marketId, token) }); // unset the set bit bitmap = Bits.unsetBit(bitmap, nextSetBit); } if (counter == cache.marketsLength) { break; } } assert(cache.marketsLength == counter); } }
/* Copyright 2019 dYdX Trading Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; /** * @title Require * @author dYdX * * Stringifies parameters to pretty-print revert messages. Costs more gas than regular require() */ library Require { // ============ Constants ============ uint256 constant ASCII_ZERO = 48; // '0' uint256 constant ASCII_RELATIVE_ZERO = 87; // 'a' - 10 uint256 constant ASCII_LOWER_EX = 120; // 'x' bytes2 constant COLON = 0x3a20; // ': ' bytes2 constant COMMA = 0x2c20; // ', ' bytes2 constant LPAREN = 0x203c; // ' <' byte constant RPAREN = 0x3e; // '>' uint256 constant FOUR_BIT_MASK = 0xf; // ============ Library Functions ============ function that( bool must, bytes32 file, bytes32 reason ) internal pure { if (!must) { revert( string( abi.encodePacked( stringifyTruncated(file), COLON, stringifyTruncated(reason) ) ) ); } } function that( bool must, bytes32 file, bytes32 reason, uint256 payloadA ) internal pure { if (!must) { revert( string( abi.encodePacked( stringifyTruncated(file), COLON, stringifyTruncated(reason), LPAREN, stringify(payloadA), RPAREN ) ) ); } } function that( bool must, bytes32 file, bytes32 reason, uint256 payloadA, uint256 payloadB ) internal pure { if (!must) { revert( string( abi.encodePacked( stringifyTruncated(file), COLON, stringifyTruncated(reason), LPAREN, stringify(payloadA), COMMA, stringify(payloadB), RPAREN ) ) ); } } function that( bool must, bytes32 file, bytes32 reason, address payloadA ) internal pure { if (!must) { revert( string( abi.encodePacked( stringifyTruncated(file), COLON, stringifyTruncated(reason), LPAREN, stringify(payloadA), RPAREN ) ) ); } } function that( bool must, bytes32 file, bytes32 reason, address payloadA, uint256 payloadB ) internal pure { if (!must) { revert( string( abi.encodePacked( stringifyTruncated(file), COLON, stringifyTruncated(reason), LPAREN, stringify(payloadA), COMMA, stringify(payloadB), RPAREN ) ) ); } } function that( bool must, bytes32 file, bytes32 reason, address payloadA, uint256 payloadB, uint256 payloadC ) internal pure { if (!must) { revert( string( abi.encodePacked( stringifyTruncated(file), COLON, stringifyTruncated(reason), LPAREN, stringify(payloadA), COMMA, stringify(payloadB), COMMA, stringify(payloadC), RPAREN ) ) ); } } function that( bool must, bytes32 file, bytes32 reason, bytes32 payloadA ) internal pure { if (!must) { revert( string( abi.encodePacked( stringifyTruncated(file), COLON, stringifyTruncated(reason), LPAREN, stringify(payloadA), RPAREN ) ) ); } } function that( bool must, bytes32 file, bytes32 reason, bytes32 payloadA, uint256 payloadB, uint256 payloadC ) internal pure { if (!must) { revert( string( abi.encodePacked( stringifyTruncated(file), COLON, stringifyTruncated(reason), LPAREN, stringify(payloadA), COMMA, stringify(payloadB), COMMA, stringify(payloadC), RPAREN ) ) ); } } // ============ Private Functions ============ function stringifyTruncated( bytes32 input ) internal pure returns (bytes memory) { // put the input bytes into the result bytes memory result = abi.encodePacked(input); // determine the length of the input by finding the location of the last non-zero byte for (uint256 i = 32; i > 0; ) { // reverse-for-loops with unsigned integer /* solium-disable-next-line security/no-modify-for-iter-var */ i--; // find the last non-zero byte in order to determine the length if (result[i] != 0) { uint256 length = i + 1; /* solium-disable-next-line security/no-inline-assembly */ assembly { mstore(result, length) // r.length = length; } return result; } } // all bytes are zero return new bytes(0); } function stringify( uint256 input ) private pure returns (bytes memory) { if (input == 0) { return "0"; } // get the final string length uint256 j = input; uint256 length; while (j != 0) { length++; j /= 10; } // allocate the string bytes memory bstr = new bytes(length); // populate the string starting with the least-significant character j = input; for (uint256 i = length; i > 0; ) { // reverse-for-loops with unsigned integer /* solium-disable-next-line security/no-modify-for-iter-var */ i--; // take last decimal digit bstr[i] = byte(uint8(ASCII_ZERO + (j % 10))); // remove the last decimal digit j /= 10; } return bstr; } function stringify( address input ) private pure returns (bytes memory) { uint256 z = uint256(input); // addresses are "0x" followed by 20 bytes of data which take up 2 characters each bytes memory result = new bytes(42); // populate the result with "0x" result[0] = byte(uint8(ASCII_ZERO)); result[1] = byte(uint8(ASCII_LOWER_EX)); // for each byte (starting from the lowest byte), populate the result with two characters for (uint256 i = 0; i < 20; i++) { // each byte takes two characters uint256 shift = i * 2; // populate the least-significant character result[41 - shift] = char(z & FOUR_BIT_MASK); z = z >> 4; // populate the most-significant character result[40 - shift] = char(z & FOUR_BIT_MASK); z = z >> 4; } return result; } function stringify( bytes32 input ) private pure returns (bytes memory) { uint256 z = uint256(input); // bytes32 are "0x" followed by 32 bytes of data which take up 2 characters each bytes memory result = new bytes(66); // populate the result with "0x" result[0] = byte(uint8(ASCII_ZERO)); result[1] = byte(uint8(ASCII_LOWER_EX)); // for each byte (starting from the lowest byte), populate the result with two characters for (uint256 i = 0; i < 32; i++) { // each byte takes two characters uint256 shift = i * 2; // populate the least-significant character result[65 - shift] = char(z & FOUR_BIT_MASK); z = z >> 4; // populate the most-significant character result[64 - shift] = char(z & FOUR_BIT_MASK); z = z >> 4; } return result; } function char( uint256 input ) private pure returns (byte) { // return ASCII digit (0-9) if (input < 10) { return byte(uint8(input + ASCII_ZERO)); } // return ASCII letter (a-f) return byte(uint8(input + ASCII_RELATIVE_ZERO)); } }
/* Copyright 2019 dYdX Trading Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; /** * @title Monetary * @author dYdX * * Library for types involving money */ library Monetary { /* * The price of a base-unit of an asset. Has `36 - token.decimals` decimals */ struct Price { uint256 value; } /* * Total value of an some amount of an asset. Equal to (price * amount). Has 36 decimals. */ struct Value { uint256 value; } }
/* Copyright 2019 dYdX Trading Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol"; import { Decimal } from "./Decimal.sol"; import { DolomiteMarginMath } from "./DolomiteMarginMath.sol"; import { Time } from "./Time.sol"; import { Types } from "./Types.sol"; /** * @title Interest * @author dYdX * * Library for managing the interest rate and interest indexes of DolomiteMargin */ library Interest { using DolomiteMarginMath for uint256; using SafeMath for uint256; // ============ Constants ============ bytes32 constant FILE = "Interest"; uint64 constant BASE = 10**18; // ============ Structs ============ struct Rate { uint256 value; } struct Index { uint96 borrow; uint96 supply; uint32 lastUpdate; } // ============ Library Functions ============ /** * Get a new market Index based on the old index and market interest rate. * Calculate interest for borrowers by using the formula rate * time. Approximates * continuously-compounded interest when called frequently, but is much more * gas-efficient to calculate. For suppliers, the interest rate is adjusted by the earningsRate, * then prorated across all suppliers. * * @param index The old index for a market * @param rate The current interest rate of the market * @param totalPar The total supply and borrow par values of the market * @param earningsRate The portion of the interest that is forwarded to the suppliers * @return The updated index for a market */ function calculateNewIndex( Index memory index, Rate memory rate, Types.TotalPar memory totalPar, Decimal.D256 memory earningsRate ) internal view returns (Index memory) { ( Types.Wei memory supplyWei, Types.Wei memory borrowWei ) = totalParToWei(totalPar, index); // get interest increase for borrowers uint32 currentTime = Time.currentTime(); uint256 borrowInterest = rate.value.mul(uint256(currentTime).sub(index.lastUpdate)); // get interest increase for suppliers uint256 supplyInterest; if (Types.isZero(supplyWei)) { supplyInterest = 0; } else { supplyInterest = Decimal.mul(borrowInterest, earningsRate); if (borrowWei.value < supplyWei.value) { // scale down the interest by the amount being supplied. Why? Because interest is only being paid on // the borrowWei, which means it's split amongst all of the supplyWei. Scaling it down normalizes it // for the suppliers to share what's being paid by borrowers supplyInterest = DolomiteMarginMath.getPartial(supplyInterest, borrowWei.value, supplyWei.value); } } assert(supplyInterest <= borrowInterest); return Index({ borrow: DolomiteMarginMath.getPartial(index.borrow, borrowInterest, BASE).add(index.borrow).to96(), supply: DolomiteMarginMath.getPartial(index.supply, supplyInterest, BASE).add(index.supply).to96(), lastUpdate: currentTime }); } function newIndex() internal view returns (Index memory) { return Index({ borrow: BASE, supply: BASE, lastUpdate: Time.currentTime() }); } /* * Convert a principal amount to a token amount given an index. */ function parToWei( Types.Par memory input, Index memory index ) internal pure returns (Types.Wei memory) { uint256 inputValue = uint256(input.value); if (input.sign) { return Types.Wei({ sign: true, value: inputValue.getPartialRoundHalfUp(index.supply, BASE) }); } else { return Types.Wei({ sign: false, value: inputValue.getPartialRoundHalfUp(index.borrow, BASE) }); } } /* * Convert a token amount to a principal amount given an index. */ function weiToPar( Types.Wei memory input, Index memory index ) internal pure returns (Types.Par memory) { if (input.sign) { return Types.Par({ sign: true, value: input.value.getPartialRoundHalfUp(BASE, index.supply).to128() }); } else { return Types.Par({ sign: false, value: input.value.getPartialRoundHalfUp(BASE, index.borrow).to128() }); } } /* * Convert the total supply and borrow principal amounts of a market to total supply and borrow * token amounts. */ function totalParToWei( Types.TotalPar memory totalPar, Index memory index ) internal pure returns (Types.Wei memory, Types.Wei memory) { Types.Par memory supplyPar = Types.Par({ sign: true, value: totalPar.supply }); Types.Par memory borrowPar = Types.Par({ sign: false, value: totalPar.borrow }); Types.Wei memory supplyWei = parToWei(supplyPar, index); Types.Wei memory borrowWei = parToWei(borrowPar, index); return (supplyWei, borrowWei); } }
/* Copyright 2021 Dolomite. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; library EnumerableSet { struct Set { // Storage of set values uint256[] _values; // Value to the index in `_values` array, plus 1 because index 0 means a value is not in the set. mapping(uint256 => uint256) _valueToIndexMap; } /** * @dev Add a value to a set. O(1). * * @return true if the value was added to the set, that is if it was not already present. */ function add(Set storage set, uint256 value) internal returns (bool) { if (!contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._valueToIndexMap[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * @return true if the value was removed from the set, that is if it was present. */ function remove(Set storage set, uint256 value) internal returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._valueToIndexMap[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { uint256 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._valueToIndexMap[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored, which is the last index set._values.pop(); // Delete the index for the deleted slot delete set._valueToIndexMap[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Set storage set, uint256 value) internal view returns (bool) { return set._valueToIndexMap[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function length(Set storage set) internal view returns (uint256) { return set._values.length; } /** * @dev Returns the value at the corresponding index. O(1). */ function getAtIndex(Set storage set, uint256 index) internal view returns (uint256) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Set storage set) internal view returns (uint256[] memory) { return set._values; } }
/* Copyright 2019 dYdX Trading Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol"; import { Require } from "./Require.sol"; /** * @title Math * @author dYdX * * Library for non-standard Math functions */ library DolomiteMarginMath { using SafeMath for uint256; // ============ Constants ============ bytes32 constant FILE = "Math"; // ============ Library Functions ============ /* * Return target * (numerator / denominator). */ function getPartial( uint256 target, uint256 numerator, uint256 denominator ) internal pure returns (uint256) { return target.mul(numerator).div(denominator); } /* * Return target * (numerator / denominator), but rounded half-up. Meaning, a result of 101.1 rounds to 102 * instead of 101. */ function getPartialRoundUp( uint256 target, uint256 numerator, uint256 denominator ) internal pure returns (uint256) { if (target == 0 || numerator == 0) { // SafeMath will check for zero denominator return SafeMath.div(0, denominator); } return target.mul(numerator).sub(1).div(denominator).add(1); } /* * Return target * (numerator / denominator), but rounded half-up. Meaning, a result of 101.5 rounds to 102 * instead of 101. */ function getPartialRoundHalfUp( uint256 target, uint256 numerator, uint256 denominator ) internal pure returns (uint256) { if (target == 0 || numerator == 0) { // SafeMath will check for zero denominator return SafeMath.div(0, denominator); } uint result = target.mul(numerator); // round the denominator comparator up to ensure a fair comparison is done on the `result`'s modulo. // For example, 51 / 103 == 0; 51 % 103 == 51; ((103 - 1) / 2) + 1 == 52; 51 < 52, therefore no round up return result.div(denominator).add(result.mod(denominator) >= denominator.sub(1).div(2).add(1) ? 1 : 0); } function to128( uint256 number ) internal pure returns (uint128) { uint128 result = uint128(number); Require.that( result == number, FILE, "Unsafe cast to uint128", number ); return result; } function to96( uint256 number ) internal pure returns (uint96) { uint96 result = uint96(number); Require.that( result == number, FILE, "Unsafe cast to uint96", number ); return result; } function to32( uint256 number ) internal pure returns (uint32) { uint32 result = uint32(number); Require.that( result == number, FILE, "Unsafe cast to uint32", number ); return result; } }
/* Copyright 2019 dYdX Trading Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol"; import { DolomiteMarginMath } from "./DolomiteMarginMath.sol"; /** * @title Decimal * @author dYdX * * Library that defines a fixed-point number with 18 decimal places. */ library Decimal { using SafeMath for uint256; // ============ Constants ============ uint256 constant BASE = 10**18; // ============ Structs ============ struct D256 { uint256 value; } // ============ Functions ============ function one() internal pure returns (D256 memory) { return D256({ value: BASE }); } function onePlus( D256 memory d ) internal pure returns (D256 memory) { return D256({ value: d.value.add(BASE) }); } function mul( uint256 target, D256 memory d ) internal pure returns (uint256) { return DolomiteMarginMath.getPartial(target, d.value, BASE); } function div( uint256 target, D256 memory d ) internal pure returns (uint256) { return DolomiteMarginMath.getPartial(target, BASE, d.value); } }
pragma solidity ^0.5.5; /** * @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 payable 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"); } }
/* Copyright 2019 dYdX Trading Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { Require } from "./Require.sol"; /** * @title Bits * @author Dolomite * * Library for caching information about markets */ library Bits { // ============ Constants ============ uint internal constant ONE = 1; uint256 internal constant MAX_UINT_BITS = 256; // ============ Functions ============ function createBitmaps(uint maxLength) internal pure returns (uint[] memory) { return new uint[]((maxLength / MAX_UINT_BITS) + ONE); } function getMarketIdFromBit( uint index, uint bit ) internal pure returns (uint) { return (MAX_UINT_BITS * index) + bit; } function setBit( uint[] memory bitmaps, uint marketId ) internal pure { uint bucketIndex = marketId / MAX_UINT_BITS; uint indexFromRight = marketId % MAX_UINT_BITS; bitmaps[bucketIndex] |= (ONE << indexFromRight); } function hasBit( uint[] memory bitmaps, uint marketId ) internal pure returns (bool) { uint bucketIndex = marketId / MAX_UINT_BITS; uint indexFromRight = marketId % MAX_UINT_BITS; uint bit = bitmaps[bucketIndex] & (ONE << indexFromRight); return bit > 0; } function unsetBit( uint bitmap, uint bit ) internal pure returns (uint) { return bitmap - (ONE << bit); } // solium-disable security/no-assign-params function getLeastSignificantBit(uint256 x) internal pure returns (uint) { // gas usage peaks at 350 per call uint lsb = 255; if (x & uint128(-1) > 0) { lsb -= 128; } else { x >>= 128; } if (x & uint64(-1) > 0) { lsb -= 64; } else { x >>= 64; } if (x & uint32(-1) > 0) { lsb -= 32; } else { x >>= 32; } if (x & uint16(-1) > 0) { lsb -= 16; } else { x >>= 16; } if (x & uint8(-1) > 0) { lsb -= 8; } else { x >>= 8; } if (x & 0xf > 0) { lsb -= 4; } else { x >>= 4; } if (x & 0x3 > 0) { lsb -= 2; } else { x >>= 2; // solium-enable security/no-assign-params } if (x & 0x1 > 0) { lsb -= 1; } return lsb; } }
/* Copyright 2019 dYdX Trading Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { Account } from "./Account.sol"; import { Types } from "./Types.sol"; /** * @title Actions * @author dYdX * * Library that defines and parses valid Actions */ library Actions { // ============ Constants ============ bytes32 constant FILE = "Actions"; // ============ Enums ============ enum ActionType { Deposit, // supply tokens Withdraw, // borrow tokens Transfer, // transfer balance between accounts Buy, // buy an amount of some token (externally) Sell, // sell an amount of some token (externally) Trade, // trade tokens against another account Liquidate, // liquidate an undercollateralized or expiring account Vaporize, // use excess tokens to zero-out a completely negative account Call // send arbitrary data to an address } enum AccountLayout { OnePrimary, TwoPrimary, PrimaryAndSecondary } enum MarketLayout { ZeroMarkets, OneMarket, TwoMarkets } // ============ Structs ============ /* * Arguments that are passed to DolomiteMargin in an ordered list as part of a single operation. * Each ActionArgs has an actionType which specifies which action struct that this data will be * parsed into before being processed. */ struct ActionArgs { ActionType actionType; uint256 accountId; Types.AssetAmount amount; uint256 primaryMarketId; uint256 secondaryMarketId; address otherAddress; uint256 otherAccountId; bytes data; } // ============ Action Types ============ /* * Moves tokens from an address to DolomiteMargin. Can either repay a borrow or provide additional supply. */ struct DepositArgs { Types.AssetAmount amount; Account.Info account; uint256 market; address from; } /* * Moves tokens from DolomiteMargin to another address. Can either borrow tokens or reduce the amount * previously supplied. */ struct WithdrawArgs { Types.AssetAmount amount; Account.Info account; uint256 market; address to; } /* * Transfers balance between two accounts. The msg.sender must be an operator for both accounts. * The amount field applies to accountOne. * This action does not require any token movement since the trade is done internally to DolomiteMargin. */ struct TransferArgs { Types.AssetAmount amount; Account.Info accountOne; Account.Info accountTwo; uint256 market; } /* * Acquires a certain amount of tokens by spending other tokens. Sends takerMarket tokens to the * specified exchangeWrapper contract and expects makerMarket tokens in return. The amount field * applies to the makerMarket. */ struct BuyArgs { Types.AssetAmount amount; Account.Info account; uint256 makerMarket; uint256 takerMarket; address exchangeWrapper; bytes orderData; } /* * Spends a certain amount of tokens to acquire other tokens. Sends takerMarket tokens to the * specified exchangeWrapper and expects makerMarket tokens in return. The amount field applies * to the takerMarket. */ struct SellArgs { Types.AssetAmount amount; Account.Info account; uint256 takerMarket; uint256 makerMarket; address exchangeWrapper; bytes orderData; } /* * Trades balances between two accounts using any external contract that implements the * AutoTrader interface. The AutoTrader contract must be an operator for the makerAccount (for * which it is trading on-behalf-of). The amount field applies to the makerAccount and the * inputMarket. This proposed change to the makerAccount is passed to the AutoTrader which will * quote a change for the makerAccount in the outputMarket (or will disallow the trade). * This action does not require any token movement since the trade is done internally to DolomiteMargin. */ struct TradeArgs { Types.AssetAmount amount; Account.Info takerAccount; Account.Info makerAccount; uint256 inputMarket; uint256 outputMarket; address autoTrader; bytes tradeData; } /* * Each account must maintain a certain margin-ratio (specified globally). If the account falls * below this margin-ratio, it can be liquidated by any other account. This allows anyone else * (arbitrageurs) to repay any borrowed asset (owedMarket) of the liquidating account in * exchange for any collateral asset (heldMarket) of the liquidAccount. The ratio is determined * by the price ratio (given by the oracles) plus a spread (specified globally). Liquidating an * account also sets a flag on the account that the account is being liquidated. This allows * anyone to continue liquidating the account until there are no more borrows being taken by the * liquidating account. Liquidators do not have to liquidate the entire account all at once but * can liquidate as much as they choose. The liquidating flag allows liquidators to continue * liquidating the account even if it becomes collateralized through partial liquidation or * price movement. */ struct LiquidateArgs { Types.AssetAmount amount; Account.Info solidAccount; Account.Info liquidAccount; uint256 owedMarket; uint256 heldMarket; } /* * Similar to liquidate, but vaporAccounts are accounts that have only negative balances remaining. The arbitrageur * pays back the negative asset (owedMarket) of the vaporAccount in exchange for a collateral asset (heldMarket) at * a favorable spread. However, since the liquidAccount has no collateral assets, the collateral must come from * DolomiteMargin's excess tokens. */ struct VaporizeArgs { Types.AssetAmount amount; Account.Info solidAccount; Account.Info vaporAccount; uint256 owedMarket; uint256 heldMarket; } /* * Passes arbitrary bytes of data to an external contract that implements the Callee interface. * Does not change any asset amounts. This function may be useful for setting certain variables * on layer-two contracts for certain accounts without having to make a separate Ethereum * transaction for doing so. Also, the second-layer contracts can ensure that the call is coming * from an operator of the particular account. */ struct CallArgs { Account.Info account; address callee; bytes data; } // ============ Helper Functions ============ function getMarketLayout( ActionType actionType ) internal pure returns (MarketLayout) { if ( actionType == Actions.ActionType.Deposit || actionType == Actions.ActionType.Withdraw || actionType == Actions.ActionType.Transfer ) { return MarketLayout.OneMarket; } else if (actionType == Actions.ActionType.Call) { return MarketLayout.ZeroMarkets; } return MarketLayout.TwoMarkets; } function getAccountLayout( ActionType actionType ) internal pure returns (AccountLayout) { if ( actionType == Actions.ActionType.Transfer || actionType == Actions.ActionType.Trade ) { return AccountLayout.TwoPrimary; } else if ( actionType == Actions.ActionType.Liquidate || actionType == Actions.ActionType.Vaporize ) { return AccountLayout.PrimaryAndSecondary; } return AccountLayout.OnePrimary; } // ============ Parsing Functions ============ function parseDepositArgs( Account.Info[] memory accounts, ActionArgs memory args ) internal pure returns (DepositArgs memory) { return DepositArgs({ amount: args.amount, account: accounts[args.accountId], market: args.primaryMarketId, from: args.otherAddress }); } function parseWithdrawArgs( Account.Info[] memory accounts, ActionArgs memory args ) internal pure returns (WithdrawArgs memory) { return WithdrawArgs({ amount: args.amount, account: accounts[args.accountId], market: args.primaryMarketId, to: args.otherAddress }); } function parseTransferArgs( Account.Info[] memory accounts, ActionArgs memory args ) internal pure returns (TransferArgs memory) { return TransferArgs({ amount: args.amount, accountOne: accounts[args.accountId], accountTwo: accounts[args.otherAccountId], market: args.primaryMarketId }); } function parseBuyArgs( Account.Info[] memory accounts, ActionArgs memory args ) internal pure returns (BuyArgs memory) { return BuyArgs({ amount: args.amount, account: accounts[args.accountId], makerMarket: args.primaryMarketId, takerMarket: args.secondaryMarketId, exchangeWrapper: args.otherAddress, orderData: args.data }); } function parseSellArgs( Account.Info[] memory accounts, ActionArgs memory args ) internal pure returns (SellArgs memory) { return SellArgs({ amount: args.amount, account: accounts[args.accountId], takerMarket: args.primaryMarketId, makerMarket: args.secondaryMarketId, exchangeWrapper: args.otherAddress, orderData: args.data }); } function parseTradeArgs( Account.Info[] memory accounts, ActionArgs memory args ) internal pure returns (TradeArgs memory) { return TradeArgs({ amount: args.amount, takerAccount: accounts[args.accountId], makerAccount: accounts[args.otherAccountId], inputMarket: args.primaryMarketId, outputMarket: args.secondaryMarketId, autoTrader: args.otherAddress, tradeData: args.data }); } function parseLiquidateArgs( Account.Info[] memory accounts, ActionArgs memory args ) internal pure returns (LiquidateArgs memory) { return LiquidateArgs({ amount: args.amount, solidAccount: accounts[args.accountId], liquidAccount: accounts[args.otherAccountId], owedMarket: args.primaryMarketId, heldMarket: args.secondaryMarketId }); } function parseVaporizeArgs( Account.Info[] memory accounts, ActionArgs memory args ) internal pure returns (VaporizeArgs memory) { return VaporizeArgs({ amount: args.amount, solidAccount: accounts[args.accountId], vaporAccount: accounts[args.otherAccountId], owedMarket: args.primaryMarketId, heldMarket: args.secondaryMarketId }); } function parseCallArgs( Account.Info[] memory accounts, ActionArgs memory args ) internal pure returns (CallArgs memory) { return CallArgs({ account: accounts[args.accountId], callee: args.otherAddress, data: args.data }); } }
/* Copyright 2019 dYdX Trading Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { Types } from "./Types.sol"; import { EnumerableSet } from "./EnumerableSet.sol"; /** * @title Account * @author dYdX * * Library of structs and functions that represent an account */ library Account { // ============ Enums ============ /* * Most-recently-cached account status. * * Normal: Can only be liquidated if the account values are violating the global margin-ratio. * Liquid: Can be liquidated no matter the account values. * Can be vaporized if there are no more positive account values. * Vapor: Has only negative (or zeroed) account values. Can be vaporized. * */ enum Status { Normal, Liquid, Vapor } // ============ Structs ============ // Represents the unique key that specifies an account struct Info { address owner; // The address that owns the account uint256 number; // A nonce that allows a single address to control many accounts } // The complete storage for any account struct Storage { Status status; uint32 numberOfMarketsWithDebt; EnumerableSet.Set marketsWithNonZeroBalanceSet; mapping (uint256 => Types.Par) balances; // Mapping from marketId to principal } // ============ Library Functions ============ function equals( Info memory a, Info memory b ) internal pure returns (bool) { return a.owner == b.owner && a.number == b.number; } }
/* Copyright 2019 dYdX Trading Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { Monetary } from "../lib/Monetary.sol"; /** * @title IPriceOracle * @author dYdX * * Interface that Price Oracles for DolomiteMargin must implement in order to report prices. */ contract IPriceOracle { // ============ Constants ============ uint256 public constant ONE_DOLLAR = 10 ** 36; // ============ Public Functions ============ /** * Get the price of a token * * @param token The ERC20 token address of the market * @return The USD price of a base unit of the token, then multiplied by 10^36. * So a USD-stable coin with 18 decimal places would return 10^18. * This is the price of the base unit rather than the price of a "human-readable" * token amount. Every ERC20 may have a different number of decimals. */ function getPrice( address token ) public view returns (Monetary.Price memory); }
/* Copyright 2019 dYdX Trading Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { Interest } from "../lib/Interest.sol"; /** * @title IInterestSetter * @author dYdX * * Interface that Interest Setters for DolomiteMargin must implement in order to report interest rates. */ interface IInterestSetter { // ============ Public Functions ============ /** * Get the interest rate of a token given some borrowed and supplied amounts * * @param token The address of the ERC20 token for the market * @param borrowWei The total borrowed token amount for the market * @param supplyWei The total supplied token amount for the market * @return The interest rate per second */ function getInterestRate( address token, uint256 borrowWei, uint256 supplyWei ) external view returns (Interest.Rate memory); }
/* Copyright 2019 dYdX Trading Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /** * @title IERC20 * @author dYdX * * Interface for using ERC20 Tokens. We have to use a special interface to call ERC20 functions so * that we don't automatically revert when calling non-compliant tokens that have no return value for * transfer(), transferFrom(), or approve(). */ contract IERC20Detailed is IERC20 { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); }
/* Copyright 2021 Dolomite. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity >=0.5.0; pragma experimental ABIEncoderV2; import { IInterestSetter } from "../interfaces/IInterestSetter.sol"; import { IPriceOracle } from "../interfaces/IPriceOracle.sol"; import { Account } from "../lib/Account.sol"; import { Actions } from "../lib/Actions.sol"; import { Decimal } from "../lib/Decimal.sol"; import { Interest } from "../lib/Interest.sol"; import { Monetary } from "../lib/Monetary.sol"; import { Storage } from "../lib/Storage.sol"; import { Types } from "../lib/Types.sol"; interface IDolomiteMargin { // ============ Getters for Markets ============ /** * Get the ERC20 token address for a market. * * @param token The token to query * @return The token's marketId if the token is valid */ function getMarketIdByTokenAddress( address token ) external view returns (uint256); /** * Get the ERC20 token address for a market. * * @param marketId The market to query * @return The token address */ function getMarketTokenAddress( uint256 marketId ) external view returns (address); /** * Return true if a particular market is in closing mode. Additional borrows cannot be taken * from a market that is closing. * * @param marketId The market to query * @return True if the market is closing */ function getMarketIsClosing( uint256 marketId ) external view returns (bool); /** * Get the price of the token for a market. * * @param marketId The market to query * @return The price of each atomic unit of the token */ function getMarketPrice( uint256 marketId ) external view returns (Monetary.Price memory); /** * Get the total number of markets. * * @return The number of markets */ function getNumMarkets() external view returns (uint256); /** * Get the total principal amounts (borrowed and supplied) for a market. * * @param marketId The market to query * @return The total principal amounts */ function getMarketTotalPar( uint256 marketId ) external view returns (Types.TotalPar memory); /** * Get the most recently cached interest index for a market. * * @param marketId The market to query * @return The most recent index */ function getMarketCachedIndex( uint256 marketId ) external view returns (Interest.Index memory); /** * Get the interest index for a market if it were to be updated right now. * * @param marketId The market to query * @return The estimated current index */ function getMarketCurrentIndex( uint256 marketId ) external view returns (Interest.Index memory); /** * Get the price oracle address for a market. * * @param marketId The market to query * @return The price oracle address */ function getMarketPriceOracle( uint256 marketId ) external view returns (IPriceOracle); /** * Get the interest-setter address for a market. * * @param marketId The market to query * @return The interest-setter address */ function getMarketInterestSetter( uint256 marketId ) external view returns (IInterestSetter); /** * Get the margin premium for a market. A margin premium makes it so that any positions that * include the market require a higher collateralization to avoid being liquidated. * * @param marketId The market to query * @return The market's margin premium */ function getMarketMarginPremium( uint256 marketId ) external view returns (Decimal.D256 memory); /** * Get the spread premium for a market. A spread premium makes it so that any liquidations * that include the market have a higher spread than the global default. * * @param marketId The market to query * @return The market's spread premium */ function getMarketSpreadPremium( uint256 marketId ) external view returns (Decimal.D256 memory); /** * Return true if this market can be removed and its ID can be recycled and reused * * @param marketId The market to query * @return True if the market is recyclable */ function getMarketIsRecyclable( uint256 marketId ) external view returns (bool); /** * Gets the recyclable markets, up to `n` length. If `n` is greater than the length of the list, 0's are returned * for the empty slots. * * @param n The number of markets to get, bounded by the linked list being smaller than `n` * @return The list of recyclable markets, in the same order held by the linked list */ function getRecyclableMarkets( uint256 n ) external view returns (uint[] memory); /** * Get the current borrower interest rate for a market. * * @param marketId The market to query * @return The current interest rate */ function getMarketInterestRate( uint256 marketId ) external view returns (Interest.Rate memory); /** * Get basic information about a particular market. * * @param marketId The market to query * @return A Storage.Market struct with the current state of the market */ function getMarket( uint256 marketId ) external view returns (Storage.Market memory); /** * Get comprehensive information about a particular market. * * @param marketId The market to query * @return A tuple containing the values: * - A Storage.Market struct with the current state of the market * - The current estimated interest index * - The current token price * - The current market interest rate */ function getMarketWithInfo( uint256 marketId ) external view returns ( Storage.Market memory, Interest.Index memory, Monetary.Price memory, Interest.Rate memory ); /** * Get the number of excess tokens for a market. The number of excess tokens is calculated by taking the current * number of tokens held in DolomiteMargin, adding the number of tokens owed to DolomiteMargin by borrowers, and * subtracting the number of tokens owed to suppliers by DolomiteMargin. * * @param marketId The market to query * @return The number of excess tokens */ function getNumExcessTokens( uint256 marketId ) external view returns (Types.Wei memory); // ============ Getters for Accounts ============ /** * Get the principal value for a particular account and market. * * @param account The account to query * @param marketId The market to query * @return The principal value */ function getAccountPar( Account.Info calldata account, uint256 marketId ) external view returns (Types.Par memory); /** * Get the principal value for a particular account and market, with no check the market is valid. Meaning, markets * that don't exist return 0. * * @param account The account to query * @param marketId The market to query * @return The principal value */ function getAccountParNoMarketCheck( Account.Info calldata account, uint256 marketId ) external view returns (Types.Par memory); /** * Get the token balance for a particular account and market. * * @param account The account to query * @param marketId The market to query * @return The token amount */ function getAccountWei( Account.Info calldata account, uint256 marketId ) external view returns (Types.Wei memory); /** * Get the status of an account (Normal, Liquidating, or Vaporizing). * * @param account The account to query * @return The account's status */ function getAccountStatus( Account.Info calldata account ) external view returns (Account.Status); /** * Get a list of markets that have a non-zero balance for an account * * @param account The account to query * @return The non-sorted marketIds with non-zero balance for the account. */ function getAccountMarketsWithBalances( Account.Info calldata account ) external view returns (uint256[] memory); /** * Get the number of markets that have a non-zero balance for an account * * @param account The account to query * @return The non-sorted marketIds with non-zero balance for the account. */ function getAccountNumberOfMarketsWithBalances( Account.Info calldata account ) external view returns (uint256); /** * Get the marketId for an account's market with a non-zero balance at the given index * * @param account The account to query * @return The non-sorted marketIds with non-zero balance for the account. */ function getAccountMarketWithBalanceAtIndex( Account.Info calldata account, uint256 index ) external view returns (uint256); /** * Get the number of markets with which an account has a negative balance. * * @param account The account to query * @return The non-sorted marketIds with non-zero balance for the account. */ function getAccountNumberOfMarketsWithDebt( Account.Info calldata account ) external view returns (uint256); /** * Get the total supplied and total borrowed value of an account. * * @param account The account to query * @return The following values: * - The supplied value of the account * - The borrowed value of the account */ function getAccountValues( Account.Info calldata account ) external view returns (Monetary.Value memory, Monetary.Value memory); /** * Get the total supplied and total borrowed values of an account adjusted by the marginPremium * of each market. Supplied values are divided by (1 + marginPremium) for each market and * borrowed values are multiplied by (1 + marginPremium) for each market. Comparing these * adjusted values gives the margin-ratio of the account which will be compared to the global * margin-ratio when determining if the account can be liquidated. * * @param account The account to query * @return The following values: * - The supplied value of the account (adjusted for marginPremium) * - The borrowed value of the account (adjusted for marginPremium) */ function getAdjustedAccountValues( Account.Info calldata account ) external view returns (Monetary.Value memory, Monetary.Value memory); /** * Get an account's summary for each market. * * @param account The account to query * @return The following values: * - The market IDs for each market * - The ERC20 token address for each market * - The account's principal value for each market * - The account's (supplied or borrowed) number of tokens for each market */ function getAccountBalances( Account.Info calldata account ) external view returns (uint[] memory, address[] memory, Types.Par[] memory, Types.Wei[] memory); // ============ Getters for Account Permissions ============ /** * Return true if a particular address is approved as an operator for an owner's accounts. * Approved operators can act on the accounts of the owner as if it were the operator's own. * * @param owner The owner of the accounts * @param operator The possible operator * @return True if operator is approved for owner's accounts */ function getIsLocalOperator( address owner, address operator ) external view returns (bool); /** * Return true if a particular address is approved as a global operator. Such an address can * act on any account as if it were the operator's own. * * @param operator The address to query * @return True if operator is a global operator */ function getIsGlobalOperator( address operator ) external view returns (bool); /** * Checks if the autoTrader can only be called invoked by a global operator * * @param autoTrader The trader that should be checked for special call privileges. */ function getIsAutoTraderSpecial(address autoTrader) external view returns (bool); // ============ Getters for Risk Params ============ /** * Get the global minimum margin-ratio that every position must maintain to prevent being * liquidated. * * @return The global margin-ratio */ function getMarginRatio() external view returns (Decimal.D256 memory); /** * Get the global liquidation spread. This is the spread between oracle prices that incentivizes * the liquidation of risky positions. * * @return The global liquidation spread */ function getLiquidationSpread() external view returns (Decimal.D256 memory); /** * Get the adjusted liquidation spread for some market pair. This is equal to the global * liquidation spread multiplied by (1 + spreadPremium) for each of the two markets. * * @param heldMarketId The market for which the account has collateral * @param owedMarketId The market for which the account has borrowed tokens * @return The adjusted liquidation spread */ function getLiquidationSpreadForPair( uint256 heldMarketId, uint256 owedMarketId ) external view returns (Decimal.D256 memory); /** * Get the global earnings-rate variable that determines what percentage of the interest paid * by borrowers gets passed-on to suppliers. * * @return The global earnings rate */ function getEarningsRate() external view returns (Decimal.D256 memory); /** * Get the global minimum-borrow value which is the minimum value of any new borrow on DolomiteMargin. * * @return The global minimum borrow value */ function getMinBorrowedValue() external view returns (Monetary.Value memory); /** * Get all risk parameters in a single struct. * * @return All global risk parameters */ function getRiskParams() external view returns (Storage.RiskParams memory); /** * Get all risk parameter limits in a single struct. These are the maximum limits at which the * risk parameters can be set by the admin of DolomiteMargin. * * @return All global risk parameter limits */ function getRiskLimits() external view returns (Storage.RiskLimits memory); // ============ Write Functions ============ /** * The main entry-point to DolomiteMargin that allows users and contracts to manage accounts. * Take one or more actions on one or more accounts. The msg.sender must be the owner or * operator of all accounts except for those being liquidated, vaporized, or traded with. * One call to operate() is considered a singular "operation". Account collateralization is * ensured only after the completion of the entire operation. * * @param accounts A list of all accounts that will be used in this operation. Cannot contain * duplicates. In each action, the relevant account will be referred-to by its * index in the list. * @param actions An ordered list of all actions that will be taken in this operation. The * actions will be processed in order. */ function operate( Account.Info[] calldata accounts, Actions.ActionArgs[] calldata actions ) external; /** * Approves/disapproves any number of operators. An operator is an external address that has the * same permissions to manipulate an account as the owner of the account. Operators are simply * addresses and therefore may either be externally-owned Ethereum accounts OR smart contracts. * * Operators are also able to act as AutoTrader contracts on behalf of the account owner if the * operator is a smart contract and implements the IAutoTrader interface. * * @param args A list of OperatorArgs which have an address and a boolean. The boolean value * denotes whether to approve (true) or revoke approval (false) for that address. */ function setOperators( Types.OperatorArg[] calldata args ) external; }
pragma solidity ^0.5.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. * * _Since v2.5.0:_ this module is now much more gas efficient, given net gas * metering changes introduced in the Istanbul hardfork. */ contract ReentrancyGuard { bool private _notEntered; constructor () internal { // Storing an initial non-zero value makes deployment a bit more // expensive, but in exchange the refund on every call to nonReentrant // will be lower in amount. Since refunds are capped to a percetange of // the total transaction's gas, it is best to keep them low in cases // like this one, to increase the likelihood of the full refund coming // into effect. _notEntered = true; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_notEntered, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _notEntered = false; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _notEntered = true; } }
/* Copyright 2021 Dolomite. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.4; interface IWETH { function deposit() external payable; function transfer(address to, uint value) external returns (bool); function withdraw(uint) external; function balanceOf(address) external view returns (uint); function approve(address spender, uint allowance) external returns (bool); }
/* Copyright 2021 Dolomite. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { Account } from "../../protocol/lib/Account.sol"; import { Monetary } from "../../protocol/lib/Monetary.sol"; /** * @title IExpiry * @author Dolomite */ contract IExpiry { // ============ Enums ============ enum CallFunctionType { SetExpiry, SetApproval } // ============ Structs ============ struct SetExpiryArg { Account.Info account; uint256 marketId; uint32 timeDelta; bool forceUpdate; } struct SetApprovalArg { address sender; uint32 minTimeDelta; } function getSpreadAdjustedPrices( uint256 heldMarketId, uint256 owedMarketId, uint32 expiry ) public view returns (Monetary.Price memory heldPrice, Monetary.Price memory owedPriceAdj); function getExpiry( Account.Info memory account, uint256 marketId ) public view returns (uint32); }
/* Copyright 2021 Dolomite. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; import { AccountBalanceHelper } from "../helpers/AccountBalanceHelper.sol"; interface IDepositWithdrawalProxy { /** * @param _toAccountIndex The index into which `msg.sender` will be depositing * @param _marketId The ID of the market being deposited * @param _amountWei The amount, in Wei, to deposit. Use `uint(-1)` to deposit `msg.sender`'s entire balance */ function depositWei( uint256 _toAccountIndex, uint256 _marketId, uint256 _amountWei ) external; /** * Same as `depositWei` but converts the `msg.sender`'s sent ETH into WETH before depositing into `DolomiteMargin`. * * @param _toAccountIndex The index into which `msg.sender` will be depositing */ function depositETH( uint256 _toAccountIndex ) external payable; /** * @dev Same as `depositWei` but defaults to account index 0 to save additional call data * * @param _marketId The ID of the market being deposited * @param _amountWei The amount, in Wei, to deposit. Use `uint(-1)` to deposit `msg.sender`'s entire balance */ function depositWeiIntoDefaultAccount( uint256 _marketId, uint256 _amountWei ) external; /** * Same as `depositWeiIntoDefaultAccount` but converts the `msg.sender`'s sent ETH into WETH before depositing into * `DolomiteMargin`. */ function depositETHIntoDefaultAccount() external payable; /** * @param _fromAccountIndex The index from which `msg.sender` will be withdrawing * @param _marketId The ID of the market being withdrawn * @param _amountWei The amount, in Wei, to withdraw. Use `uint(-1)` to withdraw `msg.sender`'s entire * balance * @param _balanceCheckFlag Use `BalanceCheckFlag.Both` or `BalanceCheckFlag.From` to check that `_fromAccountIndex` * balance is non-negative after the withdrawal settles. */ function withdrawWei( uint256 _fromAccountIndex, uint256 _marketId, uint256 _amountWei, AccountBalanceHelper.BalanceCheckFlag _balanceCheckFlag ) external; /** * Same as `withdrawWei` but for withdrawing ETH. The user will receive unwrapped ETH from DolomiteMargin. * * @param _fromAccountIndex The index from which `msg.sender` will be withdrawing * @param _amountWei The amount, in Wei, to withdraw. Use `uint(-1)` to withdraw `msg.sender`'s entire * balance. * @param _balanceCheckFlag Use `BalanceCheckFlag.Both` or `BalanceCheckFlag.From` to check that `_fromAccountIndex` * balance is non-negative after the withdrawal settles. */ function withdrawETH( uint256 _fromAccountIndex, uint256 _amountWei, AccountBalanceHelper.BalanceCheckFlag _balanceCheckFlag ) external; /** * @dev Same as `withdrawWei` but defaults to account index 0 to save additional call data * * @param _marketId The ID of the market being withdrawn * @param _amountWei The amount, in Wei, to withdraw. Use `uint(-1)` to withdraw `msg.sender`'s entire * balance * @param _balanceCheckFlag Use `BalanceCheckFlag.Both` or `BalanceCheckFlag.From` to check that `_fromAccountIndex` * balance is non-negative after the withdrawal settles. */ function withdrawWeiFromDefaultAccount( uint256 _marketId, uint256 _amountWei, AccountBalanceHelper.BalanceCheckFlag _balanceCheckFlag ) external; /** * Same as `withdrawWeiFromDefaultAccount` but for withdrawing ETH. The user will receive unwrapped ETH from * DolomiteMargin. * * @param _amountWei The amount, in Wei, to withdraw. Use `uint(-1)` to withdraw `msg.sender`'s entire * balance * @param _balanceCheckFlag Use `BalanceCheckFlag.Both` or `BalanceCheckFlag.From` to check that `_fromAccountIndex` * balance is non-negative after the withdrawal settles. */ function withdrawETHFromDefaultAccount( uint256 _amountWei, AccountBalanceHelper.BalanceCheckFlag _balanceCheckFlag ) external; /** * @param _toAccountIndex The index into which `msg.sender` will be depositing * @param _marketId The ID of the market being deposited * @param _amountPar The amount, in Par, to deposit. */ function depositPar( uint256 _toAccountIndex, uint256 _marketId, uint256 _amountPar ) external; /** * @dev Same as `depositPar` but defaults to account index 0 to save additional call data * * @param _marketId The ID of the market being deposited * @param _amountPar The amount, in Par, to deposit. */ function depositParIntoDefaultAccount( uint256 _marketId, uint256 _amountPar ) external; /** * @param _fromAccountIndex The index from which `msg.sender` will be withdrawing * @param _marketId The ID of the market being withdrawn * @param _amountPar The amount, in Par, to withdraw. Use `uint(-1)` to withdraw `msg.sender`'s entire * balance * @param _balanceCheckFlag Use `BalanceCheckFlag.Both` or `BalanceCheckFlag.From` to check that `_fromAccountIndex` * balance is non-negative after the withdrawal settles. */ function withdrawPar( uint256 _fromAccountIndex, uint256 _marketId, uint256 _amountPar, AccountBalanceHelper.BalanceCheckFlag _balanceCheckFlag ) external; /** * @dev Same as `withdrawPar` but defaults to account index 0 to save additional call data * * @param _marketId The ID of the market being withdrawn * @param _amountPar The amount, in Par, to withdraw. Use `uint(-1)` to withdraw `msg.sender`'s entire balance * @param _balanceCheckFlag Use `BalanceCheckFlag.Both` or `BalanceCheckFlag.From` to check that `_fromAccountIndex` * balance is non-negative after the withdrawal settles. */ function withdrawParFromDefaultAccount( uint256 _marketId, uint256 _amountPar, AccountBalanceHelper.BalanceCheckFlag _balanceCheckFlag ) external; }
/* Copyright 2022 Dolomite. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { IDolomiteMargin } from "../../protocol/interfaces/IDolomiteMargin.sol"; import { Require } from "../../protocol/lib/Require.sol"; /** * @title OnlyDolomiteMargin * @author Dolomite * * Inheritable contract that restricts the calling of certain functions to DolomiteMargin only */ contract OnlyDolomiteMargin { // ============ Constants ============ bytes32 constant FILE = "OnlyDolomiteMargin"; // ============ Storage ============ IDolomiteMargin public DOLOMITE_MARGIN; // ============ Constructor ============ constructor ( address _dolomiteMargin ) public { DOLOMITE_MARGIN = IDolomiteMargin(_dolomiteMargin); } // ============ Modifiers ============ modifier onlyDolomiteMargin(address _from) { Require.that( _from == address(DOLOMITE_MARGIN), FILE, "Only Dolomite can call function", _from ); _; } }
/* Copyright 2022 Dolomite. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { IDolomiteMargin } from "../../protocol/interfaces/IDolomiteMargin.sol"; import { Account } from "../../protocol/lib/Account.sol"; import { Require } from "../../protocol/lib/Require.sol"; import { Types } from "../../protocol/lib/Types.sol"; /** * @title AccountBalanceHelper * @author Dolomite * * Library contract that checks a user's balance after transaction to be non-negative */ library AccountBalanceHelper { using Types for Types.Par; // ============ Constants ============ bytes32 constant FILE = "AccountBalanceHelper"; // ============ Types ============ /// Checks that either BOTH, FROM, or TO accounts all have non-negative balances enum BalanceCheckFlag { Both, From, To, None } // ============ Functions ============ /** * Checks that the account's balance is non-negative. Reverts if the check fails */ function verifyBalanceIsNonNegative( IDolomiteMargin dolomiteMargin, address _owner, uint256 _accountIndex, uint256 _marketId ) internal view { Account.Info memory account = Account.Info(_owner, _accountIndex); Types.Par memory par = dolomiteMargin.getAccountPar(account, _marketId); Require.that( par.isPositive() || par.isZero(), FILE, "account cannot go negative", _owner, _accountIndex, _marketId ); } }
/* Copyright 2022 Dolomite. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ pragma solidity ^0.5.7; pragma experimental ABIEncoderV2; import { IDolomiteMargin } from "../../protocol/interfaces/IDolomiteMargin.sol"; import { Account } from "../../protocol/lib/Account.sol"; import { Actions } from "../../protocol/lib/Actions.sol"; import { Require } from "../../protocol/lib/Require.sol"; import { Types } from "../../protocol/lib/Types.sol"; import { IExpiry } from "../interfaces/IExpiry.sol"; import { AccountBalanceHelper } from "./AccountBalanceHelper.sol"; /** * @title AccountActionHelper * @author Dolomite * * Library contract that makes specific actions easy to call */ library AccountActionHelper { // ============ Constants ============ bytes32 constant FILE = "AccountActionHelper"; uint256 constant ALL = uint256(-1); // ============ Functions ============ function all() internal pure returns (uint256) { return ALL; } function deposit( IDolomiteMargin _dolomiteMargin, address _accountOwner, address _fromAccount, uint256 _toAccountNumber, uint256 _marketId, Types.AssetAmount memory _amount ) internal { Account.Info[] memory accounts = new Account.Info[](1); accounts[0] = Account.Info({ owner: _accountOwner, number: _toAccountNumber }); Actions.ActionArgs[] memory actions = new Actions.ActionArgs[](1); actions[0] = Actions.ActionArgs({ actionType: Actions.ActionType.Deposit, accountId: 0, amount: _amount, primaryMarketId: _marketId, secondaryMarketId: 0, otherAddress: _fromAccount, otherAccountId: 0, data: bytes("") }); _dolomiteMargin.operate(accounts, actions); } /** * Withdraws `_marketId` from `_fromAccount` to `_toAccount` */ function withdraw( IDolomiteMargin _dolomiteMargin, address _accountOwner, uint256 _fromAccountNumber, address _toAccount, uint256 _marketId, Types.AssetAmount memory _amount, AccountBalanceHelper.BalanceCheckFlag _balanceCheckFlag ) internal { Account.Info[] memory accounts = new Account.Info[](1); accounts[0] = Account.Info({ owner: _accountOwner, number: _fromAccountNumber }); Actions.ActionArgs[] memory actions = new Actions.ActionArgs[](1); actions[0] = Actions.ActionArgs({ actionType: Actions.ActionType.Withdraw, accountId: 0, amount: _amount, primaryMarketId: _marketId, secondaryMarketId: 0, otherAddress: _toAccount, otherAccountId: 0, data: bytes("") }); _dolomiteMargin.operate(accounts, actions); if ( _balanceCheckFlag == AccountBalanceHelper.BalanceCheckFlag.Both || _balanceCheckFlag == AccountBalanceHelper.BalanceCheckFlag.From ) { AccountBalanceHelper.verifyBalanceIsNonNegative( _dolomiteMargin, accounts[0].owner, _fromAccountNumber, _marketId ); } } /** * Transfers `_marketId` from `_fromAccount` to `_toAccount` */ function transfer( IDolomiteMargin _dolomiteMargin, address _accountOwner, uint256 _fromAccountNumber, uint256 _toAccountNumber, uint256 _marketId, Types.AssetAmount memory _amount, AccountBalanceHelper.BalanceCheckFlag _balanceCheckFlag ) internal { Account.Info[] memory accounts = new Account.Info[](2); accounts[0] = Account.Info({ owner: _accountOwner, number: _fromAccountNumber }); accounts[1] = Account.Info({ owner: _accountOwner, number: _toAccountNumber }); Actions.ActionArgs[] memory actions = new Actions.ActionArgs[](1); actions[0] = Actions.ActionArgs({ actionType: Actions.ActionType.Transfer, accountId: 0, amount: _amount, primaryMarketId: _marketId, secondaryMarketId: 0, otherAddress: address(0), otherAccountId: 1, data: bytes("") }); _dolomiteMargin.operate(accounts, actions); if ( _balanceCheckFlag == AccountBalanceHelper.BalanceCheckFlag.Both || _balanceCheckFlag == AccountBalanceHelper.BalanceCheckFlag.From ) { AccountBalanceHelper.verifyBalanceIsNonNegative( _dolomiteMargin, _accountOwner, _fromAccountNumber, _marketId ); } if ( _balanceCheckFlag == AccountBalanceHelper.BalanceCheckFlag.Both || _balanceCheckFlag == AccountBalanceHelper.BalanceCheckFlag.To ) { AccountBalanceHelper.verifyBalanceIsNonNegative( _dolomiteMargin, _accountOwner, _toAccountNumber, _marketId ); } } function encodeExpirationAction( Account.Info memory _account, uint256 _accountId, uint256 _owedMarketId, address _expiry, uint256 _expiryTimeDelta ) internal pure returns (Actions.ActionArgs memory) { Require.that( _expiryTimeDelta == uint32(_expiryTimeDelta), FILE, "invalid expiry time" ); IExpiry.SetExpiryArg[] memory expiryArgs = new IExpiry.SetExpiryArg[](1); expiryArgs[0] = IExpiry.SetExpiryArg({ account : _account, marketId : _owedMarketId, timeDelta : uint32(_expiryTimeDelta), forceUpdate : true }); return Actions.ActionArgs({ actionType : Actions.ActionType.Call, accountId : _accountId, // solium-disable-next-line arg-overflow amount : Types.AssetAmount(true, Types.AssetDenomination.Wei, Types.AssetReference.Delta, 0), primaryMarketId : 0, secondaryMarketId : 0, otherAddress : _expiry, otherAccountId : 0, data : abi.encode(IExpiry.CallFunctionType.SetExpiry, expiryArgs) }); } function encodeExpiryLiquidateAction( uint256 _solidAccountId, uint256 _liquidAccountId, uint256 _owedMarketId, uint256 _heldMarketId, address _expiryProxy, uint32 _expiry, bool _flipMarkets ) internal pure returns (Actions.ActionArgs memory) { return Actions.ActionArgs({ actionType: Actions.ActionType.Trade, accountId: _solidAccountId, amount: Types.AssetAmount({ sign: true, denomination: Types.AssetDenomination.Wei, ref: Types.AssetReference.Target, value: 0 }), primaryMarketId: !_flipMarkets ? _owedMarketId : _heldMarketId, secondaryMarketId: !_flipMarkets ? _heldMarketId : _owedMarketId, otherAddress: _expiryProxy, otherAccountId: _liquidAccountId, data: abi.encode(_owedMarketId, _expiry) }); } function encodeLiquidateAction( uint256 _solidAccountId, uint256 _liquidAccountId, uint256 _owedMarketId, uint256 _heldMarketId, uint256 _owedWeiToLiquidate ) internal pure returns (Actions.ActionArgs memory) { return Actions.ActionArgs({ actionType: Actions.ActionType.Liquidate, accountId: _solidAccountId, amount: Types.AssetAmount({ sign: true, denomination: Types.AssetDenomination.Wei, ref: Types.AssetReference.Delta, value: _owedWeiToLiquidate }), primaryMarketId: _owedMarketId, secondaryMarketId: _heldMarketId, otherAddress: address(0), otherAccountId: _liquidAccountId, data: new bytes(0) }); } function encodeExternalSellAction( uint256 _fromAccountId, uint256 _primaryMarketId, uint256 _secondaryMarketId, address _trader, uint256 _amountInWei, uint256 _amountOutMinWei, bytes memory _orderData ) internal pure returns (Actions.ActionArgs memory) { return Actions.ActionArgs({ actionType : Actions.ActionType.Sell, accountId : _fromAccountId, // solium-disable-next-line arg-overflow amount : Types.AssetAmount(false, Types.AssetDenomination.Wei, Types.AssetReference.Delta, _amountInWei), primaryMarketId : _primaryMarketId, secondaryMarketId : _secondaryMarketId, otherAddress : _trader, otherAccountId : 0, data : abi.encode(_amountOutMinWei, _orderData) }); } function encodeInternalTradeAction( uint256 _fromAccountId, uint256 _toAccountId, uint256 _primaryMarketId, uint256 _secondaryMarketId, address _traderAddress, uint256 _amountInWei, uint256 _amountOutWei ) internal pure returns (Actions.ActionArgs memory) { return Actions.ActionArgs({ actionType : Actions.ActionType.Trade, accountId : _fromAccountId, // solium-disable-next-line arg-overflow amount : Types.AssetAmount(true, Types.AssetDenomination.Wei, Types.AssetReference.Delta, _amountInWei), primaryMarketId : _primaryMarketId, secondaryMarketId : _secondaryMarketId, otherAddress : _traderAddress, otherAccountId : _toAccountId, data : abi.encode(_amountOutWei) }); } function encodeTransferAction( uint256 _fromAccountId, uint256 _toAccountId, uint256 _marketId, uint256 _amount ) internal pure returns (Actions.ActionArgs memory) { Types.AssetAmount memory assetAmount; if (_amount == uint(- 1)) { assetAmount = Types.AssetAmount( true, Types.AssetDenomination.Wei, Types.AssetReference.Target, 0 ); } else { assetAmount = Types.AssetAmount( false, Types.AssetDenomination.Wei, Types.AssetReference.Delta, _amount ); } return Actions.ActionArgs({ actionType : Actions.ActionType.Transfer, accountId : _fromAccountId, amount : assetAmount, primaryMarketId : _marketId, secondaryMarketId : 0, otherAddress : address(0), otherAccountId : _toAccountId, data : bytes("") }); } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 10000 }, "evmVersion": "istanbul", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_dolomiteMargin","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"DOLOMITE_MARGIN","outputs":[{"internalType":"contract IDolomiteMargin","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_toAccountNumber","type":"uint256"}],"name":"depositETH","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"depositETHIntoDefaultAccount","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_toAccountNumber","type":"uint256"},{"internalType":"uint256","name":"_marketId","type":"uint256"},{"internalType":"uint256","name":"_amountPar","type":"uint256"}],"name":"depositPar","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_marketId","type":"uint256"},{"internalType":"uint256","name":"_amountPar","type":"uint256"}],"name":"depositParIntoDefaultAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_toAccountNumber","type":"uint256"},{"internalType":"uint256","name":"_marketId","type":"uint256"},{"internalType":"uint256","name":"_amountWei","type":"uint256"}],"name":"depositWei","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_marketId","type":"uint256"},{"internalType":"uint256","name":"_amountWei","type":"uint256"}],"name":"depositWeiIntoDefaultAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"_weth","type":"address"}],"name":"initializeETHMarket","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_fromAccountNumber","type":"uint256"},{"internalType":"uint256","name":"_amountWei","type":"uint256"},{"internalType":"enum AccountBalanceHelper.BalanceCheckFlag","name":"_balanceCheckFlag","type":"uint8"}],"name":"withdrawETH","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_amountWei","type":"uint256"},{"internalType":"enum AccountBalanceHelper.BalanceCheckFlag","name":"_balanceCheckFlag","type":"uint8"}],"name":"withdrawETHFromDefaultAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_fromAccountNumber","type":"uint256"},{"internalType":"uint256","name":"_marketId","type":"uint256"},{"internalType":"uint256","name":"_amountPar","type":"uint256"},{"internalType":"enum AccountBalanceHelper.BalanceCheckFlag","name":"_balanceCheckFlag","type":"uint8"}],"name":"withdrawPar","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_marketId","type":"uint256"},{"internalType":"uint256","name":"_amountPar","type":"uint256"},{"internalType":"enum AccountBalanceHelper.BalanceCheckFlag","name":"_balanceCheckFlag","type":"uint8"}],"name":"withdrawParFromDefaultAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_fromAccountNumber","type":"uint256"},{"internalType":"uint256","name":"_marketId","type":"uint256"},{"internalType":"uint256","name":"_amountWei","type":"uint256"},{"internalType":"enum AccountBalanceHelper.BalanceCheckFlag","name":"_balanceCheckFlag","type":"uint8"}],"name":"withdrawWei","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_marketId","type":"uint256"},{"internalType":"uint256","name":"_amountWei","type":"uint256"},{"internalType":"enum AccountBalanceHelper.BalanceCheckFlag","name":"_balanceCheckFlag","type":"uint8"}],"name":"withdrawWeiFromDefaultAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620028763803806200287683398101604081905262000034916200007b565b6000805460ff60a01b196001600160a01b039093166001600160a01b03199091161791909116600160a01b179055620000d0565b80516200007581620000b6565b92915050565b6000602082840312156200008e57600080fd5b60006200009c848462000068565b949350505050565b60006001600160a01b03821662000075565b620000c181620000a4565b8114620000cd57600080fd5b50565b61279680620000e06000396000f3fe6080604052600436106100dd5760003560e01c8063bc6efe311161007f578063d2484bb911610059578063d2484bb914610283578063d8ddf431146102a3578063e9ed3d30146102c3578063fe491ee7146102cb576100dd565b8063bc6efe3114610223578063c38fd74e14610243578063cfeb65fe14610263576100dd565b80636e4bb3b5116100bb5780636e4bb3b5146101a35780637e54cf02146101c3578063807cb86a146101e3578063822bcd5a14610203576100dd565b8063122373191461014557806315c14a4a146101655780635358fbda14610190575b6001546101439073ffffffffffffffffffffffffffffffffffffffff1633147f4465706f7369745769746864726177616c50726f7879000000000000000000007f696e76616c6964204554482073656e64657200000000000000000000000000006102eb565b005b34801561015157600080fd5b50610143610160366004611f26565b610387565b34801561017157600080fd5b5061017a610467565b6040516101879190612533565b60405180910390f35b61014361019e366004611eb0565b610483565b3480156101af57600080fd5b506101436101be366004611eec565b6105c0565b3480156101cf57600080fd5b506101436101de366004611fa3565b6106ef565b3480156101ef57600080fd5b506101436101fe366004611f56565b6107c1565b34801561020f57600080fd5b5061014361021e366004611e56565b610855565b34801561022f57600080fd5b5061014361023e366004611f26565b610a60565b34801561024f57600080fd5b5061014361025e366004611fe6565b610b1d565b34801561026f57600080fd5b5061014361027e366004611fe6565b610bee565b34801561028f57600080fd5b5061014361029e366004611f56565b610c85565b3480156102af57600080fd5b506101436102be366004611f56565b610d75565b610143610e0a565b3480156102d757600080fd5b506101436102e6366004611fa3565b610f33565b82610382576102f982610fca565b7f3a2000000000000000000000000000000000000000000000000000000000000061032383610fca565b60405160200161033593929190612418565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905262461bcd60e51b825261037991600401612541565b60405180910390fd5b505050565b60005474010000000000000000000000000000000000000000900460ff166103c15760405162461bcd60e51b815260040161037990612572565b6000805474ff000000000000000000000000000000000000000019811682556040805160808101909152600180825261042e9373ffffffffffffffffffffffffffffffffffffffff909316923392839288919060208201905b815260200160008152602001889052611086565b50506000805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b6003546104d49060ff167f4465706f7369745769746864726177616c50726f7879000000000000000000007f6e6f7420696e697469616c697a656400000000000000000000000000000000006102eb565b60005474010000000000000000000000000000000000000000900460ff1661050e5760405162461bcd60e51b815260040161037990612572565b6000805474ff00000000000000000000000000000000000000001916905561053461123d565b600080546002546040805160808101909152600181526105889373ffffffffffffffffffffffffffffffffffffffff9093169233923092879260208201905b81526020016000815260200134815250611086565b506000805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b6003546106119060ff167f4465706f7369745769746864726177616c50726f7879000000000000000000007f6e6f7420696e697469616c697a656400000000000000000000000000000000006102eb565b60005474010000000000000000000000000000000000000000900460ff1661064b5760405162461bcd60e51b815260040161037990612572565b6000805474ff0000000000000000000000000000000000000000198116825560025460408051608081019091528381526106e79373ffffffffffffffffffffffffffffffffffffffff909316923392909130919060208101845b81526020016000198a146106ba5760006106bd565b60015b60018111156106c857fe5b81526020016000198a146106dc57896106df565b60005b9052876112c2565b61042e6114cf565b60005474010000000000000000000000000000000000000000900460ff166107295760405162461bcd60e51b815260040161037990612572565b6000805474ff0000000000000000000000000000000000000000198116909155604080516080810190915260018082526107879273ffffffffffffffffffffffffffffffffffffffff1691339182918891889190602082019061041a565b50506000805474ff000000000000000000000000000000000000000019167401000000000000000000000000000000000000000017905550565b60005474010000000000000000000000000000000000000000900460ff166107fb5760405162461bcd60e51b815260040161037990612572565b6000805474ff0000000000000000000000000000000000000000198116825560408051608081019091528281526107879273ffffffffffffffffffffffffffffffffffffffff9092169133918290889060208101846106a5565b6003546108a79060ff16157f4465706f7369745769746864726177616c50726f7879000000000000000000007f616c726561647920696e697469616c697a6564000000000000000000000000006102eb565b6003805460017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00909116811790915580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff838116919091179091556000546040517f8fae3be1000000000000000000000000000000000000000000000000000000008152911690638fae3be1906109599084906004016124e5565b60206040518083038186803b15801561097157600080fd5b505afa158015610985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506109a99190810190611ece565b6002556001546000546040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9283169263095ea7b392610a0a92911690600019906004016124f3565b602060405180830381600087803b158015610a2457600080fd5b505af1158015610a38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610a5c9190810190611e74565b5050565b60005474010000000000000000000000000000000000000000900460ff16610a9a5760405162461bcd60e51b815260040161037990612572565b6000805474ff0000000000000000000000000000000000000000198116825560408051608081019091526001815261042e9273ffffffffffffffffffffffffffffffffffffffff909216913391829190879060208101835b8152602001600081526020016000198914610b0d5788610b16565b610b168a611614565b9052611086565b60005474010000000000000000000000000000000000000000900460ff16610b575760405162461bcd60e51b815260040161037990612572565b6000805474ff000000000000000000000000000000000000000019811682556040805160808101909152828152610bb39273ffffffffffffffffffffffffffffffffffffffff90921691339188918391899160208201906106a5565b50506000805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790555050565b60005474010000000000000000000000000000000000000000900460ff16610c285760405162461bcd60e51b815260040161037990612572565b6000805474ff000000000000000000000000000000000000000019811682556040805160808101909152918252610bb39173ffffffffffffffffffffffffffffffffffffffff9091169033908790829088906020810160016106a5565b600354610cd69060ff167f4465706f7369745769746864726177616c50726f7879000000000000000000007f6e6f7420696e697469616c697a656400000000000000000000000000000000006102eb565b60005474010000000000000000000000000000000000000000900460ff16610d105760405162461bcd60e51b815260040161037990612572565b6000805474ff000000000000000000000000000000000000000019811682556002546040805160808101909152838152610d6d9373ffffffffffffffffffffffffffffffffffffffff9093169233928892309260208201906106a5565b6107876114cf565b60005474010000000000000000000000000000000000000000900460ff16610daf5760405162461bcd60e51b815260040161037990612572565b6000805474ff0000000000000000000000000000000000000000198116825560408051608081019091528281526107879273ffffffffffffffffffffffffffffffffffffffff909216913391829088906020810160016106a5565b600354610e5b9060ff167f4465706f7369745769746864726177616c50726f7879000000000000000000007f6e6f7420696e697469616c697a656400000000000000000000000000000000006102eb565b60005474010000000000000000000000000000000000000000900460ff16610e955760405162461bcd60e51b815260040161037990612572565b6000805474ff000000000000000000000000000000000000000019169055610ebb61123d565b60008054600254604080516080810190915260018152610efc9373ffffffffffffffffffffffffffffffffffffffff90931692339230926020810183610573565b6000805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b60005474010000000000000000000000000000000000000000900460ff16610f6d5760405162461bcd60e51b815260040161037990612572565b6000805474ff000000000000000000000000000000000000000019811682556040805160808101909152600181526107879273ffffffffffffffffffffffffffffffffffffffff9092169133918291889188916020820190610af2565b60608082604051602001610fde9190612403565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152919052905060205b80156110695781516000199091019082908290811061102c57fe5b01602001517fff0000000000000000000000000000000000000000000000000000000000000016156110645760010181529050611081565b611011565b5060408051600080825260208201909252905b509150505b919050565b604080516001808252818301909252606091816020015b6110a5611cfd565b81526020019060019003908161109d57905050905060405180604001604052808773ffffffffffffffffffffffffffffffffffffffff16815260200185815250816000815181106110f257fe5b6020908102919091010152604080516001808252818301909252606091816020015b61111c611d14565b815260200190600190039081611114575050604080516101008101909152909150806000815260200160008152602001848152602001858152602001600081526020018773ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160405180602001604052806000815250815250816000815181106111a257fe5b60209081029190910101526040517fa67a6a4500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff89169063a67a6a4590611201908590859060040161250e565b600060405180830381600087803b15801561121b57600080fd5b505af115801561122f573d6000803e3d6000fd5b505050505050505050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b1580156112a757600080fd5b505af11580156112bb573d6000803e3d6000fd5b5050505050565b604080516001808252818301909252606091816020015b6112e1611cfd565b8152602001906001900390816112d957905050905060405180604001604052808873ffffffffffffffffffffffffffffffffffffffff168152602001878152508160008151811061132e57fe5b6020908102919091010152604080516001808252818301909252606091816020015b611358611d14565b815260200190600190039081611350575050604080516101008101909152909150806001815260200160008152602001858152602001868152602001600081526020018773ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160405180602001604052806000815250815250816000815181106113de57fe5b60209081029190910101526040517fa67a6a4500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8a169063a67a6a459061143d908590859060040161250e565b600060405180830381600087803b15801561145757600080fd5b505af115801561146b573d6000803e3d6000fd5b5060009250611478915050565b83600381111561148457fe5b148061149b5750600183600381111561149957fe5b145b156114c4576114c489836000815181106114b157fe5b6020026020010151600001518988611749565b505050505050505050565b6001546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169060009082906370a082319061152a9030906004016124e5565b60206040518083038186803b15801561154257600080fd5b505afa158015611556573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061157a9190810190611ece565b6040517f2e1a7d4d00000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff831690632e1a7d4d906115cf90849060040161259d565b600060405180830381600087803b1580156115e957600080fd5b505af11580156115fd573d6000803e3d6000fd5b50610a5c925033915083905063ffffffff61189816565b600080546040517f062bd3e900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063062bd3e99061166b90859060040161259d565b60206040518083038186803b15801561168357600080fd5b505afa158015611697573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506116bb9190810190611e30565b73ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016116f391906124e5565b60206040518083038186803b15801561170b57600080fd5b505afa15801561171f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506117439190810190611ece565b92915050565b611751611cfd565b60405180604001604052808573ffffffffffffffffffffffffffffffffffffffff168152602001848152509050611786611cfd565b6040517f47d1b53c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8716906347d1b53c906117da9085908790600401612582565b604080518083038186803b1580156117f157600080fd5b505afa158015611805573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506118299190810190611e92565b905061189061183782611941565b80611846575061184682611969565b7f4163636f756e7442616c616e636548656c7065720000000000000000000000007f6163636f756e742063616e6e6f7420676f206e65676174697665000000000000888888611983565b505050505050565b804710156118b85760405162461bcd60e51b815260040161037990612562565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516118de906124da565b60006040518083038185875af1925050503d806000811461191b576040519150601f19603f3d011682016040523d82523d6000602084013e611920565b606091505b50509050806103825760405162461bcd60e51b815260040161037990612552565b80516000908015611743575050602001516fffffffffffffffffffffffffffffffff16151590565b602001516fffffffffffffffffffffffffffffffff161590565b856118905761199185610fca565b7f3a200000000000000000000000000000000000000000000000000000000000006119bb86610fca565b7f203c0000000000000000000000000000000000000000000000000000000000006119e587611a73565b7f2c20000000000000000000000000000000000000000000000000000000000000611a0f88611bea565b7f2c20000000000000000000000000000000000000000000000000000000000000611a3989611bea565b604051610335999897969594939291907f3e0000000000000000000000000000000000000000000000000000000000000090602001612440565b60408051602a808252606082810190935273ffffffffffffffffffffffffffffffffffffffff8416918391602082018180388339019050509050603060f81b81600081518110611abf57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350607860f81b81600181518110611b0057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b601481101561107c5760028102611b4b600f8516611cdb565b838260290381518110611b5a57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600484901c9350611b9c600f8516611cdb565b838260280381518110611bab57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505060049290921c91600101611b32565b606081611c2b575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152611081565b8160005b8115611c4357600101600a82049150611c2f565b6060816040519080825280601f01601f191660200182016040528015611c70576020820181803883390190505b508593509050815b8015611cd25760001901600a840660300160f81b828281518110611c9857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84049350611c78565b50949350505050565b6000600a821015611cf357506030810160f81b611081565b5060570160f81b90565b604080518082019091526000808252602082015290565b604080516101008101825260008082526020820152908101611d34611d73565b81526020016000815260200160008152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160008152602001606081525090565b604080516080810190915260008082526020820190815260200160008152602001600081525090565b805161174381612717565b803561174381612717565b80516117438161272b565b803561174381612734565b600060408284031215611dda57600080fd5b611de460406125ab565b90506000611df28484611db2565b8252506020611e0384848301611e0f565b60208301525092915050565b805161174381612741565b80356117438161274a565b80516117438161274a565b600060208284031215611e4257600080fd5b6000611e4e8484611d9c565b949350505050565b600060208284031215611e6857600080fd5b6000611e4e8484611da7565b600060208284031215611e8657600080fd5b6000611e4e8484611db2565b600060408284031215611ea457600080fd5b6000611e4e8484611dc8565b600060208284031215611ec257600080fd5b6000611e4e8484611e1a565b600060208284031215611ee057600080fd5b6000611e4e8484611e25565b60008060408385031215611eff57600080fd5b6000611f0b8585611e1a565b9250506020611f1c85828601611dbd565b9150509250929050565b60008060408385031215611f3957600080fd5b6000611f458585611e1a565b9250506020611f1c85828601611e1a565b600080600060608486031215611f6b57600080fd5b6000611f778686611e1a565b9350506020611f8886828701611e1a565b9250506040611f9986828701611dbd565b9150509250925092565b600080600060608486031215611fb857600080fd5b6000611fc48686611e1a565b9350506020611fd586828701611e1a565b9250506040611f9986828701611e1a565b60008060008060808587031215611ffc57600080fd5b60006120088787611e1a565b945050602061201987828801611e1a565b935050604061202a87828801611e1a565b925050606061203b87828801611dbd565b91505092959194509250565b600061205383836122df565b9392505050565b600061206683836123da565b505060400190565b61207781612684565b82525050565b612077816125e5565b6000612091826125d8565b61209b81856125dc565b9350836020820285016120ad856125d2565b8060005b858110156120e757848403895281516120ca8582612047565b94506120d5836125d2565b60209a909a01999250506001016120b1565b5091979650505050505050565b60006120ff826125d8565b61210981856125dc565b9350612114836125d2565b8060005b8381101561214257815161212c888261205a565b9750612137836125d2565b925050600101612118565b509495945050505050565b612077816125f0565b612077612162826125f5565b61263f565b6120776121628261261a565b6120776121628261263f565b600061218a826125d8565b6121948185611081565b93506121a48185602086016126ac565b9290920192915050565b60006121b9826125d8565b6121c381856125dc565b93506121d38185602086016126ac565b6121dc816126d8565b9093019392505050565b6120778161268b565b61207781612696565b612077816126a1565b600061220e603a836125dc565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207281527f6563697069656e74206d61792068617665207265766572746564000000000000602082015260400192915050565b600061226d601d836125dc565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000815260200192915050565b6000611743600083611081565b60006122b3601f836125dc565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00815260200192915050565b80516000906101608401906122f485826121ef565b50602083015161230760208601826123fa565b50604083015161231a604086018261238a565b50606083015161232d60c08601826123fa565b50608083015161234060e08601826123fa565b5060a083015161235461010086018261207d565b5060c08301516123686101208601826123fa565b5060e083015184820361014086015261238182826121ae565b95945050505050565b8051608083019061239b848261214d565b5060208201516123ae60208501826121f8565b5060408201516123c160408501826121f8565b5060608201516123d460608501826123fa565b50505050565b805160408301906123eb848261207d565b5060208201516123d460208501825b6120778161263f565b600061240f8284612173565b50602001919050565b6000612424828661217f565b91506124308285612167565b600282019150612381828461217f565b600061244c828d61217f565b9150612458828c612167565b600282019150612468828b61217f565b9150612474828a612167565b600282019150612484828961217f565b91506124908288612167565b6002820191506124a0828761217f565b91506124ac8286612167565b6002820191506124bc828561217f565b91506124c88284612156565b506001019a9950505050505050505050565b600061174382612299565b60208101611743828461206e565b60408101612501828561207d565b61205360208301846123fa565b6040808252810161251f81856120f4565b90508181036020830152611e4e8184612086565b6020810161174382846121e6565b6020808252810161205381846121ae565b6020808252810161174381612201565b6020808252810161174381612260565b60208082528101611743816122a6565b6060810161259082856123da565b61205360408301846123fa565b6020810161174382846123fa565b60405181810167ffffffffffffffff811182821017156125ca57600080fd5b604052919050565b60200190565b5190565b90815260200190565b60006117438261266b565b151590565b7fff000000000000000000000000000000000000000000000000000000000000001690565b7fffff0000000000000000000000000000000000000000000000000000000000001690565b90565b8061108181612700565b806110818161270d565b6fffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1690565b6000611743825b6000611743826125e5565b600061174382612642565b60006117438261264c565b60005b838110156126c75781810151838201526020016126af565b838111156123d45750506000910152565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01690565b6009811061270a57fe5b50565b6002811061270a57fe5b612720816125e5565b811461270a57600080fd5b612720816125f0565b6004811061270a57600080fd5b61272081612656565b6127208161263f56fea365627a7a723158200d477759b613ec1de2431317a60d5cddf2d87de96712e0aedb0c0af8ddbe3f016c6578706572696d656e74616cf564736f6c634300051000400000000000000000000000006bd780e7fdf01d77e4d475c821f1e7ae05409072
Deployed Bytecode
0x6080604052600436106100dd5760003560e01c8063bc6efe311161007f578063d2484bb911610059578063d2484bb914610283578063d8ddf431146102a3578063e9ed3d30146102c3578063fe491ee7146102cb576100dd565b8063bc6efe3114610223578063c38fd74e14610243578063cfeb65fe14610263576100dd565b80636e4bb3b5116100bb5780636e4bb3b5146101a35780637e54cf02146101c3578063807cb86a146101e3578063822bcd5a14610203576100dd565b8063122373191461014557806315c14a4a146101655780635358fbda14610190575b6001546101439073ffffffffffffffffffffffffffffffffffffffff1633147f4465706f7369745769746864726177616c50726f7879000000000000000000007f696e76616c6964204554482073656e64657200000000000000000000000000006102eb565b005b34801561015157600080fd5b50610143610160366004611f26565b610387565b34801561017157600080fd5b5061017a610467565b6040516101879190612533565b60405180910390f35b61014361019e366004611eb0565b610483565b3480156101af57600080fd5b506101436101be366004611eec565b6105c0565b3480156101cf57600080fd5b506101436101de366004611fa3565b6106ef565b3480156101ef57600080fd5b506101436101fe366004611f56565b6107c1565b34801561020f57600080fd5b5061014361021e366004611e56565b610855565b34801561022f57600080fd5b5061014361023e366004611f26565b610a60565b34801561024f57600080fd5b5061014361025e366004611fe6565b610b1d565b34801561026f57600080fd5b5061014361027e366004611fe6565b610bee565b34801561028f57600080fd5b5061014361029e366004611f56565b610c85565b3480156102af57600080fd5b506101436102be366004611f56565b610d75565b610143610e0a565b3480156102d757600080fd5b506101436102e6366004611fa3565b610f33565b82610382576102f982610fca565b7f3a2000000000000000000000000000000000000000000000000000000000000061032383610fca565b60405160200161033593929190612418565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529082905262461bcd60e51b825261037991600401612541565b60405180910390fd5b505050565b60005474010000000000000000000000000000000000000000900460ff166103c15760405162461bcd60e51b815260040161037990612572565b6000805474ff000000000000000000000000000000000000000019811682556040805160808101909152600180825261042e9373ffffffffffffffffffffffffffffffffffffffff909316923392839288919060208201905b815260200160008152602001889052611086565b50506000805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b60005473ffffffffffffffffffffffffffffffffffffffff1681565b6003546104d49060ff167f4465706f7369745769746864726177616c50726f7879000000000000000000007f6e6f7420696e697469616c697a656400000000000000000000000000000000006102eb565b60005474010000000000000000000000000000000000000000900460ff1661050e5760405162461bcd60e51b815260040161037990612572565b6000805474ff00000000000000000000000000000000000000001916905561053461123d565b600080546002546040805160808101909152600181526105889373ffffffffffffffffffffffffffffffffffffffff9093169233923092879260208201905b81526020016000815260200134815250611086565b506000805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b6003546106119060ff167f4465706f7369745769746864726177616c50726f7879000000000000000000007f6e6f7420696e697469616c697a656400000000000000000000000000000000006102eb565b60005474010000000000000000000000000000000000000000900460ff1661064b5760405162461bcd60e51b815260040161037990612572565b6000805474ff0000000000000000000000000000000000000000198116825560025460408051608081019091528381526106e79373ffffffffffffffffffffffffffffffffffffffff909316923392909130919060208101845b81526020016000198a146106ba5760006106bd565b60015b60018111156106c857fe5b81526020016000198a146106dc57896106df565b60005b9052876112c2565b61042e6114cf565b60005474010000000000000000000000000000000000000000900460ff166107295760405162461bcd60e51b815260040161037990612572565b6000805474ff0000000000000000000000000000000000000000198116909155604080516080810190915260018082526107879273ffffffffffffffffffffffffffffffffffffffff1691339182918891889190602082019061041a565b50506000805474ff000000000000000000000000000000000000000019167401000000000000000000000000000000000000000017905550565b60005474010000000000000000000000000000000000000000900460ff166107fb5760405162461bcd60e51b815260040161037990612572565b6000805474ff0000000000000000000000000000000000000000198116825560408051608081019091528281526107879273ffffffffffffffffffffffffffffffffffffffff9092169133918290889060208101846106a5565b6003546108a79060ff16157f4465706f7369745769746864726177616c50726f7879000000000000000000007f616c726561647920696e697469616c697a6564000000000000000000000000006102eb565b6003805460017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00909116811790915580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff838116919091179091556000546040517f8fae3be1000000000000000000000000000000000000000000000000000000008152911690638fae3be1906109599084906004016124e5565b60206040518083038186803b15801561097157600080fd5b505afa158015610985573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506109a99190810190611ece565b6002556001546000546040517f095ea7b300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9283169263095ea7b392610a0a92911690600019906004016124f3565b602060405180830381600087803b158015610a2457600080fd5b505af1158015610a38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610a5c9190810190611e74565b5050565b60005474010000000000000000000000000000000000000000900460ff16610a9a5760405162461bcd60e51b815260040161037990612572565b6000805474ff0000000000000000000000000000000000000000198116825560408051608081019091526001815261042e9273ffffffffffffffffffffffffffffffffffffffff909216913391829190879060208101835b8152602001600081526020016000198914610b0d5788610b16565b610b168a611614565b9052611086565b60005474010000000000000000000000000000000000000000900460ff16610b575760405162461bcd60e51b815260040161037990612572565b6000805474ff000000000000000000000000000000000000000019811682556040805160808101909152828152610bb39273ffffffffffffffffffffffffffffffffffffffff90921691339188918391899160208201906106a5565b50506000805474ff00000000000000000000000000000000000000001916740100000000000000000000000000000000000000001790555050565b60005474010000000000000000000000000000000000000000900460ff16610c285760405162461bcd60e51b815260040161037990612572565b6000805474ff000000000000000000000000000000000000000019811682556040805160808101909152918252610bb39173ffffffffffffffffffffffffffffffffffffffff9091169033908790829088906020810160016106a5565b600354610cd69060ff167f4465706f7369745769746864726177616c50726f7879000000000000000000007f6e6f7420696e697469616c697a656400000000000000000000000000000000006102eb565b60005474010000000000000000000000000000000000000000900460ff16610d105760405162461bcd60e51b815260040161037990612572565b6000805474ff000000000000000000000000000000000000000019811682556002546040805160808101909152838152610d6d9373ffffffffffffffffffffffffffffffffffffffff9093169233928892309260208201906106a5565b6107876114cf565b60005474010000000000000000000000000000000000000000900460ff16610daf5760405162461bcd60e51b815260040161037990612572565b6000805474ff0000000000000000000000000000000000000000198116825560408051608081019091528281526107879273ffffffffffffffffffffffffffffffffffffffff909216913391829088906020810160016106a5565b600354610e5b9060ff167f4465706f7369745769746864726177616c50726f7879000000000000000000007f6e6f7420696e697469616c697a656400000000000000000000000000000000006102eb565b60005474010000000000000000000000000000000000000000900460ff16610e955760405162461bcd60e51b815260040161037990612572565b6000805474ff000000000000000000000000000000000000000019169055610ebb61123d565b60008054600254604080516080810190915260018152610efc9373ffffffffffffffffffffffffffffffffffffffff90931692339230926020810183610573565b6000805474ff0000000000000000000000000000000000000000191674010000000000000000000000000000000000000000179055565b60005474010000000000000000000000000000000000000000900460ff16610f6d5760405162461bcd60e51b815260040161037990612572565b6000805474ff000000000000000000000000000000000000000019811682556040805160808101909152600181526107879273ffffffffffffffffffffffffffffffffffffffff9092169133918291889188916020820190610af2565b60608082604051602001610fde9190612403565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152919052905060205b80156110695781516000199091019082908290811061102c57fe5b01602001517fff0000000000000000000000000000000000000000000000000000000000000016156110645760010181529050611081565b611011565b5060408051600080825260208201909252905b509150505b919050565b604080516001808252818301909252606091816020015b6110a5611cfd565b81526020019060019003908161109d57905050905060405180604001604052808773ffffffffffffffffffffffffffffffffffffffff16815260200185815250816000815181106110f257fe5b6020908102919091010152604080516001808252818301909252606091816020015b61111c611d14565b815260200190600190039081611114575050604080516101008101909152909150806000815260200160008152602001848152602001858152602001600081526020018773ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160405180602001604052806000815250815250816000815181106111a257fe5b60209081029190910101526040517fa67a6a4500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff89169063a67a6a4590611201908590859060040161250e565b600060405180830381600087803b15801561121b57600080fd5b505af115801561122f573d6000803e3d6000fd5b505050505050505050505050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b1580156112a757600080fd5b505af11580156112bb573d6000803e3d6000fd5b5050505050565b604080516001808252818301909252606091816020015b6112e1611cfd565b8152602001906001900390816112d957905050905060405180604001604052808873ffffffffffffffffffffffffffffffffffffffff168152602001878152508160008151811061132e57fe5b6020908102919091010152604080516001808252818301909252606091816020015b611358611d14565b815260200190600190039081611350575050604080516101008101909152909150806001815260200160008152602001858152602001868152602001600081526020018773ffffffffffffffffffffffffffffffffffffffff1681526020016000815260200160405180602001604052806000815250815250816000815181106113de57fe5b60209081029190910101526040517fa67a6a4500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8a169063a67a6a459061143d908590859060040161250e565b600060405180830381600087803b15801561145757600080fd5b505af115801561146b573d6000803e3d6000fd5b5060009250611478915050565b83600381111561148457fe5b148061149b5750600183600381111561149957fe5b145b156114c4576114c489836000815181106114b157fe5b6020026020010151600001518988611749565b505050505050505050565b6001546040517f70a0823100000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169060009082906370a082319061152a9030906004016124e5565b60206040518083038186803b15801561154257600080fd5b505afa158015611556573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061157a9190810190611ece565b6040517f2e1a7d4d00000000000000000000000000000000000000000000000000000000815290915073ffffffffffffffffffffffffffffffffffffffff831690632e1a7d4d906115cf90849060040161259d565b600060405180830381600087803b1580156115e957600080fd5b505af11580156115fd573d6000803e3d6000fd5b50610a5c925033915083905063ffffffff61189816565b600080546040517f062bd3e900000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff9091169063062bd3e99061166b90859060040161259d565b60206040518083038186803b15801561168357600080fd5b505afa158015611697573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506116bb9190810190611e30565b73ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b81526004016116f391906124e5565b60206040518083038186803b15801561170b57600080fd5b505afa15801561171f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506117439190810190611ece565b92915050565b611751611cfd565b60405180604001604052808573ffffffffffffffffffffffffffffffffffffffff168152602001848152509050611786611cfd565b6040517f47d1b53c00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8716906347d1b53c906117da9085908790600401612582565b604080518083038186803b1580156117f157600080fd5b505afa158015611805573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506118299190810190611e92565b905061189061183782611941565b80611846575061184682611969565b7f4163636f756e7442616c616e636548656c7065720000000000000000000000007f6163636f756e742063616e6e6f7420676f206e65676174697665000000000000888888611983565b505050505050565b804710156118b85760405162461bcd60e51b815260040161037990612562565b60008273ffffffffffffffffffffffffffffffffffffffff16826040516118de906124da565b60006040518083038185875af1925050503d806000811461191b576040519150601f19603f3d011682016040523d82523d6000602084013e611920565b606091505b50509050806103825760405162461bcd60e51b815260040161037990612552565b80516000908015611743575050602001516fffffffffffffffffffffffffffffffff16151590565b602001516fffffffffffffffffffffffffffffffff161590565b856118905761199185610fca565b7f3a200000000000000000000000000000000000000000000000000000000000006119bb86610fca565b7f203c0000000000000000000000000000000000000000000000000000000000006119e587611a73565b7f2c20000000000000000000000000000000000000000000000000000000000000611a0f88611bea565b7f2c20000000000000000000000000000000000000000000000000000000000000611a3989611bea565b604051610335999897969594939291907f3e0000000000000000000000000000000000000000000000000000000000000090602001612440565b60408051602a808252606082810190935273ffffffffffffffffffffffffffffffffffffffff8416918391602082018180388339019050509050603060f81b81600081518110611abf57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350607860f81b81600181518110611b0057fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060005b601481101561107c5760028102611b4b600f8516611cdb565b838260290381518110611b5a57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600484901c9350611b9c600f8516611cdb565b838260280381518110611bab57fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053505060049290921c91600101611b32565b606081611c2b575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152611081565b8160005b8115611c4357600101600a82049150611c2f565b6060816040519080825280601f01601f191660200182016040528015611c70576020820181803883390190505b508593509050815b8015611cd25760001901600a840660300160f81b828281518110611c9857fe5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a84049350611c78565b50949350505050565b6000600a821015611cf357506030810160f81b611081565b5060570160f81b90565b604080518082019091526000808252602082015290565b604080516101008101825260008082526020820152908101611d34611d73565b81526020016000815260200160008152602001600073ffffffffffffffffffffffffffffffffffffffff16815260200160008152602001606081525090565b604080516080810190915260008082526020820190815260200160008152602001600081525090565b805161174381612717565b803561174381612717565b80516117438161272b565b803561174381612734565b600060408284031215611dda57600080fd5b611de460406125ab565b90506000611df28484611db2565b8252506020611e0384848301611e0f565b60208301525092915050565b805161174381612741565b80356117438161274a565b80516117438161274a565b600060208284031215611e4257600080fd5b6000611e4e8484611d9c565b949350505050565b600060208284031215611e6857600080fd5b6000611e4e8484611da7565b600060208284031215611e8657600080fd5b6000611e4e8484611db2565b600060408284031215611ea457600080fd5b6000611e4e8484611dc8565b600060208284031215611ec257600080fd5b6000611e4e8484611e1a565b600060208284031215611ee057600080fd5b6000611e4e8484611e25565b60008060408385031215611eff57600080fd5b6000611f0b8585611e1a565b9250506020611f1c85828601611dbd565b9150509250929050565b60008060408385031215611f3957600080fd5b6000611f458585611e1a565b9250506020611f1c85828601611e1a565b600080600060608486031215611f6b57600080fd5b6000611f778686611e1a565b9350506020611f8886828701611e1a565b9250506040611f9986828701611dbd565b9150509250925092565b600080600060608486031215611fb857600080fd5b6000611fc48686611e1a565b9350506020611fd586828701611e1a565b9250506040611f9986828701611e1a565b60008060008060808587031215611ffc57600080fd5b60006120088787611e1a565b945050602061201987828801611e1a565b935050604061202a87828801611e1a565b925050606061203b87828801611dbd565b91505092959194509250565b600061205383836122df565b9392505050565b600061206683836123da565b505060400190565b61207781612684565b82525050565b612077816125e5565b6000612091826125d8565b61209b81856125dc565b9350836020820285016120ad856125d2565b8060005b858110156120e757848403895281516120ca8582612047565b94506120d5836125d2565b60209a909a01999250506001016120b1565b5091979650505050505050565b60006120ff826125d8565b61210981856125dc565b9350612114836125d2565b8060005b8381101561214257815161212c888261205a565b9750612137836125d2565b925050600101612118565b509495945050505050565b612077816125f0565b612077612162826125f5565b61263f565b6120776121628261261a565b6120776121628261263f565b600061218a826125d8565b6121948185611081565b93506121a48185602086016126ac565b9290920192915050565b60006121b9826125d8565b6121c381856125dc565b93506121d38185602086016126ac565b6121dc816126d8565b9093019392505050565b6120778161268b565b61207781612696565b612077816126a1565b600061220e603a836125dc565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207281527f6563697069656e74206d61792068617665207265766572746564000000000000602082015260400192915050565b600061226d601d836125dc565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000815260200192915050565b6000611743600083611081565b60006122b3601f836125dc565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00815260200192915050565b80516000906101608401906122f485826121ef565b50602083015161230760208601826123fa565b50604083015161231a604086018261238a565b50606083015161232d60c08601826123fa565b50608083015161234060e08601826123fa565b5060a083015161235461010086018261207d565b5060c08301516123686101208601826123fa565b5060e083015184820361014086015261238182826121ae565b95945050505050565b8051608083019061239b848261214d565b5060208201516123ae60208501826121f8565b5060408201516123c160408501826121f8565b5060608201516123d460608501826123fa565b50505050565b805160408301906123eb848261207d565b5060208201516123d460208501825b6120778161263f565b600061240f8284612173565b50602001919050565b6000612424828661217f565b91506124308285612167565b600282019150612381828461217f565b600061244c828d61217f565b9150612458828c612167565b600282019150612468828b61217f565b9150612474828a612167565b600282019150612484828961217f565b91506124908288612167565b6002820191506124a0828761217f565b91506124ac8286612167565b6002820191506124bc828561217f565b91506124c88284612156565b506001019a9950505050505050505050565b600061174382612299565b60208101611743828461206e565b60408101612501828561207d565b61205360208301846123fa565b6040808252810161251f81856120f4565b90508181036020830152611e4e8184612086565b6020810161174382846121e6565b6020808252810161205381846121ae565b6020808252810161174381612201565b6020808252810161174381612260565b60208082528101611743816122a6565b6060810161259082856123da565b61205360408301846123fa565b6020810161174382846123fa565b60405181810167ffffffffffffffff811182821017156125ca57600080fd5b604052919050565b60200190565b5190565b90815260200190565b60006117438261266b565b151590565b7fff000000000000000000000000000000000000000000000000000000000000001690565b7fffff0000000000000000000000000000000000000000000000000000000000001690565b90565b8061108181612700565b806110818161270d565b6fffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff1690565b6000611743825b6000611743826125e5565b600061174382612642565b60006117438261264c565b60005b838110156126c75781810151838201526020016126af565b838111156123d45750506000910152565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe01690565b6009811061270a57fe5b50565b6002811061270a57fe5b612720816125e5565b811461270a57600080fd5b612720816125f0565b6004811061270a57600080fd5b61272081612656565b6127208161263f56fea365627a7a723158200d477759b613ec1de2431317a60d5cddf2d87de96712e0aedb0c0af8ddbe3f016c6578706572696d656e74616cf564736f6c63430005100040
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000006bd780e7fdf01d77e4d475c821f1e7ae05409072
-----Decoded View---------------
Arg [0] : _dolomiteMargin (address): 0x6Bd780E7fDf01D77e4d475c821f1e7AE05409072
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000006bd780e7fdf01d77e4d475c821f1e7ae05409072
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
MANTLE | 100.00% | $0.70916 | 0.11 | $0.078008 |
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.