Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 7 from a total of 7 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Create New Excha... | 15337135 | 1248 days ago | IN | 0 ETH | 0.02016216 | ||||
| Create New Excha... | 14752183 | 1343 days ago | IN | 0 ETH | 0.122235 | ||||
| Create New Excha... | 14748538 | 1343 days ago | IN | 0 ETH | 0.10548125 | ||||
| Create New Excha... | 14746111 | 1344 days ago | IN | 0 ETH | 0.1133124 | ||||
| Create New Excha... | 14746111 | 1344 days ago | IN | 0 ETH | 0.11209637 | ||||
| Create New Excha... | 14730695 | 1346 days ago | IN | 0 ETH | 0.08587668 | ||||
| Transfer Ownersh... | 14669314 | 1356 days ago | IN | 0 ETH | 0.00122857 |
Latest 6 internal transactions
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| 0x60e06040 | 15337135 | 1248 days ago | Contract Creation | 0 ETH | |||
| - | 14752183 | 1343 days ago | Contract Creation | 0 ETH | |||
| - | 14748538 | 1343 days ago | Contract Creation | 0 ETH | |||
| - | 14746111 | 1344 days ago | Contract Creation | 0 ETH | |||
| - | 14746111 | 1344 days ago | Contract Creation | 0 ETH | |||
| - | 14730695 | 1346 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
ExchangeFactory
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 100000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.4;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "./Exchange.sol";
import "../interfaces/IExchangeFactory.sol";
import "../libraries/SafeMetadata.sol";
/**
* @title ExchangeFactory contract for Elastic Swap.
* @author Elastic DAO
* @notice The ExchangeFactory provides the needed functionality to create new Exchange's that represent
* a single token pair. Additionally it houses records of all deployed Exchange's for validation and easy
* lookup.
*/
contract ExchangeFactory is Ownable, IExchangeFactory {
using SafeMetadata for IERC20;
mapping(address => mapping(address => address))
public exchangeAddressByTokenAddress;
mapping(address => bool) public isValidExchangeAddress;
address private feeAddress_;
// events
event NewExchange(address indexed creator, address indexed exchangeAddress);
event SetFeeAddress(address indexed feeAddress);
constructor(address _feeAddress) {
require(_feeAddress != address(0), "ExchangeFactory: INVALID_ADDRESS");
feeAddress_ = _feeAddress;
}
/**
* @notice called to create a new erc20 token pair exchange
* @param _baseToken address of the ERC20 base token in the pair. This token can have a fixed or elastic supply
* @param _quoteToken address of the ERC20 quote token in the pair. This token is assumed to have a fixed supply.
*/
function createNewExchange(address _baseToken, address _quoteToken)
external
{
require(_baseToken != _quoteToken, "ExchangeFactory: IDENTICAL_TOKENS");
require(
_baseToken != address(0) && _quoteToken != address(0),
"ExchangeFactory: INVALID_TOKEN_ADDRESS"
);
require(
exchangeAddressByTokenAddress[_baseToken][_quoteToken] ==
address(0),
"ExchangeFactory: DUPLICATE_EXCHANGE"
);
string memory baseSymbol = IERC20(_baseToken).safeSymbol();
string memory quoteSymbol = IERC20(_quoteToken).safeSymbol();
Exchange exchange =
new Exchange(
string(
abi.encodePacked(
baseSymbol,
"v",
quoteSymbol,
" ElasticSwap Liquidity Token"
)
),
string(abi.encodePacked(baseSymbol, "v", quoteSymbol, "-ELP")),
_baseToken,
_quoteToken,
address(this)
);
exchangeAddressByTokenAddress[_baseToken][_quoteToken] = address(
exchange
);
isValidExchangeAddress[address(exchange)] = true;
emit NewExchange(msg.sender, address(exchange));
}
function setFeeAddress(address _feeAddress) external onlyOwner {
require(
_feeAddress != address(0) && _feeAddress != feeAddress_,
"ExchangeFactory: INVAlID_FEE_ADDRESS"
);
feeAddress_ = _feeAddress;
emit SetFeeAddress(_feeAddress);
}
function feeAddress() public view virtual override returns (address) {
return feeAddress_;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
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 `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, 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 `from` to `to` 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 from,
address to,
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);
}//SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.4;
import "../libraries/MathLib.sol";
import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "../interfaces/IExchangeFactory.sol";
/**
* @title Exchange contract for Elastic Swap representing a single ERC20 pair of tokens to be swapped.
* @author Elastic DAO
* @notice This contract provides all of the needed functionality for a liquidity provider to supply/withdraw ERC20
* tokens and traders to swap tokens for one another.
*/
contract Exchange is ERC20, ReentrancyGuard {
using MathLib for uint256;
using SafeERC20 for IERC20;
address public immutable baseToken; // address of ERC20 base token (elastic or fixed supply)
address public immutable quoteToken; // address of ERC20 quote token (WETH or a stable coin w/ fixed supply)
address public immutable exchangeFactoryAddress;
uint256 public constant TOTAL_LIQUIDITY_FEE = 50; // fee provided to liquidity providers + DAO in basis points
uint256 public constant MINIMUM_LIQUIDITY = 1e3;
MathLib.InternalBalances public internalBalances;
event AddLiquidity(
address indexed liquidityProvider,
uint256 baseTokenQtyAdded,
uint256 quoteTokenQtyAdded
);
event RemoveLiquidity(
address indexed liquidityProvider,
uint256 baseTokenQtyRemoved,
uint256 quoteTokenQtyRemoved
);
event Swap(
address indexed sender,
uint256 baseTokenQtyIn,
uint256 quoteTokenQtyIn,
uint256 baseTokenQtyOut,
uint256 quoteTokenQtyOut
);
/**
* @dev Called to check timestamps from users for expiration of their calls.
*/
modifier isNotExpired(uint256 _expirationTimeStamp) {
require(_expirationTimeStamp >= block.timestamp, "Exchange: EXPIRED");
_;
}
/**
* @notice called by the exchange factory to create a new erc20 token swap pair (do not call this directly!)
* @param _name The human readable name of this pair (also used for the liquidity token name)
* @param _symbol Shortened symbol for trading pair (also used for the liquidity token symbol)
* @param _baseToken address of the ERC20 base token in the pair. This token can have a fixed or elastic supply
* @param _quoteToken address of the ERC20 quote token in the pair. This token is assumed to have a fixed supply.
* @param _exchangeFactoryAddress address of the exchange factory
*/
constructor(
string memory _name,
string memory _symbol,
address _baseToken,
address _quoteToken,
address _exchangeFactoryAddress
) ERC20(_name, _symbol) {
baseToken = _baseToken;
quoteToken = _quoteToken;
exchangeFactoryAddress = _exchangeFactoryAddress;
}
/**
* @notice primary entry point for a liquidity provider to add new liquidity (base and quote tokens) to the exchange
* and receive liquidity tokens in return.
* Requires approvals to be granted to this exchange for both base and quote tokens.
* @param _baseTokenQtyDesired qty of baseTokens that you would like to add to the exchange
* @param _quoteTokenQtyDesired qty of quoteTokens that you would like to add to the exchange
* @param _baseTokenQtyMin minimum acceptable qty of baseTokens that will be added (or transaction will revert)
* @param _quoteTokenQtyMin minimum acceptable qty of quoteTokens that will be added (or transaction will revert)
* @param _liquidityTokenRecipient address for the exchange to issue the resulting liquidity tokens from
* this transaction to
* @param _expirationTimestamp timestamp that this transaction must occur before (or transaction will revert)
*/
function addLiquidity(
uint256 _baseTokenQtyDesired,
uint256 _quoteTokenQtyDesired,
uint256 _baseTokenQtyMin,
uint256 _quoteTokenQtyMin,
address _liquidityTokenRecipient,
uint256 _expirationTimestamp
) external nonReentrant() isNotExpired(_expirationTimestamp) {
uint256 totalSupply = this.totalSupply();
MathLib.TokenQtys memory tokenQtys =
MathLib.calculateAddLiquidityQuantities(
_baseTokenQtyDesired,
_quoteTokenQtyDesired,
_baseTokenQtyMin,
_quoteTokenQtyMin,
IERC20(baseToken).balanceOf(address(this)),
totalSupply,
internalBalances
);
internalBalances.kLast =
internalBalances.baseTokenReserveQty *
internalBalances.quoteTokenReserveQty;
if (tokenQtys.liquidityTokenFeeQty != 0) {
// mint liquidity tokens to fee address for k growth.
_mint(
IExchangeFactory(exchangeFactoryAddress).feeAddress(),
tokenQtys.liquidityTokenFeeQty
);
}
bool isExchangeEmpty = totalSupply == 0;
if (isExchangeEmpty) {
// check if this the first LP provider, if so, we need to lock some minimum dust liquidity.
require(
tokenQtys.liquidityTokenQty > MINIMUM_LIQUIDITY,
"Exchange: INITIAL_DEPOSIT_MIN"
);
unchecked {
tokenQtys.liquidityTokenQty -= MINIMUM_LIQUIDITY;
}
_mint(address(this), MINIMUM_LIQUIDITY); // mint to this address, total supply will never be 0 again
}
_mint(_liquidityTokenRecipient, tokenQtys.liquidityTokenQty); // mint liquidity tokens to recipient
if (tokenQtys.baseTokenQty != 0) {
// transfer base tokens to Exchange
IERC20(baseToken).safeTransferFrom(
msg.sender,
address(this),
tokenQtys.baseTokenQty
);
if (isExchangeEmpty) {
require(
IERC20(baseToken).balanceOf(address(this)) ==
tokenQtys.baseTokenQty,
"Exchange: FEE_ON_TRANSFER_NOT_SUPPORTED"
);
}
}
if (tokenQtys.quoteTokenQty != 0) {
// transfer quote tokens to Exchange
IERC20(quoteToken).safeTransferFrom(
msg.sender,
address(this),
tokenQtys.quoteTokenQty
);
}
emit AddLiquidity(
msg.sender,
tokenQtys.baseTokenQty,
tokenQtys.quoteTokenQty
);
}
/**
* @notice called by a liquidity provider to redeem liquidity tokens from the exchange and receive back
* base and quote tokens. Required approvals to be granted to this exchange for the liquidity token
* @param _liquidityTokenQty qty of liquidity tokens that you would like to redeem
* @param _baseTokenQtyMin minimum acceptable qty of base tokens to receive back (or transaction will revert)
* @param _quoteTokenQtyMin minimum acceptable qty of quote tokens to receive back (or transaction will revert)
* @param _tokenRecipient address for the exchange to issue the resulting base and
* quote tokens from this transaction to
* @param _expirationTimestamp timestamp that this transaction must occur before (or transaction will revert)
*/
function removeLiquidity(
uint256 _liquidityTokenQty,
uint256 _baseTokenQtyMin,
uint256 _quoteTokenQtyMin,
address _tokenRecipient,
uint256 _expirationTimestamp
) external nonReentrant() isNotExpired(_expirationTimestamp) {
require(this.totalSupply() != 0, "Exchange: INSUFFICIENT_LIQUIDITY");
require(
_baseTokenQtyMin != 0 && _quoteTokenQtyMin != 0,
"Exchange: MINS_MUST_BE_GREATER_THAN_ZERO"
);
uint256 baseTokenReserveQty =
IERC20(baseToken).balanceOf(address(this));
uint256 quoteTokenReserveQty =
IERC20(quoteToken).balanceOf(address(this));
uint256 totalSupplyOfLiquidityTokens = this.totalSupply();
// calculate any DAO fees here.
uint256 liquidityTokenFeeQty =
MathLib.calculateLiquidityTokenFees(
totalSupplyOfLiquidityTokens,
internalBalances
);
// we need to factor this quantity in to any total supply before redemption
totalSupplyOfLiquidityTokens += liquidityTokenFeeQty;
uint256 baseTokenQtyToReturn =
(_liquidityTokenQty * baseTokenReserveQty) /
totalSupplyOfLiquidityTokens;
uint256 quoteTokenQtyToReturn =
(_liquidityTokenQty * quoteTokenReserveQty) /
totalSupplyOfLiquidityTokens;
require(
baseTokenQtyToReturn >= _baseTokenQtyMin,
"Exchange: INSUFFICIENT_BASE_QTY"
);
require(
quoteTokenQtyToReturn >= _quoteTokenQtyMin,
"Exchange: INSUFFICIENT_QUOTE_QTY"
);
// this ensures that we are removing the equivalent amount of decay
// when this person exits.
{
//scoping to avoid stack too deep errors
uint256 internalBaseTokenReserveQty =
internalBalances.baseTokenReserveQty;
uint256 baseTokenQtyToRemoveFromInternalAccounting =
(_liquidityTokenQty * internalBaseTokenReserveQty) /
totalSupplyOfLiquidityTokens;
internalBalances.baseTokenReserveQty = internalBaseTokenReserveQty =
internalBaseTokenReserveQty -
baseTokenQtyToRemoveFromInternalAccounting;
// We should ensure no possible overflow here.
uint256 internalQuoteTokenReserveQty =
internalBalances.quoteTokenReserveQty;
if (quoteTokenQtyToReturn > internalQuoteTokenReserveQty) {
internalBalances
.quoteTokenReserveQty = internalQuoteTokenReserveQty = 0;
} else {
internalBalances
.quoteTokenReserveQty = internalQuoteTokenReserveQty =
internalQuoteTokenReserveQty -
quoteTokenQtyToReturn;
}
internalBalances.kLast =
internalBaseTokenReserveQty *
internalQuoteTokenReserveQty;
}
if (liquidityTokenFeeQty != 0) {
_mint(
IExchangeFactory(exchangeFactoryAddress).feeAddress(),
liquidityTokenFeeQty
);
}
_burn(msg.sender, _liquidityTokenQty);
IERC20(baseToken).safeTransfer(_tokenRecipient, baseTokenQtyToReturn);
IERC20(quoteToken).safeTransfer(_tokenRecipient, quoteTokenQtyToReturn);
emit RemoveLiquidity(
msg.sender,
baseTokenQtyToReturn,
quoteTokenQtyToReturn
);
}
/**
* @notice swaps base tokens for a minimum amount of quote tokens. Fees are included in all transactions.
* The exchange must be granted approvals for the base token by the caller.
* @param _baseTokenQty qty of base tokens to swap
* @param _minQuoteTokenQty minimum qty of quote tokens to receive in exchange for
* your base tokens (or the transaction will revert)
* @param _expirationTimestamp timestamp that this transaction must occur before (or transaction will revert)
*/
function swapBaseTokenForQuoteToken(
uint256 _baseTokenQty,
uint256 _minQuoteTokenQty,
uint256 _expirationTimestamp
) external nonReentrant() isNotExpired(_expirationTimestamp) {
require(
_baseTokenQty != 0 && _minQuoteTokenQty != 0,
"Exchange: INSUFFICIENT_TOKEN_QTY"
);
uint256 quoteTokenQty =
MathLib.calculateQuoteTokenQty(
_baseTokenQty,
_minQuoteTokenQty,
TOTAL_LIQUIDITY_FEE,
internalBalances
);
IERC20(baseToken).safeTransferFrom(
msg.sender,
address(this),
_baseTokenQty
);
IERC20(quoteToken).safeTransfer(msg.sender, quoteTokenQty);
emit Swap(msg.sender, _baseTokenQty, 0, 0, quoteTokenQty);
}
/**
* @notice swaps quote tokens for a minimum amount of base tokens. Fees are included in all transactions.
* The exchange must be granted approvals for the quote token by the caller.
* @param _quoteTokenQty qty of quote tokens to swap
* @param _minBaseTokenQty minimum qty of base tokens to receive in exchange for
* your quote tokens (or the transaction will revert)
* @param _expirationTimestamp timestamp that this transaction must occur before (or transaction will revert)
*/
function swapQuoteTokenForBaseToken(
uint256 _quoteTokenQty,
uint256 _minBaseTokenQty,
uint256 _expirationTimestamp
) external nonReentrant() isNotExpired(_expirationTimestamp) {
require(
_quoteTokenQty != 0 && _minBaseTokenQty != 0,
"Exchange: INSUFFICIENT_TOKEN_QTY"
);
uint256 baseTokenQty =
MathLib.calculateBaseTokenQty(
_quoteTokenQty,
_minBaseTokenQty,
IERC20(baseToken).balanceOf(address(this)),
TOTAL_LIQUIDITY_FEE,
internalBalances
);
IERC20(quoteToken).safeTransferFrom(
msg.sender,
address(this),
_quoteTokenQty
);
IERC20(baseToken).safeTransfer(msg.sender, baseTokenQty);
emit Swap(msg.sender, 0, _quoteTokenQty, baseTokenQty, 0);
}
}//SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.4;
interface IExchangeFactory {
function feeAddress() external view returns (address);
}//SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.4;
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol";
library SafeMetadata {
function safeName(IERC20 token) internal view returns (string memory) {
(bool success, bytes memory data) =
address(token).staticcall(
abi.encodeWithSelector(IERC20Metadata.name.selector)
);
if (success) return abi.decode(data, (string));
return "Token";
}
function safeSymbol(IERC20 token) internal view returns (string memory) {
(bool success, bytes memory data) =
address(token).staticcall(
abi.encodeWithSelector(IERC20Metadata.symbol.selector)
);
if (success) return abi.decode(data, (string));
return "TKN";
}
function safeDecimals(IERC20 token) internal view returns (uint8) {
(bool success, bytes memory data) =
address(token).staticcall(
abi.encodeWithSelector(IERC20Metadata.decimals.selector)
);
if (success && data.length >= 32) return abi.decode(data, (uint8));
return 18;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}//SPDX-License-Identifier: GPL-3.0
pragma solidity 0.8.4;
/**
* @title MathLib
* @author ElasticDAO
*/
library MathLib {
struct InternalBalances {
// x*y=k - we track these internally to compare to actual balances of the ERC20's
// in order to calculate the "decay" or the amount of balances that are not
// participating in the pricing curve and adding additional liquidity to swap.
uint256 baseTokenReserveQty; // x
uint256 quoteTokenReserveQty; // y
uint256 kLast; // as of the last add / rem liquidity event
}
// aids in avoiding stack too deep errors.
struct TokenQtys {
uint256 baseTokenQty;
uint256 quoteTokenQty;
uint256 liquidityTokenQty;
uint256 liquidityTokenFeeQty;
}
uint256 public constant BASIS_POINTS = 10000;
uint256 public constant WAD = 1e18; // represent a decimal with 18 digits of precision
/**
* @dev divides two float values, required since solidity does not handle
* floating point values.
*
* inspiration: https://github.com/dapphub/ds-math/blob/master/src/math.sol
*
* NOTE: this rounds to the nearest integer (up or down). For example .666666 would end up
* rounding to .66667.
*
* @return uint256 wad value (decimal with 18 digits of precision)
*/
function wDiv(uint256 a, uint256 b) public pure returns (uint256) {
return ((a * WAD) + (b / 2)) / b;
}
/**
* @dev rounds a integer (a) to the nearest n places.
* IE roundToNearest(123, 10) would round to the nearest 10th place (120).
*/
function roundToNearest(uint256 a, uint256 n)
public
pure
returns (uint256)
{
return ((a + (n / 2)) / n) * n;
}
/**
* @dev multiplies two float values, required since solidity does not handle
* floating point values
*
* inspiration: https://github.com/dapphub/ds-math/blob/master/src/math.sol
*
* @return uint256 wad value (decimal with 18 digits of precision)
*/
function wMul(uint256 a, uint256 b) public pure returns (uint256) {
return ((a * b) + (WAD / 2)) / WAD;
}
/**
* @dev calculates an absolute diff between two integers. Basically the solidity
* equivalent of Math.abs(a-b);
*/
function diff(uint256 a, uint256 b) public pure returns (uint256) {
if (a >= b) {
return a - b;
}
return b - a;
}
// babylonian method (https://en.wikipedia.org/wiki/Methods_of_computing_square_roots#Babylonian_method)
function sqrt(uint256 x) public pure returns (uint256 y) {
uint256 z = (x + 1) / 2;
y = x;
while (z < y) {
y = z;
z = (x / z + z) / 2;
}
}
/**
* @dev defines the amount of decay needed in order for us to require a user to handle the
* decay prior to a double asset entry as the equivalent of 1 unit of quote token
*/
function isSufficientDecayPresent(
uint256 _baseTokenReserveQty,
InternalBalances memory _internalBalances
) public pure returns (bool) {
return (wDiv(
diff(_baseTokenReserveQty, _internalBalances.baseTokenReserveQty) *
WAD,
wDiv(
_internalBalances.baseTokenReserveQty,
_internalBalances.quoteTokenReserveQty
)
) >= WAD); // the amount of base token (a) decay is greater than 1 unit of quote token (token b)
}
/**
* @dev used to calculate the qty of token a liquidity provider
* must add in order to maintain the current reserve ratios
* @param _tokenAQty base or quote token qty to be supplied by the liquidity provider
* @param _tokenAReserveQty current reserve qty of the base or quote token (same token as tokenA)
* @param _tokenBReserveQty current reserve qty of the other base or quote token (not tokenA)
*/
function calculateQty(
uint256 _tokenAQty,
uint256 _tokenAReserveQty,
uint256 _tokenBReserveQty
) public pure returns (uint256 tokenBQty) {
require(_tokenAQty != 0, "MathLib: INSUFFICIENT_QTY");
require(
_tokenAReserveQty != 0 && _tokenBReserveQty != 0,
"MathLib: INSUFFICIENT_LIQUIDITY"
);
tokenBQty = (_tokenAQty * _tokenBReserveQty) / _tokenAReserveQty;
}
/**
* @dev used to calculate the qty of token a trader will receive (less fees)
* given the qty of token A they are providing
* @param _tokenASwapQty base or quote token qty to be swapped by the trader
* @param _tokenAReserveQty current reserve qty of the base or quote token (same token as tokenA)
* @param _tokenBReserveQty current reserve qty of the other base or quote token (not tokenA)
* @param _liquidityFeeInBasisPoints fee to liquidity providers represented in basis points
*/
function calculateQtyToReturnAfterFees(
uint256 _tokenASwapQty,
uint256 _tokenAReserveQty,
uint256 _tokenBReserveQty,
uint256 _liquidityFeeInBasisPoints
) public pure returns (uint256 qtyToReturn) {
uint256 tokenASwapQtyLessFee =
_tokenASwapQty * (BASIS_POINTS - _liquidityFeeInBasisPoints);
qtyToReturn =
(tokenASwapQtyLessFee * _tokenBReserveQty) /
((_tokenAReserveQty * BASIS_POINTS) + tokenASwapQtyLessFee);
}
/**
* @dev used to calculate the qty of liquidity tokens (deltaRo) we will be issued to a supplier
* of a single asset entry when base token decay is present.
* @param _baseTokenReserveBalance the total balance (external) of base tokens in our pool (Alpha)
* @param _totalSupplyOfLiquidityTokens the total supply of our exchange's liquidity tokens (aka Ro)
* @param _tokenQtyAToAdd the amount of tokens being added by the caller to remove the current decay
* @param _internalTokenAReserveQty the internal balance (X or Y) of token A as a result of this transaction
* @param _omega - ratio of internal balances of baseToken and quoteToken: baseToken/quoteToken
* @return liquidityTokenQty qty of liquidity tokens to be issued in exchange
*/
function calculateLiquidityTokenQtyForSingleAssetEntryWithBaseTokenDecay(
uint256 _baseTokenReserveBalance,
uint256 _totalSupplyOfLiquidityTokens,
uint256 _tokenQtyAToAdd,
uint256 _internalTokenAReserveQty,
uint256 _omega
) public pure returns (uint256 liquidityTokenQty) {
/**
(is the formula in the terms of quoteToken)
ΔY
= ---------------------
Alpha/Omega + Y'
*/
uint256 wRatio = wDiv(_baseTokenReserveBalance, _omega);
uint256 denominator = wRatio + _internalTokenAReserveQty;
uint256 wGamma = wDiv(_tokenQtyAToAdd, denominator);
liquidityTokenQty =
wDiv(
wMul(_totalSupplyOfLiquidityTokens * WAD, wGamma),
WAD - wGamma
) /
WAD;
}
/**
* @dev used to calculate the qty of liquidity tokens (deltaRo) we will be issued to a supplier
* of a single asset entry when quote decay is present.
* @param _baseTokenReserveBalance the total balance (external) of base tokens in our pool (Alpha)
* @param _totalSupplyOfLiquidityTokens the total supply of our exchange's liquidity tokens (aka Ro)
* @param _tokenQtyAToAdd the amount of tokens being added by the caller to remove the current decay
* @param _internalTokenAReserveQty the internal balance (X or Y) of token A as a result of this transaction
* @return liquidityTokenQty qty of liquidity tokens to be issued in exchange
*/
function calculateLiquidityTokenQtyForSingleAssetEntryWithQuoteTokenDecay(
uint256 _baseTokenReserveBalance,
uint256 _totalSupplyOfLiquidityTokens,
uint256 _tokenQtyAToAdd,
uint256 _internalTokenAReserveQty
) public pure returns (uint256 liquidityTokenQty) {
/**
ΔX
= ------------------- / (denominator may be Alpha' instead of X)
X + (Alpha + ΔX)
*/
uint256 denominator =
_internalTokenAReserveQty +
_baseTokenReserveBalance +
_tokenQtyAToAdd;
uint256 wGamma = wDiv(_tokenQtyAToAdd, denominator);
liquidityTokenQty =
wDiv(
wMul(_totalSupplyOfLiquidityTokens * WAD, wGamma),
WAD - wGamma
) /
WAD;
}
/**
* @dev used to calculate the qty of liquidity tokens (deltaRo) we will be issued to a supplier
* of a single asset entry when decay is present.
* @param _totalSupplyOfLiquidityTokens the total supply of our exchange's liquidity tokens (aka Ro)
* @param _quoteTokenQty the amount of quote token the user it adding to the pool (deltaB or deltaY)
* @param _quoteTokenReserveBalance the total balance (external) of quote tokens in our pool (Beta)
*
* @return liquidityTokenQty qty of liquidity tokens to be issued in exchange
*/
function calculateLiquidityTokenQtyForDoubleAssetEntry(
uint256 _totalSupplyOfLiquidityTokens,
uint256 _quoteTokenQty,
uint256 _quoteTokenReserveBalance
) public pure returns (uint256 liquidityTokenQty) {
liquidityTokenQty =
(_quoteTokenQty * _totalSupplyOfLiquidityTokens) /
_quoteTokenReserveBalance;
}
/**
* @dev used to calculate the qty of quote token required and liquidity tokens (deltaRo) to be issued
* in order to add liquidity and remove base token decay.
* @param _quoteTokenQtyDesired the amount of quote token the user wants to contribute
* @param _baseTokenReserveQty the external base token reserve qty prior to this transaction
* @param _totalSupplyOfLiquidityTokens the total supply of our exchange's liquidity tokens (aka Ro)
* @param _internalBalances internal balances struct from our exchange's internal accounting
*
*
* @return quoteTokenQty qty of quote token the user must supply
* @return liquidityTokenQty qty of liquidity tokens to be issued in exchange
*/
function calculateAddQuoteTokenLiquidityQuantities(
uint256 _quoteTokenQtyDesired,
uint256 _baseTokenReserveQty,
uint256 _totalSupplyOfLiquidityTokens,
InternalBalances storage _internalBalances
) public returns (uint256 quoteTokenQty, uint256 liquidityTokenQty) {
uint256 baseTokenDecay =
_baseTokenReserveQty - _internalBalances.baseTokenReserveQty;
// determine max amount of quote token that can be added to offset the current decay
uint256 wInternalBaseTokenToQuoteTokenRatio =
wDiv(
_internalBalances.baseTokenReserveQty,
_internalBalances.quoteTokenReserveQty
);
// alphaDecay / omega (A/B)
uint256 maxQuoteTokenQty =
wDiv(baseTokenDecay, wInternalBaseTokenToQuoteTokenRatio);
if (_quoteTokenQtyDesired > maxQuoteTokenQty) {
quoteTokenQty = maxQuoteTokenQty;
} else {
quoteTokenQty = _quoteTokenQtyDesired;
}
uint256 baseTokenQtyDecayChange =
roundToNearest(
(quoteTokenQty * wInternalBaseTokenToQuoteTokenRatio),
WAD
) / WAD;
require(
baseTokenQtyDecayChange != 0,
"MathLib: INSUFFICIENT_CHANGE_IN_DECAY"
);
//x += alphaDecayChange
//y += deltaBeta
_internalBalances.baseTokenReserveQty += baseTokenQtyDecayChange;
_internalBalances.quoteTokenReserveQty += quoteTokenQty;
// calculate the number of liquidity tokens to return to user using
liquidityTokenQty = calculateLiquidityTokenQtyForSingleAssetEntryWithBaseTokenDecay(
_baseTokenReserveQty,
_totalSupplyOfLiquidityTokens,
quoteTokenQty,
_internalBalances.quoteTokenReserveQty,
wInternalBaseTokenToQuoteTokenRatio
);
return (quoteTokenQty, liquidityTokenQty);
}
/**
* @dev used to calculate the qty of base tokens required and liquidity tokens (deltaRo) to be issued
* in order to add liquidity and remove base token decay.
* @param _baseTokenQtyDesired the amount of base token the user wants to contribute
* @param _baseTokenQtyMin the minimum amount of base token the user wants to contribute (allows for slippage)
* @param _baseTokenReserveQty the external base token reserve qty prior to this transaction
* @param _totalSupplyOfLiquidityTokens the total supply of our exchange's liquidity tokens (aka Ro)
* @param _internalBalances internal balances struct from our exchange's internal accounting
*
* @return baseTokenQty qty of base token the user must supply
* @return liquidityTokenQty qty of liquidity tokens to be issued in exchange
*/
function calculateAddBaseTokenLiquidityQuantities(
uint256 _baseTokenQtyDesired,
uint256 _baseTokenQtyMin,
uint256 _baseTokenReserveQty,
uint256 _totalSupplyOfLiquidityTokens,
InternalBalances memory _internalBalances
) public pure returns (uint256 baseTokenQty, uint256 liquidityTokenQty) {
uint256 maxBaseTokenQty =
_internalBalances.baseTokenReserveQty - _baseTokenReserveQty;
require(
_baseTokenQtyMin <= maxBaseTokenQty,
"MathLib: INSUFFICIENT_DECAY"
);
if (_baseTokenQtyDesired > maxBaseTokenQty) {
baseTokenQty = maxBaseTokenQty;
} else {
baseTokenQty = _baseTokenQtyDesired;
}
// determine the quote token qty decay change quoted on our current ratios
uint256 wInternalQuoteToBaseTokenRatio =
wDiv(
_internalBalances.quoteTokenReserveQty,
_internalBalances.baseTokenReserveQty
);
// NOTE we need this function to use the same
// rounding scheme as wDiv in order to avoid a case
// in which a user is trying to resolve decay in which
// quoteTokenQtyDecayChange ends up being 0 and we are stuck in
// a bad state.
uint256 quoteTokenQtyDecayChange =
roundToNearest(
(baseTokenQty * wInternalQuoteToBaseTokenRatio),
MathLib.WAD
) / WAD;
require(
quoteTokenQtyDecayChange != 0,
"MathLib: INSUFFICIENT_CHANGE_IN_DECAY"
);
// we can now calculate the total amount of quote token decay
uint256 quoteTokenDecay =
(maxBaseTokenQty * wInternalQuoteToBaseTokenRatio) / WAD;
// this may be redundant quoted on the above math, but will check to ensure the decay wasn't so small
// that it was <1 and rounded down to 0 saving the caller some gas
// also could fix a potential revert due to div by zero.
require(quoteTokenDecay != 0, "MathLib: NO_QUOTE_DECAY");
// we are not changing anything about our internal accounting here. We are simply adding tokens
// to make our internal account "right"...or rather getting the external balances to match our internal
// quoteTokenReserveQty += quoteTokenQtyDecayChange;
// baseTokenReserveQty += baseTokenQty;
// calculate the number of liquidity tokens to return to user using:
liquidityTokenQty = calculateLiquidityTokenQtyForSingleAssetEntryWithQuoteTokenDecay(
_baseTokenReserveQty,
_totalSupplyOfLiquidityTokens,
baseTokenQty,
_internalBalances.baseTokenReserveQty
);
}
/**
* @dev used to calculate the qty of tokens a user will need to contribute and be issued in order to add liquidity
* @param _baseTokenQtyDesired the amount of base token the user wants to contribute
* @param _quoteTokenQtyDesired the amount of quote token the user wants to contribute
* @param _baseTokenQtyMin the minimum amount of base token the user wants to contribute (allows for slippage)
* @param _quoteTokenQtyMin the minimum amount of quote token the user wants to contribute (allows for slippage)
* @param _baseTokenReserveQty the external base token reserve qty prior to this transaction
* @param _totalSupplyOfLiquidityTokens the total supply of our exchange's liquidity tokens (aka Ro)
* @param _internalBalances internal balances struct from our exchange's internal accounting
*
* @return tokenQtys qty of tokens needed to complete transaction
*/
function calculateAddLiquidityQuantities(
uint256 _baseTokenQtyDesired,
uint256 _quoteTokenQtyDesired,
uint256 _baseTokenQtyMin,
uint256 _quoteTokenQtyMin,
uint256 _baseTokenReserveQty,
uint256 _totalSupplyOfLiquidityTokens,
InternalBalances storage _internalBalances
) public returns (TokenQtys memory tokenQtys) {
if (_totalSupplyOfLiquidityTokens != 0) {
// we have outstanding liquidity tokens present and an existing price curve
tokenQtys.liquidityTokenFeeQty = calculateLiquidityTokenFees(
_totalSupplyOfLiquidityTokens,
_internalBalances
);
// we need to take this amount (that will be minted) into account for below calculations
_totalSupplyOfLiquidityTokens += tokenQtys.liquidityTokenFeeQty;
// confirm that we have no beta or alpha decay present
// if we do, we need to resolve that first
if (
isSufficientDecayPresent(
_baseTokenReserveQty,
_internalBalances
)
) {
// decay is present and needs to be dealt with by the caller.
uint256 baseTokenQtyFromDecay;
uint256 quoteTokenQtyFromDecay;
uint256 liquidityTokenQtyFromDecay;
if (
_baseTokenReserveQty > _internalBalances.baseTokenReserveQty
) {
// we have more base token than expected (base token decay) due to rebase up
// we first need to handle this situation by requiring this user
// to add quote tokens
(
quoteTokenQtyFromDecay,
liquidityTokenQtyFromDecay
) = calculateAddQuoteTokenLiquidityQuantities(
_quoteTokenQtyDesired,
_baseTokenReserveQty,
_totalSupplyOfLiquidityTokens,
_internalBalances
);
} else {
// we have less base token than expected (quote token decay) due to a rebase down
// we first need to handle this by adding base tokens to offset this.
(
baseTokenQtyFromDecay,
liquidityTokenQtyFromDecay
) = calculateAddBaseTokenLiquidityQuantities(
_baseTokenQtyDesired,
0, // there is no minimum for this particular call since we may use base tokens later.
_baseTokenReserveQty,
_totalSupplyOfLiquidityTokens,
_internalBalances
);
}
if (
quoteTokenQtyFromDecay < _quoteTokenQtyDesired &&
baseTokenQtyFromDecay < _baseTokenQtyDesired
) {
// the user still has qty that they desire to contribute to the exchange for liquidity
(
tokenQtys.baseTokenQty,
tokenQtys.quoteTokenQty,
tokenQtys.liquidityTokenQty
) = calculateAddTokenPairLiquidityQuantities(
_baseTokenQtyDesired - baseTokenQtyFromDecay, // safe from underflow quoted on above IF
_quoteTokenQtyDesired - quoteTokenQtyFromDecay, // safe from underflow quoted on above IF
0, // we will check minimums below
0, // we will check minimums below
_totalSupplyOfLiquidityTokens +
liquidityTokenQtyFromDecay,
_internalBalances // NOTE: these balances have already been updated when we did the decay math.
);
}
tokenQtys.baseTokenQty += baseTokenQtyFromDecay;
tokenQtys.quoteTokenQty += quoteTokenQtyFromDecay;
tokenQtys.liquidityTokenQty += liquidityTokenQtyFromDecay;
require(
tokenQtys.baseTokenQty >= _baseTokenQtyMin,
"MathLib: INSUFFICIENT_BASE_QTY"
);
require(
tokenQtys.quoteTokenQty >= _quoteTokenQtyMin,
"MathLib: INSUFFICIENT_QUOTE_QTY"
);
} else {
// the user is just doing a simple double asset entry / providing both base and quote.
(
tokenQtys.baseTokenQty,
tokenQtys.quoteTokenQty,
tokenQtys.liquidityTokenQty
) = calculateAddTokenPairLiquidityQuantities(
_baseTokenQtyDesired,
_quoteTokenQtyDesired,
_baseTokenQtyMin,
_quoteTokenQtyMin,
_totalSupplyOfLiquidityTokens,
_internalBalances
);
}
} else {
// this user will set the initial pricing curve
require(
_baseTokenQtyDesired != 0,
"MathLib: INSUFFICIENT_BASE_QTY_DESIRED"
);
require(
_quoteTokenQtyDesired != 0,
"MathLib: INSUFFICIENT_QUOTE_QTY_DESIRED"
);
tokenQtys.baseTokenQty = _baseTokenQtyDesired;
tokenQtys.quoteTokenQty = _quoteTokenQtyDesired;
tokenQtys.liquidityTokenQty = sqrt(
_baseTokenQtyDesired * _quoteTokenQtyDesired
);
_internalBalances.baseTokenReserveQty += tokenQtys.baseTokenQty;
_internalBalances.quoteTokenReserveQty += tokenQtys.quoteTokenQty;
}
}
/**
* @dev calculates the qty of base and quote tokens required and liquidity tokens (deltaRo) to be issued
* in order to add liquidity when no decay is present.
* @param _baseTokenQtyDesired the amount of base token the user wants to contribute
* @param _quoteTokenQtyDesired the amount of quote token the user wants to contribute
* @param _baseTokenQtyMin the minimum amount of base token the user wants to contribute (allows for slippage)
* @param _quoteTokenQtyMin the minimum amount of quote token the user wants to contribute (allows for slippage)
* @param _totalSupplyOfLiquidityTokens the total supply of our exchange's liquidity tokens (aka Ro)
* @param _internalBalances internal balances struct from our exchange's internal accounting
*
* @return baseTokenQty qty of base token the user must supply
* @return quoteTokenQty qty of quote token the user must supply
* @return liquidityTokenQty qty of liquidity tokens to be issued in exchange
*/
function calculateAddTokenPairLiquidityQuantities(
uint256 _baseTokenQtyDesired,
uint256 _quoteTokenQtyDesired,
uint256 _baseTokenQtyMin,
uint256 _quoteTokenQtyMin,
uint256 _totalSupplyOfLiquidityTokens,
InternalBalances storage _internalBalances
)
public
returns (
uint256 baseTokenQty,
uint256 quoteTokenQty,
uint256 liquidityTokenQty
)
{
uint256 requiredQuoteTokenQty =
calculateQty(
_baseTokenQtyDesired,
_internalBalances.baseTokenReserveQty,
_internalBalances.quoteTokenReserveQty
);
if (requiredQuoteTokenQty <= _quoteTokenQtyDesired) {
// user has to provide less than their desired amount
require(
requiredQuoteTokenQty >= _quoteTokenQtyMin,
"MathLib: INSUFFICIENT_QUOTE_QTY"
);
baseTokenQty = _baseTokenQtyDesired;
quoteTokenQty = requiredQuoteTokenQty;
} else {
// we need to check the opposite way.
uint256 requiredBaseTokenQty =
calculateQty(
_quoteTokenQtyDesired,
_internalBalances.quoteTokenReserveQty,
_internalBalances.baseTokenReserveQty
);
require(
requiredBaseTokenQty >= _baseTokenQtyMin,
"MathLib: INSUFFICIENT_BASE_QTY"
);
baseTokenQty = requiredBaseTokenQty;
quoteTokenQty = _quoteTokenQtyDesired;
}
liquidityTokenQty = calculateLiquidityTokenQtyForDoubleAssetEntry(
_totalSupplyOfLiquidityTokens,
quoteTokenQty,
_internalBalances.quoteTokenReserveQty
);
_internalBalances.baseTokenReserveQty += baseTokenQty;
_internalBalances.quoteTokenReserveQty += quoteTokenQty;
}
/**
* @dev calculates the qty of base tokens a user will receive for swapping their quote tokens (less fees)
* @param _quoteTokenQty the amount of quote tokens the user wants to swap
* @param _baseTokenQtyMin the minimum about of base tokens they are willing to receive in return (slippage)
* @param _baseTokenReserveQty the external base token reserve qty prior to this transaction
* @param _liquidityFeeInBasisPoints the current total liquidity fee represented as an integer of basis points
* @param _internalBalances internal balances struct from our exchange's internal accounting
*
* @return baseTokenQty qty of base token the user will receive back
*/
function calculateBaseTokenQty(
uint256 _quoteTokenQty,
uint256 _baseTokenQtyMin,
uint256 _baseTokenReserveQty,
uint256 _liquidityFeeInBasisPoints,
InternalBalances storage _internalBalances
) public returns (uint256 baseTokenQty) {
require(
_baseTokenReserveQty != 0 &&
_internalBalances.baseTokenReserveQty != 0,
"MathLib: INSUFFICIENT_BASE_TOKEN_QTY"
);
// check to see if we have experience quote token decay / a rebase down event
if (_baseTokenReserveQty < _internalBalances.baseTokenReserveQty) {
// we have less reserves than our current price curve will expect, we need to adjust the curve
uint256 wPricingRatio =
wDiv(
_internalBalances.baseTokenReserveQty,
_internalBalances.quoteTokenReserveQty
); // omega
uint256 impliedQuoteTokenQty =
wDiv(_baseTokenReserveQty, wPricingRatio); // no need to divide by WAD, wPricingRatio is already a WAD.
baseTokenQty = calculateQtyToReturnAfterFees(
_quoteTokenQty,
impliedQuoteTokenQty,
_baseTokenReserveQty, // use the actual balance here since we adjusted the quote token to match ratio!
_liquidityFeeInBasisPoints
);
} else {
// we have the same or more reserves, no need to alter the curve.
baseTokenQty = calculateQtyToReturnAfterFees(
_quoteTokenQty,
_internalBalances.quoteTokenReserveQty,
_internalBalances.baseTokenReserveQty,
_liquidityFeeInBasisPoints
);
}
require(
baseTokenQty >= _baseTokenQtyMin,
"MathLib: INSUFFICIENT_BASE_TOKEN_QTY"
);
_internalBalances.baseTokenReserveQty -= baseTokenQty;
_internalBalances.quoteTokenReserveQty += _quoteTokenQty;
}
/**
* @dev calculates the qty of quote tokens a user will receive for swapping their base tokens (less fees)
* @param _baseTokenQty the amount of bases tokens the user wants to swap
* @param _quoteTokenQtyMin the minimum about of quote tokens they are willing to receive in return (slippage)
* @param _liquidityFeeInBasisPoints the current total liquidity fee represented as an integer of basis points
* @param _internalBalances internal balances struct from our exchange's internal accounting
*
* @return quoteTokenQty qty of quote token the user will receive back
*/
function calculateQuoteTokenQty(
uint256 _baseTokenQty,
uint256 _quoteTokenQtyMin,
uint256 _liquidityFeeInBasisPoints,
InternalBalances storage _internalBalances
) public returns (uint256 quoteTokenQty) {
require(
_baseTokenQty != 0 && _quoteTokenQtyMin != 0,
"MathLib: INSUFFICIENT_TOKEN_QTY"
);
quoteTokenQty = calculateQtyToReturnAfterFees(
_baseTokenQty,
_internalBalances.baseTokenReserveQty,
_internalBalances.quoteTokenReserveQty,
_liquidityFeeInBasisPoints
);
require(
quoteTokenQty >= _quoteTokenQtyMin,
"MathLib: INSUFFICIENT_QUOTE_TOKEN_QTY"
);
_internalBalances.baseTokenReserveQty += _baseTokenQty;
_internalBalances.quoteTokenReserveQty -= quoteTokenQty;
}
/**
* @dev calculates the qty of liquidity tokens that should be sent to the DAO due to the growth in K from trading.
* 50BPS is the total fee, 25 goes to the LPs, 5 BP to the DAO, and 20 BP to staking rewards and liquidity incentives
* @param _totalSupplyOfLiquidityTokens the total supply of our exchange's liquidity tokens (aka Ro)
* @param _internalBalances internal balances struct from our exchange's internal accounting
*
* @return liquidityTokenFeeQty qty of tokens to be minted to the fee address for the growth in K
*/
function calculateLiquidityTokenFees(
uint256 _totalSupplyOfLiquidityTokens,
InternalBalances memory _internalBalances
) public pure returns (uint256 liquidityTokenFeeQty) {
uint256 rootK =
sqrt(
_internalBalances.baseTokenReserveQty *
_internalBalances.quoteTokenReserveQty
);
uint256 rootKLast = sqrt(_internalBalances.kLast);
if (rootK > rootKLast) {
uint256 numerator =
_totalSupplyOfLiquidityTokens * (rootK - rootKLast);
uint256 denominator = rootK * 2;
liquidityTokenFeeQty = numerator / denominator;
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)
pragma solidity ^0.8.0;
import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";
/**
* @dev Implementation of the {IERC20} interface.
*
* This implementation is agnostic to the way tokens are created. This means
* that a supply mechanism has to be added in a derived contract using {_mint}.
* For a generic mechanism see {ERC20PresetMinterPauser}.
*
* TIP: For a detailed writeup see our guide
* https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
* to implement supply mechanisms].
*
* We have followed general OpenZeppelin Contracts guidelines: functions revert
* instead returning `false` on failure. This behavior is nonetheless
* conventional and does not conflict with the expectations of ERC20
* applications.
*
* Additionally, an {Approval} event is emitted on calls to {transferFrom}.
* This allows applications to reconstruct the allowance for all accounts just
* by listening to said events. Other implementations of the EIP may not emit
* these events, as it isn't required by the specification.
*
* Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
* functions have been added to mitigate the well-known issues around setting
* allowances. See {IERC20-approve}.
*/
contract ERC20 is Context, IERC20, IERC20Metadata {
mapping(address => uint256) private _balances;
mapping(address => mapping(address => uint256)) private _allowances;
uint256 private _totalSupply;
string private _name;
string private _symbol;
/**
* @dev Sets the values for {name} and {symbol}.
*
* The default value of {decimals} is 18. To select a different value for
* {decimals} you should overload it.
*
* All two of these values are immutable: they can only be set once during
* construction.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev Returns the name of the token.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the symbol of the token, usually a shorter version of the
* name.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the number of decimals used to get its user representation.
* For example, if `decimals` equals `2`, a balance of `505` tokens should
* be displayed to a user as `5.05` (`505 / 10 ** 2`).
*
* Tokens usually opt for a value of 18, imitating the relationship between
* Ether and Wei. This is the value {ERC20} uses, unless this function is
* overridden;
*
* NOTE: This information is only used for _display_ purposes: it in
* no way affects any of the arithmetic of the contract, including
* {IERC20-balanceOf} and {IERC20-transfer}.
*/
function decimals() public view virtual override returns (uint8) {
return 18;
}
/**
* @dev See {IERC20-totalSupply}.
*/
function totalSupply() public view virtual override returns (uint256) {
return _totalSupply;
}
/**
* @dev See {IERC20-balanceOf}.
*/
function balanceOf(address account) public view virtual override returns (uint256) {
return _balances[account];
}
/**
* @dev See {IERC20-transfer}.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - the caller must have a balance of at least `amount`.
*/
function transfer(address to, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_transfer(owner, to, amount);
return true;
}
/**
* @dev See {IERC20-allowance}.
*/
function allowance(address owner, address spender) public view virtual override returns (uint256) {
return _allowances[owner][spender];
}
/**
* @dev See {IERC20-approve}.
*
* NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
* `transferFrom`. This is semantically equivalent to an infinite approval.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function approve(address spender, uint256 amount) public virtual override returns (bool) {
address owner = _msgSender();
_approve(owner, spender, amount);
return true;
}
/**
* @dev See {IERC20-transferFrom}.
*
* Emits an {Approval} event indicating the updated allowance. This is not
* required by the EIP. See the note at the beginning of {ERC20}.
*
* NOTE: Does not update the allowance if the current allowance
* is the maximum `uint256`.
*
* Requirements:
*
* - `from` and `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
* - the caller must have allowance for ``from``'s tokens of at least
* `amount`.
*/
function transferFrom(
address from,
address to,
uint256 amount
) public virtual override returns (bool) {
address spender = _msgSender();
_spendAllowance(from, spender, amount);
_transfer(from, to, amount);
return true;
}
/**
* @dev Atomically increases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
*/
function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
address owner = _msgSender();
_approve(owner, spender, _allowances[owner][spender] + addedValue);
return true;
}
/**
* @dev Atomically decreases the allowance granted to `spender` by the caller.
*
* This is an alternative to {approve} that can be used as a mitigation for
* problems described in {IERC20-approve}.
*
* Emits an {Approval} event indicating the updated allowance.
*
* Requirements:
*
* - `spender` cannot be the zero address.
* - `spender` must have allowance for the caller of at least
* `subtractedValue`.
*/
function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
address owner = _msgSender();
uint256 currentAllowance = _allowances[owner][spender];
require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
unchecked {
_approve(owner, spender, currentAllowance - subtractedValue);
}
return true;
}
/**
* @dev Moves `amount` of tokens from `sender` to `recipient`.
*
* This internal function is equivalent to {transfer}, and can be used to
* e.g. implement automatic token fees, slashing mechanisms, etc.
*
* Emits a {Transfer} event.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `from` must have a balance of at least `amount`.
*/
function _transfer(
address from,
address to,
uint256 amount
) internal virtual {
require(from != address(0), "ERC20: transfer from the zero address");
require(to != address(0), "ERC20: transfer to the zero address");
_beforeTokenTransfer(from, to, amount);
uint256 fromBalance = _balances[from];
require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
unchecked {
_balances[from] = fromBalance - amount;
}
_balances[to] += amount;
emit Transfer(from, to, amount);
_afterTokenTransfer(from, to, amount);
}
/** @dev Creates `amount` tokens and assigns them to `account`, increasing
* the total supply.
*
* Emits a {Transfer} event with `from` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
*/
function _mint(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: mint to the zero address");
_beforeTokenTransfer(address(0), account, amount);
_totalSupply += amount;
_balances[account] += amount;
emit Transfer(address(0), account, amount);
_afterTokenTransfer(address(0), account, amount);
}
/**
* @dev Destroys `amount` tokens from `account`, reducing the
* total supply.
*
* Emits a {Transfer} event with `to` set to the zero address.
*
* Requirements:
*
* - `account` cannot be the zero address.
* - `account` must have at least `amount` tokens.
*/
function _burn(address account, uint256 amount) internal virtual {
require(account != address(0), "ERC20: burn from the zero address");
_beforeTokenTransfer(account, address(0), amount);
uint256 accountBalance = _balances[account];
require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
unchecked {
_balances[account] = accountBalance - amount;
}
_totalSupply -= amount;
emit Transfer(account, address(0), amount);
_afterTokenTransfer(account, address(0), amount);
}
/**
* @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
*
* This internal function is equivalent to `approve`, and can be used to
* e.g. set automatic allowances for certain subsystems, etc.
*
* Emits an {Approval} event.
*
* Requirements:
*
* - `owner` cannot be the zero address.
* - `spender` cannot be the zero address.
*/
function _approve(
address owner,
address spender,
uint256 amount
) internal virtual {
require(owner != address(0), "ERC20: approve from the zero address");
require(spender != address(0), "ERC20: approve to the zero address");
_allowances[owner][spender] = amount;
emit Approval(owner, spender, amount);
}
/**
* @dev Spend `amount` form the allowance of `owner` toward `spender`.
*
* Does not update the allowance amount in case of infinite allowance.
* Revert if not enough allowance is available.
*
* Might emit an {Approval} event.
*/
function _spendAllowance(
address owner,
address spender,
uint256 amount
) internal virtual {
uint256 currentAllowance = allowance(owner, spender);
if (currentAllowance != type(uint256).max) {
require(currentAllowance >= amount, "ERC20: insufficient allowance");
unchecked {
_approve(owner, spender, currentAllowance - amount);
}
}
}
/**
* @dev Hook that is called before any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* will be transferred to `to`.
* - when `from` is zero, `amount` tokens will be minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
/**
* @dev Hook that is called after any transfer of tokens. This includes
* minting and burning.
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
* has been transferred to `to`.
* - when `from` is zero, `amount` tokens have been minted for `to`.
* - when `to` is zero, `amount` of ``from``'s tokens have been burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _afterTokenTransfer(
address from,
address to,
uint256 amount
) internal virtual {}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(
IERC20 token,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
function safeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
/**
* @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
* on the return value: the return value is optional (but if data is returned, it must not be false).
* @param token The token targeted by the call.
* @param data The call data (encoded using abi.encode or one of its variants).
*/
function _callOptionalReturn(IERC20 token, bytes memory data) 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. We use {Address.functionCall} to perform this call, which verifies that
// the target address contains contract code and also asserts for success in the low-level call.
bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length > 0) {
// Return data is optional
require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.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].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being 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 percentage 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.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @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 making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
/**
* @dev Interface for the optional metadata functions from the ERC20 standard.
*
* _Available since v4.1._
*/
interface IERC20Metadata is IERC20 {
/**
* @dev Returns the name of the token.
*/
function name() external view returns (string memory);
/**
* @dev Returns the symbol of the token.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the decimals places of the token.
*/
function decimals() external view returns (uint8);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @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
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @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].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}{
"optimizer": {
"enabled": true,
"runs": 100000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"metadata": {
"useLiteralContent": true
},
"libraries": {
"src/libraries/MathLib.sol": {
"MathLib": "0xe3c08c95aa81474f44bee23f8c45d470ddad37be"
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_feeAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"creator","type":"address"},{"indexed":true,"internalType":"address","name":"exchangeAddress","type":"address"}],"name":"NewExchange","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"feeAddress","type":"address"}],"name":"SetFeeAddress","type":"event"},{"inputs":[{"internalType":"address","name":"_baseToken","type":"address"},{"internalType":"address","name":"_quoteToken","type":"address"}],"name":"createNewExchange","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"exchangeAddressByTokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isValidExchangeAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_feeAddress","type":"address"}],"name":"setFeeAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405234801561001057600080fd5b50604051613ff5380380613ff583398101604081905261002f91610107565b610038336100b7565b6001600160a01b0381166100925760405162461bcd60e51b815260206004820181905260248201527f45786368616e6765466163746f72793a20494e56414c49445f41444452455353604482015260640160405180910390fd5b600380546001600160a01b0319166001600160a01b0392909216919091179055610135565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208284031215610118578081fd5b81516001600160a01b038116811461012e578182fd5b9392505050565b613eb1806101446000396000f3fe60806040523480156200001157600080fd5b5060043610620000935760003560e01c80638705fcd411620000625780638705fcd414620001365780638cc774ec146200014d5780638da5cb5b1462000191578063f2fde38b14620001b057600080fd5b80630a6b78ff14620000985780631016954e14620000b15780634127535814620000ec578063715018a6146200012c575b600080fd5b620000af620000a936600462000b33565b620001c7565b005b620000d7620000c236600462000b0f565b60026020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b60035473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001620000e3565b620000af620005af565b620000af6200014736600462000b0f565b62000640565b620001066200015e36600462000b33565b600160209081526000928352604080842090915290825290205473ffffffffffffffffffffffffffffffffffffffff1681565b60005473ffffffffffffffffffffffffffffffffffffffff1662000106565b620000af620001c136600462000b0f565b62000800565b8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45786368616e6765466163746f72793a204944454e544943414c5f544f4b454e60448201527f530000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821615801590620002c4575073ffffffffffffffffffffffffffffffffffffffff811615155b62000352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45786368616e6765466163746f72793a20494e56414c49445f544f4b454e5f4160448201527f4444524553530000000000000000000000000000000000000000000000000000606482015260840162000280565b73ffffffffffffffffffffffffffffffffffffffff82811660009081526001602090815260408083208585168452909152902054161562000416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45786368616e6765466163746f72793a204455504c49434154455f455843484160448201527f4e47450000000000000000000000000000000000000000000000000000000000606482015260840162000280565b6000620004398373ffffffffffffffffffffffffffffffffffffffff1662000936565b905060006200045e8373ffffffffffffffffffffffffffffffffffffffff1662000936565b9050600082826040516020016200047792919062000ca7565b60405160208183030381529060405283836040516020016200049b92919062000d2d565b604051602081830303815290604052868630604051620004bb9062000ad7565b620004cb95949392919062000db3565b604051809103906000f080158015620004e8573d6000803e3d6000fd5b5073ffffffffffffffffffffffffffffffffffffffff86811660009081526001602081815260408084208a86168552825280842080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169587169586179055848452600290915280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690921790915551929350909133917f9d42cb017eb05bd8944ab536a8b35bc68085931dd5f4356489801453923953f991a35050505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331462000632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000280565b6200063e600062000a62565b565b60005473ffffffffffffffffffffffffffffffffffffffff163314620006c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000280565b73ffffffffffffffffffffffffffffffffffffffff81161580159062000704575060035473ffffffffffffffffffffffffffffffffffffffff828116911614155b62000791576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45786368616e6765466163746f72793a20494e56416c49445f4645455f41444460448201527f5245535300000000000000000000000000000000000000000000000000000000606482015260840162000280565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517ffcb8a963756b148f85a52537b63147b6c4b40af694099c901ac3b99d317a2db890600090a250565b60005473ffffffffffffffffffffffffffffffffffffffff16331462000883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000280565b73ffffffffffffffffffffffffffffffffffffffff811662000928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840162000280565b620009338162000a62565b50565b60408051600481526024810182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f95d89b41000000000000000000000000000000000000000000000000000000001790529051606091600091829173ffffffffffffffffffffffffffffffffffffffff861691620009ba919062000c89565b600060405180830381855afa9150503d8060008114620009f7576040519150601f19603f3d011682016040523d82523d6000602084013e620009fc565b606091505b5091509150811562000a26578080602001905181019062000a1e919062000b6a565b949350505050565b505060408051808201909152600381527f544b4e0000000000000000000000000000000000000000000000000000000000602082015292915050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6130058062000e7783390190565b803573ffffffffffffffffffffffffffffffffffffffff8116811462000b0a57600080fd5b919050565b60006020828403121562000b21578081fd5b62000b2c8262000ae5565b9392505050565b6000806040838503121562000b46578081fd5b62000b518362000ae5565b915062000b616020840162000ae5565b90509250929050565b60006020828403121562000b7c578081fd5b815167ffffffffffffffff8082111562000b94578283fd5b818401915084601f83011262000ba8578283fd5b81518181111562000bbd5762000bbd62000e47565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190838211818310171562000c065762000c0662000e47565b8160405282815287602084870101111562000c1f578586fd5b62000c3283602083016020880162000e14565b979650505050505050565b6000815180845262000c5781602086016020860162000e14565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000825162000c9d81846020870162000e14565b9190910192915050565b6000835162000cbb81846020880162000e14565b7f7600000000000000000000000000000000000000000000000000000000000000908301908152835162000cf781600184016020880162000e14565b7f20456c617374696353776170204c697175696469747920546f6b656e0000000060019290910191820152601d01949350505050565b6000835162000d4181846020880162000e14565b7f7600000000000000000000000000000000000000000000000000000000000000908301908152835162000d7d81600184016020880162000e14565b7f2d454c500000000000000000000000000000000000000000000000000000000060019290910191820152600501949350505050565b60a08152600062000dc860a083018862000c3d565b828103602084015262000ddc818862000c3d565b73ffffffffffffffffffffffffffffffffffffffff968716604085015294861660608401525050921660809092019190915292915050565b60005b8381101562000e3157818101518382015260200162000e17565b8381111562000e41576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfe60e06040523480156200001157600080fd5b50604051620030053803806200300583398101604081905262000034916200020c565b8451859085906200004d90600390602085019062000096565b5080516200006390600490602084019062000096565b50506001600555506001600160601b0319606093841b811660805291831b821660a05290911b1660c05250620002fe9050565b828054620000a490620002ab565b90600052602060002090601f016020900481019282620000c8576000855562000113565b82601f10620000e357805160ff191683800117855562000113565b8280016001018555821562000113579182015b8281111562000113578251825591602001919060010190620000f6565b506200012192915062000125565b5090565b5b8082111562000121576000815560010162000126565b80516001600160a01b03811681146200015457600080fd5b919050565b600082601f8301126200016a578081fd5b81516001600160401b0380821115620001875762000187620002e8565b604051601f8301601f19908116603f01168101908282118183101715620001b257620001b2620002e8565b81604052838152602092508683858801011115620001ce578485fd5b8491505b83821015620001f15785820183015181830184015290820190620001d2565b838211156200020257848385830101525b9695505050505050565b600080600080600060a0868803121562000224578081fd5b85516001600160401b03808211156200023b578283fd5b6200024989838a0162000159565b965060208801519150808211156200025f578283fd5b506200026e8882890162000159565b9450506200027f604087016200013c565b92506200028f606087016200013c565b91506200029f608087016200013c565b90509295509295909350565b600181811c90821680620002c057607f821691505b60208210811415620002e257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a05160601c60c05160601c612c65620003a06000396000818161039701528181610f8b01526119dc0152600081816101d40152818161070c01528181610bc1015281816112b6015281816116950152611ae3015260008181610317015281816106ca01528181610a8901528181610c0301528181610e3e0152818161111001528181611170015281816115bd0152611aa20152612c656000f3fe608060405234801561001057600080fd5b50600436106101775760003560e01c806395d89b41116100d8578063c55dae631161008c578063eb443eb011610066578063eb443eb014610392578063eba25b15146103b9578063ed856cdc146103c157600080fd5b8063c55dae6314610312578063dd62ed3e14610339578063ded998b91461037f57600080fd5b8063a9059cbb116100bd578063a9059cbb146102e3578063ba9a7a56146102f6578063be7305a1146102ff57600080fd5b806395d89b41146102c8578063a457c2d7146102d057600080fd5b80632cd611bc1161012f578063395093511161011457806339509351146102525780634d67a0a31461026557806370a082311461029257600080fd5b80632cd611bc1461022e578063313ce5671461024357600080fd5b806318160ddd1161016057806318160ddd146101bd578063217a4b70146101cf57806323b872dd1461021b57600080fd5b806306fdde031461017c578063095ea7b31461019a575b600080fd5b6101846103d4565b6040516101919190612a65565b60405180910390f35b6101ad6101a8366004612895565b610466565b6040519015158152602001610191565b6002545b604051908152602001610191565b6101f67f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610191565b6101ad610229366004612855565b61047e565b61024161023c366004612982565b6104a4565b005b60405160128152602001610191565b6101ad610260366004612895565b61078d565b60065460075460085461027792919083565b60408051938452602084019290925290820152606001610191565b6101c16102a03660046127e5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101846107d9565b6101ad6102de366004612895565b6107e8565b6101ad6102f1366004612895565b6108c4565b6101c16103e881565b61024161030d366004612982565b6108d2565b6101f67f000000000000000000000000000000000000000000000000000000000000000081565b6101c161034736600461281d565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b61024161038d3660046129f5565b610c74565b6101f67f000000000000000000000000000000000000000000000000000000000000000081565b6101c1603281565b6102416103cf3660046129ad565b611331565b6060600380546103e390612b87565b80601f016020809104026020016040519081016040528092919081815260200182805461040f90612b87565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b600033610474818585611b58565b5060019392505050565b60003361048c858285611d0b565b610497858585611de2565b60019150505b9392505050565b60026005541415610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026005558042811015610586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f45786368616e67653a2045585049524544000000000000000000000000000000604482015260640161050d565b831580159061059457508215155b6105fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f45786368616e67653a20494e53554646494349454e545f544f4b454e5f515459604482015260640161050d565b6040517faf22e8640000000000000000000000000000000000000000000000000000000081526004810185905260248101849052603260448201526006606482015260009073e3c08c95aa81474f44bee23f8c45d470ddad37be9063af22e8649060840160206040518083038186803b15801561067657600080fd5b505af415801561068a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ae919061296a565b90506106f273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016333088612095565b61073373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163383612171565b60408051868152600060208201819052918101919091526060810182905233907f49926bbebe8474393f434dfa4f78694c0923efa07d19f2284518bfabd06eb737906080015b60405180910390a250506001600555505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919061047490829086906107d4908790612ab6565b611b58565b6060600480546103e390612b87565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156108ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161050d565b6108b98286868403611b58565b506001949350505050565b600033610474818585611de2565b6002600554141561093f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050d565b600260055580428110156109af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f45786368616e67653a2045585049524544000000000000000000000000000000604482015260640161050d565b83158015906109bd57508215155b610a23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f45786368616e67653a20494e53554646494349454e545f544f4b454e5f515459604482015260640161050d565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073e3c08c95aa81474f44bee23f8c45d470ddad37be9063c131f417908790879073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b158015610acb57600080fd5b505afa158015610adf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b03919061296a565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b168152600481019390935260248301919091526044820152603260648201526006608482015260a40160206040518083038186803b158015610b6d57600080fd5b505af4158015610b81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba5919061296a565b9050610be973ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016333088612095565b610c2a73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163383612171565b60408051600080825260208201889052918101839052606081019190915233907f49926bbebe8474393f434dfa4f78694c0923efa07d19f2284518bfabd06eb73790608001610779565b60026005541415610ce1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050d565b60026005558042811015610d51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f45786368616e67653a2045585049524544000000000000000000000000000000604482015260640161050d565b60003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610d9957600080fd5b505afa158015610dad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd1919061296a565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290915060009073e3c08c95aa81474f44bee23f8c45d470ddad37be9063faf5c6ed908b908b908b908b9073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b158015610e8057600080fd5b505afa158015610e94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb8919061296a565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b1681526004810195909552602485019390935260448401919091526064830152608482015260a48101859052600660c482015260e40160806040518083038186803b158015610f2f57600080fd5b505af4158015610f43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6791906128e0565b600754600654919250610f7991612b07565b600855606081015115611031576110317f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663412753586040518163ffffffff1660e01b815260040160206040518083038186803b158015610fef57600080fd5b505afa158015611003573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110279190612801565b82606001516121cc565b811580156110de576103e88260400151116110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45786368616e67653a20494e495449414c5f4445504f5349545f4d494e000000604482015260640161050d565b6040820180517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc180190526110de306103e86121cc565b6110ec8683604001516121cc565b81511561128c57815161113a9073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169033903090612095565b801561128c5781516040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906370a082319060240160206040518083038186803b1580156111c757600080fd5b505afa1580156111db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ff919061296a565b1461128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f45786368616e67653a204645455f4f4e5f5452414e534645525f4e4f545f535560448201527f50504f5254454400000000000000000000000000000000000000000000000000606482015260840161050d565b6020820151156112e05760208201516112e09073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169033903090612095565b8151602080840151604080519384529183015233917f06239653922ac7bea6aa2b19dc486b9361821d37712eb796adfd38d81de278ca910160405180910390a2505060016005555050505050505050565b6002600554141561139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050d565b6002600555804281101561140e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f45786368616e67653a2045585049524544000000000000000000000000000000604482015260640161050d565b3073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561145457600080fd5b505afa158015611468573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148c919061296a565b6114f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f45786368616e67653a20494e53554646494349454e545f4c4951554944495459604482015260640161050d565b841580159061150057508315155b61158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45786368616e67653a204d494e535f4d5553545f42455f475245415445525f5460448201527f48414e5f5a45524f000000000000000000000000000000000000000000000000606482015260840161050d565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906370a082319060240160206040518083038186803b15801561161457600080fd5b505afa158015611628573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164c919061296a565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290915060009073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b1580156116d757600080fd5b505afa1580156116eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061170f919061296a565b905060003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561175957600080fd5b505afa15801561176d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611791919061296a565b6040517f6cb4024b0000000000000000000000000000000000000000000000000000000081526004810182905260065460248201526007546044820152600854606482015290915060009073e3c08c95aa81474f44bee23f8c45d470ddad37be90636cb4024b9060840160206040518083038186803b15801561181357600080fd5b505af4158015611827573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184b919061296a565b90506118578183612ab6565b9150600082611866868d612b07565b6118709190612ace565b905060008361187f868e612b07565b6118899190612ace565b90508a8210156118f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45786368616e67653a20494e53554646494349454e545f424153455f51545900604482015260640161050d565b8981101561195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f45786368616e67653a20494e53554646494349454e545f51554f54455f515459604482015260640161050d565b60006006600001549050600085828f6119789190612b07565b6119829190612ace565b905061198e8183612b44565b6006819055600754909250808411156119ae5750600060078190556119c0565b6119b88482612b44565b600781905590505b6119ca8184612b07565b600855505083159050611a7e57611a7e7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663412753586040518163ffffffff1660e01b815260040160206040518083038186803b158015611a4057600080fd5b505afa158015611a54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a789190612801565b846121cc565b611a88338d6122ec565b611ac973ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168a84612171565b611b0a73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168a83612171565b604080518381526020810183905233917f0fbf06c058b90cb038a618f8c2acbf6145f8b3570fd1fa56abb8f0f3f05b36e8910160405180910390a25050600160055550505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161050d565b73ffffffffffffffffffffffffffffffffffffffff8216611c9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161050d565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ddc5781811015611dcf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161050d565b611ddc8484848403611b58565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316611e85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161050d565b73ffffffffffffffffffffffffffffffffffffffff8216611f28576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161050d565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015611fde576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161050d565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290612022908490612ab6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161208891815260200190565b60405180910390a3611ddc565b60405173ffffffffffffffffffffffffffffffffffffffff80851660248301528316604482015260648101829052611ddc9085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526124d9565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526121c79084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064016120ef565b505050565b73ffffffffffffffffffffffffffffffffffffffff8216612249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161050d565b806002600082825461225b9190612ab6565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290612295908490612ab6565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff821661238f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161050d565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015612445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161050d565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290612481908490612b44565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600061253b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166125e59092919063ffffffff16565b8051909150156121c7578080602001905181019061255991906128c0565b6121c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161050d565b60606125f484846000856125fc565b949350505050565b60608247101561268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161050d565b73ffffffffffffffffffffffffffffffffffffffff85163b61270c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161050d565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516127359190612a49565b60006040518083038185875af1925050503d8060008114612772576040519150601f19603f3d011682016040523d82523d6000602084013e612777565b606091505b5091509150612787828286612792565b979650505050505050565b606083156127a157508161049d565b8251156127b15782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050d9190612a65565b6000602082840312156127f6578081fd5b813561049d81612c0a565b600060208284031215612812578081fd5b815161049d81612c0a565b6000806040838503121561282f578081fd5b823561283a81612c0a565b9150602083013561284a81612c0a565b809150509250929050565b600080600060608486031215612869578081fd5b833561287481612c0a565b9250602084013561288481612c0a565b929592945050506040919091013590565b600080604083850312156128a7578182fd5b82356128b281612c0a565b946020939093013593505050565b6000602082840312156128d1578081fd5b8151801515811461049d578182fd5b6000608082840312156128f1578081fd5b6040516080810181811067ffffffffffffffff82111715612939577f4e487b710000000000000000000000000000000000000000000000000000000083526041600452602483fd5b8060405250825181526020830151602082015260408301516040820152606083015160608201528091505092915050565b60006020828403121561297b578081fd5b5051919050565b600080600060608486031215612996578283fd5b505081359360208301359350604090920135919050565b600080600080600060a086880312156129c4578081fd5b85359450602086013593506040860135925060608601356129e481612c0a565b949793965091946080013592915050565b60008060008060008060c08789031215612a0d578081fd5b863595506020870135945060408701359350606087013592506080870135612a3481612c0a565b8092505060a087013590509295509295509295565b60008251612a5b818460208701612b5b565b9190910192915050565b6020815260008251806020840152612a84816040850160208701612b5b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60008219821115612ac957612ac9612bdb565b500190565b600082612b02577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b3f57612b3f612bdb565b500290565b600082821015612b5657612b56612bdb565b500390565b60005b83811015612b76578181015183820152602001612b5e565b83811115611ddc5750506000910152565b600181811c90821680612b9b57607f821691505b60208210811415612bd5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff81168114612c2c57600080fd5b5056fea264697066735822122047f40a10f2887cd50f47c72dd1e836aac039f8a3b9f2b259d8c26eddb3c4a67364736f6c63430008040033a264697066735822122060a96eeadfa95780fa37990d8a30cc3f34ea0742e06513621537877a496d6c2964736f6c63430008040033000000000000000000000000ffc2b319406555223afe6df7b82ffd100351bcb9
Deployed Bytecode
0x60806040523480156200001157600080fd5b5060043610620000935760003560e01c80638705fcd411620000625780638705fcd414620001365780638cc774ec146200014d5780638da5cb5b1462000191578063f2fde38b14620001b057600080fd5b80630a6b78ff14620000985780631016954e14620000b15780634127535814620000ec578063715018a6146200012c575b600080fd5b620000af620000a936600462000b33565b620001c7565b005b620000d7620000c236600462000b0f565b60026020526000908152604090205460ff1681565b60405190151581526020015b60405180910390f35b60035473ffffffffffffffffffffffffffffffffffffffff165b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001620000e3565b620000af620005af565b620000af6200014736600462000b0f565b62000640565b620001066200015e36600462000b33565b600160209081526000928352604080842090915290825290205473ffffffffffffffffffffffffffffffffffffffff1681565b60005473ffffffffffffffffffffffffffffffffffffffff1662000106565b620000af620001c136600462000b0f565b62000800565b8073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000289576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45786368616e6765466163746f72793a204944454e544943414c5f544f4b454e60448201527f530000000000000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff821615801590620002c4575073ffffffffffffffffffffffffffffffffffffffff811615155b62000352576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45786368616e6765466163746f72793a20494e56414c49445f544f4b454e5f4160448201527f4444524553530000000000000000000000000000000000000000000000000000606482015260840162000280565b73ffffffffffffffffffffffffffffffffffffffff82811660009081526001602090815260408083208585168452909152902054161562000416576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45786368616e6765466163746f72793a204455504c49434154455f455843484160448201527f4e47450000000000000000000000000000000000000000000000000000000000606482015260840162000280565b6000620004398373ffffffffffffffffffffffffffffffffffffffff1662000936565b905060006200045e8373ffffffffffffffffffffffffffffffffffffffff1662000936565b9050600082826040516020016200047792919062000ca7565b60405160208183030381529060405283836040516020016200049b92919062000d2d565b604051602081830303815290604052868630604051620004bb9062000ad7565b620004cb95949392919062000db3565b604051809103906000f080158015620004e8573d6000803e3d6000fd5b5073ffffffffffffffffffffffffffffffffffffffff86811660009081526001602081815260408084208a86168552825280842080547fffffffffffffffffffffffff0000000000000000000000000000000000000000169587169586179055848452600290915280832080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690921790915551929350909133917f9d42cb017eb05bd8944ab536a8b35bc68085931dd5f4356489801453923953f991a35050505050565b60005473ffffffffffffffffffffffffffffffffffffffff16331462000632576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000280565b6200063e600062000a62565b565b60005473ffffffffffffffffffffffffffffffffffffffff163314620006c3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000280565b73ffffffffffffffffffffffffffffffffffffffff81161580159062000704575060035473ffffffffffffffffffffffffffffffffffffffff828116911614155b62000791576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45786368616e6765466163746f72793a20494e56416c49445f4645455f41444460448201527f5245535300000000000000000000000000000000000000000000000000000000606482015260840162000280565b600380547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040517ffcb8a963756b148f85a52537b63147b6c4b40af694099c901ac3b99d317a2db890600090a250565b60005473ffffffffffffffffffffffffffffffffffffffff16331462000883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640162000280565b73ffffffffffffffffffffffffffffffffffffffff811662000928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f6464726573730000000000000000000000000000000000000000000000000000606482015260840162000280565b620009338162000a62565b50565b60408051600481526024810182526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f95d89b41000000000000000000000000000000000000000000000000000000001790529051606091600091829173ffffffffffffffffffffffffffffffffffffffff861691620009ba919062000c89565b600060405180830381855afa9150503d8060008114620009f7576040519150601f19603f3d011682016040523d82523d6000602084013e620009fc565b606091505b5091509150811562000a26578080602001905181019062000a1e919062000b6a565b949350505050565b505060408051808201909152600381527f544b4e0000000000000000000000000000000000000000000000000000000000602082015292915050565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6130058062000e7783390190565b803573ffffffffffffffffffffffffffffffffffffffff8116811462000b0a57600080fd5b919050565b60006020828403121562000b21578081fd5b62000b2c8262000ae5565b9392505050565b6000806040838503121562000b46578081fd5b62000b518362000ae5565b915062000b616020840162000ae5565b90509250929050565b60006020828403121562000b7c578081fd5b815167ffffffffffffffff8082111562000b94578283fd5b818401915084601f83011262000ba8578283fd5b81518181111562000bbd5762000bbd62000e47565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f0116810190838211818310171562000c065762000c0662000e47565b8160405282815287602084870101111562000c1f578586fd5b62000c3283602083016020880162000e14565b979650505050505050565b6000815180845262000c5781602086016020860162000e14565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169290920160200192915050565b6000825162000c9d81846020870162000e14565b9190910192915050565b6000835162000cbb81846020880162000e14565b7f7600000000000000000000000000000000000000000000000000000000000000908301908152835162000cf781600184016020880162000e14565b7f20456c617374696353776170204c697175696469747920546f6b656e0000000060019290910191820152601d01949350505050565b6000835162000d4181846020880162000e14565b7f7600000000000000000000000000000000000000000000000000000000000000908301908152835162000d7d81600184016020880162000e14565b7f2d454c500000000000000000000000000000000000000000000000000000000060019290910191820152600501949350505050565b60a08152600062000dc860a083018862000c3d565b828103602084015262000ddc818862000c3d565b73ffffffffffffffffffffffffffffffffffffffff968716604085015294861660608401525050921660809092019190915292915050565b60005b8381101562000e3157818101518382015260200162000e17565b8381111562000e41576000848401525b50505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fdfe60e06040523480156200001157600080fd5b50604051620030053803806200300583398101604081905262000034916200020c565b8451859085906200004d90600390602085019062000096565b5080516200006390600490602084019062000096565b50506001600555506001600160601b0319606093841b811660805291831b821660a05290911b1660c05250620002fe9050565b828054620000a490620002ab565b90600052602060002090601f016020900481019282620000c8576000855562000113565b82601f10620000e357805160ff191683800117855562000113565b8280016001018555821562000113579182015b8281111562000113578251825591602001919060010190620000f6565b506200012192915062000125565b5090565b5b8082111562000121576000815560010162000126565b80516001600160a01b03811681146200015457600080fd5b919050565b600082601f8301126200016a578081fd5b81516001600160401b0380821115620001875762000187620002e8565b604051601f8301601f19908116603f01168101908282118183101715620001b257620001b2620002e8565b81604052838152602092508683858801011115620001ce578485fd5b8491505b83821015620001f15785820183015181830184015290820190620001d2565b838211156200020257848385830101525b9695505050505050565b600080600080600060a0868803121562000224578081fd5b85516001600160401b03808211156200023b578283fd5b6200024989838a0162000159565b965060208801519150808211156200025f578283fd5b506200026e8882890162000159565b9450506200027f604087016200013c565b92506200028f606087016200013c565b91506200029f608087016200013c565b90509295509295909350565b600181811c90821680620002c057607f821691505b60208210811415620002e257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a05160601c60c05160601c612c65620003a06000396000818161039701528181610f8b01526119dc0152600081816101d40152818161070c01528181610bc1015281816112b6015281816116950152611ae3015260008181610317015281816106ca01528181610a8901528181610c0301528181610e3e0152818161111001528181611170015281816115bd0152611aa20152612c656000f3fe608060405234801561001057600080fd5b50600436106101775760003560e01c806395d89b41116100d8578063c55dae631161008c578063eb443eb011610066578063eb443eb014610392578063eba25b15146103b9578063ed856cdc146103c157600080fd5b8063c55dae6314610312578063dd62ed3e14610339578063ded998b91461037f57600080fd5b8063a9059cbb116100bd578063a9059cbb146102e3578063ba9a7a56146102f6578063be7305a1146102ff57600080fd5b806395d89b41146102c8578063a457c2d7146102d057600080fd5b80632cd611bc1161012f578063395093511161011457806339509351146102525780634d67a0a31461026557806370a082311461029257600080fd5b80632cd611bc1461022e578063313ce5671461024357600080fd5b806318160ddd1161016057806318160ddd146101bd578063217a4b70146101cf57806323b872dd1461021b57600080fd5b806306fdde031461017c578063095ea7b31461019a575b600080fd5b6101846103d4565b6040516101919190612a65565b60405180910390f35b6101ad6101a8366004612895565b610466565b6040519015158152602001610191565b6002545b604051908152602001610191565b6101f67f000000000000000000000000000000000000000000000000000000000000000081565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610191565b6101ad610229366004612855565b61047e565b61024161023c366004612982565b6104a4565b005b60405160128152602001610191565b6101ad610260366004612895565b61078d565b60065460075460085461027792919083565b60408051938452602084019290925290820152606001610191565b6101c16102a03660046127e5565b73ffffffffffffffffffffffffffffffffffffffff1660009081526020819052604090205490565b6101846107d9565b6101ad6102de366004612895565b6107e8565b6101ad6102f1366004612895565b6108c4565b6101c16103e881565b61024161030d366004612982565b6108d2565b6101f67f000000000000000000000000000000000000000000000000000000000000000081565b6101c161034736600461281d565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260016020908152604080832093909416825291909152205490565b61024161038d3660046129f5565b610c74565b6101f67f000000000000000000000000000000000000000000000000000000000000000081565b6101c1603281565b6102416103cf3660046129ad565b611331565b6060600380546103e390612b87565b80601f016020809104026020016040519081016040528092919081815260200182805461040f90612b87565b801561045c5780601f106104315761010080835404028352916020019161045c565b820191906000526020600020905b81548152906001019060200180831161043f57829003601f168201915b5050505050905090565b600033610474818585611b58565b5060019392505050565b60003361048c858285611d0b565b610497858585611de2565b60019150505b9392505050565b60026005541415610516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b60026005558042811015610586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f45786368616e67653a2045585049524544000000000000000000000000000000604482015260640161050d565b831580159061059457508215155b6105fa576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f45786368616e67653a20494e53554646494349454e545f544f4b454e5f515459604482015260640161050d565b6040517faf22e8640000000000000000000000000000000000000000000000000000000081526004810185905260248101849052603260448201526006606482015260009073e3c08c95aa81474f44bee23f8c45d470ddad37be9063af22e8649060840160206040518083038186803b15801561067657600080fd5b505af415801561068a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ae919061296a565b90506106f273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016333088612095565b61073373ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163383612171565b60408051868152600060208201819052918101919091526060810182905233907f49926bbebe8474393f434dfa4f78694c0923efa07d19f2284518bfabd06eb737906080015b60405180910390a250506001600555505050565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff8716845290915281205490919061047490829086906107d4908790612ab6565b611b58565b6060600480546103e390612b87565b33600081815260016020908152604080832073ffffffffffffffffffffffffffffffffffffffff87168452909152812054909190838110156108ac576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f000000000000000000000000000000000000000000000000000000606482015260840161050d565b6108b98286868403611b58565b506001949350505050565b600033610474818585611de2565b6002600554141561093f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050d565b600260055580428110156109af576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f45786368616e67653a2045585049524544000000000000000000000000000000604482015260640161050d565b83158015906109bd57508215155b610a23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f45786368616e67653a20494e53554646494349454e545f544f4b454e5f515459604482015260640161050d565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015260009073e3c08c95aa81474f44bee23f8c45d470ddad37be9063c131f417908790879073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b158015610acb57600080fd5b505afa158015610adf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b03919061296a565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e086901b168152600481019390935260248301919091526044820152603260648201526006608482015260a40160206040518083038186803b158015610b6d57600080fd5b505af4158015610b81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba5919061296a565b9050610be973ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016333088612095565b610c2a73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000163383612171565b60408051600080825260208201889052918101839052606081019190915233907f49926bbebe8474393f434dfa4f78694c0923efa07d19f2284518bfabd06eb73790608001610779565b60026005541415610ce1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050d565b60026005558042811015610d51576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f45786368616e67653a2045585049524544000000000000000000000000000000604482015260640161050d565b60003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610d9957600080fd5b505afa158015610dad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dd1919061296a565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290915060009073e3c08c95aa81474f44bee23f8c45d470ddad37be9063faf5c6ed908b908b908b908b9073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b158015610e8057600080fd5b505afa158015610e94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb8919061296a565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e088901b1681526004810195909552602485019390935260448401919091526064830152608482015260a48101859052600660c482015260e40160806040518083038186803b158015610f2f57600080fd5b505af4158015610f43573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f6791906128e0565b600754600654919250610f7991612b07565b600855606081015115611031576110317f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663412753586040518163ffffffff1660e01b815260040160206040518083038186803b158015610fef57600080fd5b505afa158015611003573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110279190612801565b82606001516121cc565b811580156110de576103e88260400151116110a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45786368616e67653a20494e495449414c5f4445504f5349545f4d494e000000604482015260640161050d565b6040820180517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffc180190526110de306103e86121cc565b6110ec8683604001516121cc565b81511561128c57815161113a9073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169033903090612095565b801561128c5781516040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906370a082319060240160206040518083038186803b1580156111c757600080fd5b505afa1580156111db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111ff919061296a565b1461128c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602760248201527f45786368616e67653a204645455f4f4e5f5452414e534645525f4e4f545f535560448201527f50504f5254454400000000000000000000000000000000000000000000000000606482015260840161050d565b6020820151156112e05760208201516112e09073ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000169033903090612095565b8151602080840151604080519384529183015233917f06239653922ac7bea6aa2b19dc486b9361821d37712eb796adfd38d81de278ca910160405180910390a2505060016005555050505050505050565b6002600554141561139e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161050d565b6002600555804281101561140e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f45786368616e67653a2045585049524544000000000000000000000000000000604482015260640161050d565b3073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561145457600080fd5b505afa158015611468573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061148c919061296a565b6114f2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f45786368616e67653a20494e53554646494349454e545f4c4951554944495459604482015260640161050d565b841580159061150057508315155b61158c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602860248201527f45786368616e67653a204d494e535f4d5553545f42455f475245415445525f5460448201527f48414e5f5a45524f000000000000000000000000000000000000000000000000606482015260840161050d565b6040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000907f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16906370a082319060240160206040518083038186803b15801561161457600080fd5b505afa158015611628573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164c919061296a565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290915060009073ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016906370a082319060240160206040518083038186803b1580156116d757600080fd5b505afa1580156116eb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061170f919061296a565b905060003073ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561175957600080fd5b505afa15801561176d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611791919061296a565b6040517f6cb4024b0000000000000000000000000000000000000000000000000000000081526004810182905260065460248201526007546044820152600854606482015290915060009073e3c08c95aa81474f44bee23f8c45d470ddad37be90636cb4024b9060840160206040518083038186803b15801561181357600080fd5b505af4158015611827573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061184b919061296a565b90506118578183612ab6565b9150600082611866868d612b07565b6118709190612ace565b905060008361187f868e612b07565b6118899190612ace565b90508a8210156118f5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45786368616e67653a20494e53554646494349454e545f424153455f51545900604482015260640161050d565b8981101561195f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f45786368616e67653a20494e53554646494349454e545f51554f54455f515459604482015260640161050d565b60006006600001549050600085828f6119789190612b07565b6119829190612ace565b905061198e8183612b44565b6006819055600754909250808411156119ae5750600060078190556119c0565b6119b88482612b44565b600781905590505b6119ca8184612b07565b600855505083159050611a7e57611a7e7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663412753586040518163ffffffff1660e01b815260040160206040518083038186803b158015611a4057600080fd5b505afa158015611a54573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a789190612801565b846121cc565b611a88338d6122ec565b611ac973ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168a84612171565b611b0a73ffffffffffffffffffffffffffffffffffffffff7f0000000000000000000000000000000000000000000000000000000000000000168a83612171565b604080518381526020810183905233917f0fbf06c058b90cb038a618f8c2acbf6145f8b3570fd1fa56abb8f0f3f05b36e8910160405180910390a25050600160055550505050505050505050565b73ffffffffffffffffffffffffffffffffffffffff8316611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f7265737300000000000000000000000000000000000000000000000000000000606482015260840161050d565b73ffffffffffffffffffffffffffffffffffffffff8216611c9d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f7373000000000000000000000000000000000000000000000000000000000000606482015260840161050d565b73ffffffffffffffffffffffffffffffffffffffff83811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b73ffffffffffffffffffffffffffffffffffffffff8381166000908152600160209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611ddc5781811015611dcf576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161050d565b611ddc8484848403611b58565b50505050565b73ffffffffffffffffffffffffffffffffffffffff8316611e85576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f6472657373000000000000000000000000000000000000000000000000000000606482015260840161050d565b73ffffffffffffffffffffffffffffffffffffffff8216611f28576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f6573730000000000000000000000000000000000000000000000000000000000606482015260840161050d565b73ffffffffffffffffffffffffffffffffffffffff831660009081526020819052604090205481811015611fde576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e742065786365656473206260448201527f616c616e63650000000000000000000000000000000000000000000000000000606482015260840161050d565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260208190526040808220858503905591851681529081208054849290612022908490612ab6565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161208891815260200190565b60405180910390a3611ddc565b60405173ffffffffffffffffffffffffffffffffffffffff80851660248301528316604482015260648101829052611ddc9085907f23b872dd00000000000000000000000000000000000000000000000000000000906084015b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe08184030181529190526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fffffffff00000000000000000000000000000000000000000000000000000000909316929092179091526124d9565b60405173ffffffffffffffffffffffffffffffffffffffff83166024820152604481018290526121c79084907fa9059cbb00000000000000000000000000000000000000000000000000000000906064016120ef565b505050565b73ffffffffffffffffffffffffffffffffffffffff8216612249576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161050d565b806002600082825461225b9190612ab6565b909155505073ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604081208054839290612295908490612ab6565b909155505060405181815273ffffffffffffffffffffffffffffffffffffffff8316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b73ffffffffffffffffffffffffffffffffffffffff821661238f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360448201527f7300000000000000000000000000000000000000000000000000000000000000606482015260840161050d565b73ffffffffffffffffffffffffffffffffffffffff821660009081526020819052604090205481811015612445576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60448201527f6365000000000000000000000000000000000000000000000000000000000000606482015260840161050d565b73ffffffffffffffffffffffffffffffffffffffff83166000908152602081905260408120838303905560028054849290612481908490612b44565b909155505060405182815260009073ffffffffffffffffffffffffffffffffffffffff8516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600061253b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166125e59092919063ffffffff16565b8051909150156121c7578080602001905181019061255991906128c0565b6121c7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f74207375636365656400000000000000000000000000000000000000000000606482015260840161050d565b60606125f484846000856125fc565b949350505050565b60608247101561268e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f60448201527f722063616c6c0000000000000000000000000000000000000000000000000000606482015260840161050d565b73ffffffffffffffffffffffffffffffffffffffff85163b61270c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161050d565b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516127359190612a49565b60006040518083038185875af1925050503d8060008114612772576040519150601f19603f3d011682016040523d82523d6000602084013e612777565b606091505b5091509150612787828286612792565b979650505050505050565b606083156127a157508161049d565b8251156127b15782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161050d9190612a65565b6000602082840312156127f6578081fd5b813561049d81612c0a565b600060208284031215612812578081fd5b815161049d81612c0a565b6000806040838503121561282f578081fd5b823561283a81612c0a565b9150602083013561284a81612c0a565b809150509250929050565b600080600060608486031215612869578081fd5b833561287481612c0a565b9250602084013561288481612c0a565b929592945050506040919091013590565b600080604083850312156128a7578182fd5b82356128b281612c0a565b946020939093013593505050565b6000602082840312156128d1578081fd5b8151801515811461049d578182fd5b6000608082840312156128f1578081fd5b6040516080810181811067ffffffffffffffff82111715612939577f4e487b710000000000000000000000000000000000000000000000000000000083526041600452602483fd5b8060405250825181526020830151602082015260408301516040820152606083015160608201528091505092915050565b60006020828403121561297b578081fd5b5051919050565b600080600060608486031215612996578283fd5b505081359360208301359350604090920135919050565b600080600080600060a086880312156129c4578081fd5b85359450602086013593506040860135925060608601356129e481612c0a565b949793965091946080013592915050565b60008060008060008060c08789031215612a0d578081fd5b863595506020870135945060408701359350606087013592506080870135612a3481612c0a565b8092505060a087013590509295509295509295565b60008251612a5b818460208701612b5b565b9190910192915050565b6020815260008251806020840152612a84816040850160208701612b5b565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0169190910160400192915050565b60008219821115612ac957612ac9612bdb565b500190565b600082612b02577f4e487b710000000000000000000000000000000000000000000000000000000081526012600452602481fd5b500490565b6000817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615612b3f57612b3f612bdb565b500290565b600082821015612b5657612b56612bdb565b500390565b60005b83811015612b76578181015183820152602001612b5e565b83811115611ddc5750506000910152565b600181811c90821680612b9b57607f821691505b60208210811415612bd5577f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b73ffffffffffffffffffffffffffffffffffffffff81168114612c2c57600080fd5b5056fea264697066735822122047f40a10f2887cd50f47c72dd1e836aac039f8a3b9f2b259d8c26eddb3c4a67364736f6c63430008040033a264697066735822122060a96eeadfa95780fa37990d8a30cc3f34ea0742e06513621537877a496d6c2964736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ffc2b319406555223afe6df7b82ffd100351bcb9
-----Decoded View---------------
Arg [0] : _feeAddress (address): 0xffC2b319406555223AFE6DF7b82Ffd100351bcb9
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000ffc2b319406555223afe6df7b82ffd100351bcb9
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
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.