Source Code
Overview
ETH Balance
0 ETH
ETH Value
$0.00View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
AmmVaultData
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // Inheritance import "./AmmVault.sol"; import "../utils/proxy/solidity-0.8.0/ProxyOwned.sol"; import "../utils/proxy/solidity-0.8.0/ProxyPausable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; contract AmmVaultData is Initializable, ProxyOwned, ProxyPausable { struct VaultData { bool vaultStarted; uint maxAllowedDeposit; uint round; uint roundEndTime; uint availableAllocationNextRound; uint minDepositAmount; uint maxAllowedUsers; uint usersCurrentlyInVault; bool canCloseCurrentRound; bool paused; uint utilizationRate; uint priceLowerLimit; uint priceUpperLimit; int skewImpactLimit; uint allocationLimitsPerMarketPerRound; uint minTradeAmount; uint roundLength; uint allocationCurrentRound; uint allocationNextRound; uint lifetimePnl; uint allocationSpentInARound; uint tradingAllocation; } struct UserVaultData { uint balanceCurrentRound; uint balanceNextRound; bool withdrawalRequested; } function initialize(address _owner) external initializer { setOwner(_owner); } /// @notice getAmmVaultData returns AMM vault data /// @param ammVault AmmVault /// @return VaultData function getAmmVaultData(AmmVault ammVault) external view returns (VaultData memory) { uint round = ammVault.round(); return VaultData( ammVault.vaultStarted(), ammVault.maxAllowedDeposit(), round, ammVault.getCurrentRoundEnd(), ammVault.getAvailableToDeposit(), ammVault.minDepositAmount(), ammVault.maxAllowedUsers(), ammVault.usersCurrentlyInVault(), ammVault.canCloseCurrentRound(), ammVault.paused(), ammVault.utilizationRate(), ammVault.priceLowerLimit(), ammVault.priceUpperLimit(), ammVault.skewImpactLimit(), ammVault.allocationLimitsPerMarketPerRound(), ammVault.minTradeAmount(), ammVault.roundLength(), ammVault.allocationPerRound(round), ammVault.capPerRound(round + 1), ammVault.cumulativeProfitAndLoss(round > 0 ? round - 1 : 0), ammVault.allocationSpentInARound(round), ammVault.tradingAllocation() ); } /// @notice getUserAmmVaultData returns user AMM vault data /// @param ammVault AmmVault /// @param user address of the user /// @return UserVaultData function getUserAmmVaultData(AmmVault ammVault, address user) external view returns (UserVaultData memory) { uint round = ammVault.round(); return UserVaultData( ammVault.balancesPerRound(round, user), ammVault.balancesPerRound(round + 1, user), ammVault.withdrawalRequested(user) ); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts-upgradeable/token/ERC20/utils/SafeERC20Upgradeable.sol"; import "@openzeppelin/contracts-upgradeable/access/OwnableUpgradeable.sol"; import "@openzeppelin/contracts-upgradeable/proxy/utils/Initializable.sol"; import "@openzeppelin/contracts-upgradeable/security/PausableUpgradeable.sol"; import "../utils/proxy/solidity-0.8.0/ProxyReentrancyGuard.sol"; import "../utils/proxy/solidity-0.8.0/ProxyOwned.sol"; import "../interfaces/IThalesAMM.sol"; import "../interfaces/IPositionalMarket.sol"; import "../interfaces/IStakingThales.sol"; contract AmmVault is Initializable, ProxyOwned, PausableUpgradeable, ProxyReentrancyGuard { /* ========== LIBRARIES ========== */ using SafeERC20Upgradeable for IERC20Upgradeable; struct DepositReceipt { uint round; uint amount; } struct InitParams { address _owner; IThalesAMM _thalesAmm; IERC20Upgradeable _sUSD; uint _roundLength; uint _priceLowerLimit; uint _priceUpperLimit; int _skewImpactLimit; uint _allocationLimitsPerMarketPerRound; uint _maxAllowedDeposit; uint _utilizationRate; uint _minDepositAmount; uint _maxAllowedUsers; uint _minTradeAmount; } /* ========== CONSTANTS ========== */ uint private constant HUNDRED = 1e20; uint private constant ONE = 1e18; /* ========== STATE VARIABLES ========== */ IThalesAMM public thalesAMM; IERC20Upgradeable public sUSD; bool public vaultStarted; uint public round; uint public roundLength; mapping(uint => uint) public roundStartTime; mapping(uint => address[]) public usersPerRound; mapping(uint => mapping(address => bool)) public userInRound; mapping(uint => mapping(address => uint)) public balancesPerRound; mapping(address => bool) public withdrawalRequested; mapping(address => DepositReceipt) public depositReceipts; mapping(uint => uint) public allocationPerRound; mapping(uint => address[]) public tradingMarketsPerRound; mapping(uint => mapping(address => IThalesAMM.Position)) public tradingMarketPositionPerRound; mapping(uint => mapping(address => bool)) public isTradingMarketInARound; mapping(uint => uint) public profitAndLossPerRound; mapping(uint => uint) public cumulativeProfitAndLoss; uint public maxAllowedDeposit; uint public utilizationRate; mapping(uint => uint) public capPerRound; uint public minDepositAmount; uint public maxAllowedUsers; uint public usersCurrentlyInVault; uint public allocationLimitsPerMarketPerRound; mapping(uint => mapping(address => uint)) public allocationSpentPerRound; uint public priceLowerLimit; uint public priceUpperLimit; int public skewImpactLimit; uint public minTradeAmount; /// @return The address of the Staking contract IStakingThales public stakingThales; mapping(uint => uint) public allocationSpentInARound; /* ========== CONSTRUCTOR ========== */ function __BaseVault_init( address _owner, IThalesAMM _thalesAmm, IERC20Upgradeable _sUSD, uint _roundLength, uint _maxAllowedDeposit, uint _utilizationRate, uint _minDepositAmount, uint _maxAllowedUsers ) internal onlyInitializing { setOwner(_owner); initNonReentrant(); thalesAMM = IThalesAMM(_thalesAmm); sUSD = _sUSD; roundLength = _roundLength; maxAllowedDeposit = _maxAllowedDeposit; utilizationRate = _utilizationRate; minDepositAmount = _minDepositAmount; maxAllowedUsers = _maxAllowedUsers; sUSD.approve(address(thalesAMM), type(uint256).max); } function initialize(InitParams calldata params) external initializer { __BaseVault_init( params._owner, params._thalesAmm, params._sUSD, params._roundLength, params._maxAllowedDeposit, params._utilizationRate, params._minDepositAmount, params._maxAllowedUsers ); priceLowerLimit = params._priceLowerLimit; priceUpperLimit = params._priceUpperLimit; skewImpactLimit = params._skewImpactLimit; allocationLimitsPerMarketPerRound = params._allocationLimitsPerMarketPerRound; minTradeAmount = params._minTradeAmount; } /// @notice Start vault and begin round #1 function startVault() external onlyOwner { require(!vaultStarted, "Vault has already started"); round = 1; roundStartTime[round] = block.timestamp; vaultStarted = true; capPerRound[2] = capPerRound[1]; emit VaultStarted(); } /// @notice Close current round and begin next round, /// excercise options of trading markets and calculate profit and loss function closeRound() external nonReentrant whenNotPaused { require(canCloseCurrentRound(), "Can't close current round"); // excercise market options _exerciseMarketsReadyToExercised(); // balance in next round does not affect PnL in a current round uint currentVaultBalance = sUSD.balanceOf(address(this)) - allocationPerRound[round + 1]; // calculate PnL // if no allocation for current round if (allocationPerRound[round] == 0) { profitAndLossPerRound[round] = 1; } else { profitAndLossPerRound[round] = (currentVaultBalance * ONE) / allocationPerRound[round]; } for (uint i = 0; i < usersPerRound[round].length; i++) { address user = usersPerRound[round][i]; uint balanceAfterCurRound = (balancesPerRound[round][user] * profitAndLossPerRound[round]) / ONE; if (userInRound[round][user]) { if (!withdrawalRequested[user]) { balancesPerRound[round + 1][user] = balancesPerRound[round + 1][user] + balanceAfterCurRound; userInRound[round + 1][user] = true; usersPerRound[round + 1].push(user); if (address(stakingThales) != address(0)) { stakingThales.updateVolume(user, balanceAfterCurRound); } } else { balancesPerRound[round + 1][user] = 0; sUSD.safeTransfer(user, balanceAfterCurRound); withdrawalRequested[user] = false; userInRound[round + 1][user] = false; emit Claimed(user, balanceAfterCurRound); } } } if (round == 1) { cumulativeProfitAndLoss[round] = profitAndLossPerRound[round]; } else { cumulativeProfitAndLoss[round] = (cumulativeProfitAndLoss[round - 1] * profitAndLossPerRound[round]) / ONE; } // start next round round += 1; roundStartTime[round] = block.timestamp; // allocation for next round doesn't include withdrawal queue share from previous round allocationPerRound[round] = sUSD.balanceOf(address(this)); capPerRound[round + 1] = allocationPerRound[round]; emit RoundClosed(round - 1, profitAndLossPerRound[round - 1]); } /// @notice Deposit funds from user into vault for the next round /// @param amount Value to be deposited function deposit(uint amount) external canDeposit(amount) nonReentrant whenNotPaused { sUSD.safeTransferFrom(msg.sender, address(this), amount); uint nextRound = round + 1; // new user enters the vault if (balancesPerRound[round][msg.sender] == 0 && balancesPerRound[nextRound][msg.sender] == 0) { require(usersCurrentlyInVault < maxAllowedUsers, "Max amount of users reached"); usersPerRound[nextRound].push(msg.sender); userInRound[nextRound][msg.sender] = true; usersCurrentlyInVault = usersCurrentlyInVault + 1; } balancesPerRound[nextRound][msg.sender] += amount; // update deposit state of a user depositReceipts[msg.sender] = DepositReceipt(nextRound, balancesPerRound[nextRound][msg.sender]); allocationPerRound[nextRound] += amount; capPerRound[nextRound] += amount; if (address(stakingThales) != address(0)) { stakingThales.updateVolume(msg.sender, amount); } emit Deposited(msg.sender, amount); } function withdrawalRequest() external nonReentrant whenNotPaused { require(vaultStarted, "Vault has not started"); require(!withdrawalRequested[msg.sender], "Withdrawal already requested"); require(balancesPerRound[round][msg.sender] > 0, "Nothing to withdraw"); require(balancesPerRound[round + 1][msg.sender] == 0, "Can't withdraw as you already deposited for next round"); uint nextRound = round + 1; if (capPerRound[nextRound] > balancesPerRound[round][msg.sender]) { capPerRound[nextRound] -= balancesPerRound[round][msg.sender]; } usersCurrentlyInVault = usersCurrentlyInVault - 1; withdrawalRequested[msg.sender] = true; emit WithdrawalRequested(msg.sender); } /// @notice Buy market options from Thales AMM /// @param market address of a market /// @param amount number of options to be bought /// @param position to buy options for function trade( address market, uint amount, IThalesAMM.Position position ) external nonReentrant whenNotPaused { require(vaultStarted, "Vault has not started"); require(amount >= minTradeAmount, "Amount less than minimum"); IPositionalMarket marketContract = IPositionalMarket(market); (uint maturity, ) = marketContract.times(); require(maturity < (roundStartTime[round] + roundLength), "Market time not valid"); uint pricePosition = thalesAMM.price(address(market), position); require(pricePosition > 0, "Price not more than 0"); int pricePositionImpact = thalesAMM.buyPriceImpact(address(market), position, amount); require(pricePosition >= priceLowerLimit && pricePosition <= priceUpperLimit, "Market price not valid"); require(pricePositionImpact < skewImpactLimit, "Skew impact too high"); _buyFromAmm(market, position, amount); if (!isTradingMarketInARound[round][market]) { tradingMarketsPerRound[round].push(market); isTradingMarketInARound[round][market] = true; } } /// @notice Set length of rounds /// @param _roundLength Length of a round in miliseconds function setRoundLength(uint _roundLength) external onlyOwner { roundLength = _roundLength; emit RoundLengthChanged(_roundLength); } /// @notice Set ThalesAMM contract /// @param _thalesAMM ThalesAMM address function setThalesAmm(IThalesAMM _thalesAMM) external onlyOwner { thalesAMM = _thalesAMM; sUSD.approve(address(thalesAMM), type(uint256).max); emit ThalesAMMChanged(address(_thalesAMM)); } /// @notice Set IStakingThales contract /// @param _stakingThales IStakingThales address function setStakingThales(IStakingThales _stakingThales) external onlyOwner { stakingThales = _stakingThales; emit StakingThalesChanged(address(_stakingThales)); } /// @notice Set utilization rate parameter /// @param _utilizationRate Value in percents function setUtilizationRate(uint _utilizationRate) external onlyOwner { utilizationRate = _utilizationRate; emit UtilizationRateChanged(_utilizationRate); } /// @notice Set max allowed deposit /// @param _maxAllowedDeposit Deposit value function setMaxAllowedDeposit(uint _maxAllowedDeposit) external onlyOwner { maxAllowedDeposit = _maxAllowedDeposit; emit MaxAllowedDepositChanged(_maxAllowedDeposit); } /// @notice Set min allowed deposit /// @param _minDepositAmount Deposit value function setMinAllowedDeposit(uint _minDepositAmount) external onlyOwner { minDepositAmount = _minDepositAmount; emit MinAllowedDepositChanged(_minDepositAmount); } /// @notice Set _maxAllowedUsers /// @param _maxAllowedUsers Deposit value function setMaxAllowedUsers(uint _maxAllowedUsers) external onlyOwner { maxAllowedUsers = _maxAllowedUsers; emit MaxAllowedUsersChanged(_maxAllowedUsers); } /// @notice Set allocation limits for assets to be spent in one round /// @param _allocationLimitsPerMarketPerRound allocation per market in percent function setAllocationLimits(uint _allocationLimitsPerMarketPerRound) external onlyOwner { require(_allocationLimitsPerMarketPerRound < HUNDRED, "Invalid allocation limit values"); allocationLimitsPerMarketPerRound = _allocationLimitsPerMarketPerRound; emit SetAllocationLimits(allocationLimitsPerMarketPerRound); } /// @notice Set price limit for options to be bought from AMM /// @param _priceLowerLimit lower limit /// @param _priceUpperLimit upper limit function setPriceLimits(uint _priceLowerLimit, uint _priceUpperLimit) external onlyOwner { require(_priceLowerLimit < _priceUpperLimit, "Invalid price limit values"); priceLowerLimit = _priceLowerLimit; priceUpperLimit = _priceUpperLimit; emit SetPriceLimits(_priceLowerLimit, _priceUpperLimit); } /// @notice Set skew impact limit for AMM /// @param _skewImpactLimit limit in percents function setSkewImpactLimit(int _skewImpactLimit) external onlyOwner { skewImpactLimit = _skewImpactLimit; emit SetSkewImpactLimit(_skewImpactLimit); } /// @notice Set _minTradeAmount /// @param _minTradeAmount limit in percents function setMinTradeAmount(uint _minTradeAmount) external onlyOwner { minTradeAmount = _minTradeAmount; emit SetMinTradeAmount(_minTradeAmount); } /* ========== INTERNAL FUNCTIONS ========== */ function _exerciseMarketsReadyToExercised() internal { IPositionalMarket market; for (uint i = 0; i < tradingMarketsPerRound[round].length; i++) { market = IPositionalMarket(tradingMarketsPerRound[round][i]); if (market.resolved()) { (uint upBalance, uint downBalance) = market.balancesOf(address(this)); if (upBalance > 0 || downBalance > 0) { market.exerciseOptions(); } } } } /// @notice Buy options from AMM /// @param market address of a market /// @param position position to be bought /// @param amount amount of positions to be bought function _buyFromAmm( address market, IThalesAMM.Position position, uint amount ) internal { uint quote = thalesAMM.buyFromAmmQuote(market, position, amount); require(quote < (tradingAllocation() - allocationSpentInARound[round]), "Amount exceeds available allocation"); uint allocationAsset = (tradingAllocation() * allocationLimitsPerMarketPerRound) / HUNDRED; require( (quote + allocationSpentPerRound[round][market]) < allocationAsset, "Amount exceeds available allocation for asset" ); uint balanceBeforeTrade = sUSD.balanceOf(address(this)); thalesAMM.buyFromAMM(market, position, amount, quote, 0); uint balanceAfterTrade = sUSD.balanceOf(address(this)); allocationSpentInARound[round] += quote; allocationSpentPerRound[round][market] += quote; tradingMarketPositionPerRound[round][market] = position; emit TradeExecuted(market, position, amount, quote); } /// @notice Return trading allocation in current round based on utilization rate param /// @return uint function tradingAllocation() public view returns (uint) { return (allocationPerRound[round] * utilizationRate) / ONE; } /* ========== VIEWS ========== */ /// @notice Checks if all conditions are met to close the round /// @return bool function canCloseCurrentRound() public view returns (bool) { if (!vaultStarted || block.timestamp < (roundStartTime[round] + roundLength)) { return false; } for (uint i = 0; i < tradingMarketsPerRound[round].length; i++) { IPositionalMarket market = IPositionalMarket(tradingMarketsPerRound[round][i]); if ((!market.resolved())) { return false; } } return true; } /// @notice Get available amount to spend on an asset in a round /// @param market to fetch available allocation for /// @return uint function getAvailableAllocationForMarket(address market) external view returns (uint) { uint allocationMarket = (tradingAllocation() * allocationLimitsPerMarketPerRound) / HUNDRED; uint remainingAvailable = allocationMarket - allocationSpentPerRound[round][market]; return remainingAvailable < (tradingAllocation() - allocationSpentInARound[round]) ? remainingAvailable : (tradingAllocation() - allocationSpentInARound[round]); } /// @notice Return user balance in a round /// @param _round Round number /// @param user Address of the user /// @return uint function getBalancesPerRound(uint _round, address user) external view returns (uint) { return balancesPerRound[_round][user]; } /// @notice Return available to deposit /// @return returned how much more users can deposit function getAvailableToDeposit() external view returns (uint returned) { if (capPerRound[round + 1] < maxAllowedDeposit) { returned = maxAllowedDeposit - capPerRound[round + 1]; } } /// @notice end of current round /// @return uint function getCurrentRoundEnd() external view returns (uint) { return roundStartTime[round] + roundLength; } /// @notice Return multiplied PnLs between rounds /// @param roundA Round number from /// @param roundB Round number to /// @return uint function cumulativePnLBetweenRounds(uint roundA, uint roundB) public view returns (uint) { return (cumulativeProfitAndLoss[roundB] * profitAndLossPerRound[roundA]) / cumulativeProfitAndLoss[roundA]; } /* ========== MODIFIERS ========== */ modifier canDeposit(uint amount) { require(!withdrawalRequested[msg.sender], "Withdrawal is requested, cannot deposit"); require(amount >= minDepositAmount, "Invalid amount"); require(capPerRound[round + 1] + amount <= maxAllowedDeposit, "Deposit amount exceeds vault cap"); _; } /* ========== EVENTS ========== */ event VaultStarted(); event RoundClosed(uint round, uint roundPnL); event RoundLengthChanged(uint roundLength); event ThalesAMMChanged(address thalesAmm); event StakingThalesChanged(address stakingThales); event SetSUSD(address sUSD); event Deposited(address user, uint amount); event Claimed(address user, uint amount); event WithdrawalRequested(address user); event UtilizationRateChanged(uint utilizationRate); event MaxAllowedDepositChanged(uint maxAllowedDeposit); event MinAllowedDepositChanged(uint minAllowedDeposit); event MaxAllowedUsersChanged(uint MaxAllowedUsersChanged); event SetAllocationLimits(uint allocationLimitsPerMarketPerRound); event SetPriceLimits(uint priceLowerLimit, uint priceUpperLimit); event SetSkewImpactLimit(int skewImpact); event SetMinTradeAmount(uint SetMinTradeAmount); event TradeExecuted(address market, IThalesAMM.Position position, uint amount, uint quote); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // Clone of syntetix contract without constructor contract ProxyOwned { address public owner; address public nominatedOwner; bool private _initialized; bool private _transferredAtInit; function setOwner(address _owner) public { require(_owner != address(0), "Owner address cannot be 0"); require(!_initialized, "Already initialized, use nominateNewOwner"); _initialized = true; owner = _owner; emit OwnerChanged(address(0), _owner); } function nominateNewOwner(address _owner) external onlyOwner { nominatedOwner = _owner; emit OwnerNominated(_owner); } function acceptOwnership() external { require(msg.sender == nominatedOwner, "You must be nominated before you can accept ownership"); emit OwnerChanged(owner, nominatedOwner); owner = nominatedOwner; nominatedOwner = address(0); } function transferOwnershipAtInit(address proxyAddress) external onlyOwner { require(proxyAddress != address(0), "Invalid address"); require(!_transferredAtInit, "Already transferred"); owner = proxyAddress; _transferredAtInit = true; emit OwnerChanged(owner, proxyAddress); } modifier onlyOwner { _onlyOwner(); _; } function _onlyOwner() private view { require(msg.sender == owner, "Only the contract owner may perform this action"); } event OwnerNominated(address newOwner); event OwnerChanged(address oldOwner, address newOwner); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // Inheritance import "./ProxyOwned.sol"; // Clone of syntetix contract without constructor contract ProxyPausable is ProxyOwned { uint public lastPauseTime; bool public paused; /** * @notice Change the paused state of the contract * @dev Only the contract owner may call this. */ function setPaused(bool _paused) external onlyOwner { // Ensure we're actually changing the state before we do anything if (_paused == paused) { return; } // Set our paused state. paused = _paused; // If applicable, set the last pause time. if (paused) { lastPauseTime = block.timestamp; } // Let everyone know that our pause state has changed. emit PauseChanged(paused); } event PauseChanged(bool isPaused); modifier notPaused { require(!paused, "This action cannot be performed while the contract is paused"); _; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (proxy/utils/Initializable.sol) pragma solidity ^0.8.0; import "../../utils/AddressUpgradeable.sol"; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {ERC1967Proxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. * * [CAUTION] * ==== * Avoid leaving a contract uninitialized. * * An uninitialized contract can be taken over by an attacker. This applies to both a proxy and its implementation * contract, which may impact the proxy. To initialize the implementation contract, you can either invoke the * initializer manually, or you can include a constructor to automatically mark it as initialized when it is deployed: * * [.hljs-theme-light.nopadding] * ``` * /// @custom:oz-upgrades-unsafe-allow constructor * constructor() initializer {} * ``` * ==== */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { // If the contract is initializing we ignore whether _initialized is set in order to support multiple // inheritance patterns, but we only do this in the context of a constructor, because in other contexts the // contract may have been reentered. require(_initializing ? _isConstructor() : !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /** * @dev Modifier to protect an initialization function so that it can only be invoked by functions with the * {initializer} modifier, directly or indirectly. */ modifier onlyInitializing() { require(_initializing, "Initializable: contract is not initializing"); _; } function _isConstructor() private view returns (bool) { return !AddressUpgradeable.isContract(address(this)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20Upgradeable.sol"; import "../../../utils/AddressUpgradeable.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 SafeERC20Upgradeable { using AddressUpgradeable for address; function safeTransfer( IERC20Upgradeable token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20Upgradeable 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( IERC20Upgradeable 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( IERC20Upgradeable 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( IERC20Upgradeable 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(IERC20Upgradeable 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 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.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 OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal onlyInitializing { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal onlyInitializing { _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); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/ContextUpgradeable.sol"; import "../proxy/utils/Initializable.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract PausableUpgradeable is Initializable, ContextUpgradeable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ function __Pausable_init() internal onlyInitializing { __Context_init_unchained(); __Pausable_init_unchained(); } function __Pausable_init_unchained() internal onlyInitializing { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } uint256[49] private __gap; }
// SPDX-License-Identifier: MIT 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 aplied 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. */ contract ProxyReentrancyGuard { /// @dev counter to allow mutex lock with only one SSTORE operation uint256 private _guardCounter; bool private _initialized; function initNonReentrant() public { require(!_initialized, "Already initialized"); _initialized = true; _guardCounter = 1; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { _guardCounter += 1; uint256 localCounter = _guardCounter; _; require(localCounter == _guardCounter, "ReentrancyGuard: reentrant call"); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.16; import "./IPriceFeed.sol"; interface IThalesAMM { enum Position { Up, Down } function manager() external view returns (address); function availableToBuyFromAMM(address market, Position position) external view returns (uint); function impliedVolatilityPerAsset(bytes32 oracleKey) external view returns (uint); function buyFromAmmQuote( address market, Position position, uint amount ) external view returns (uint); function buyFromAMM( address market, Position position, uint amount, uint expectedPayout, uint additionalSlippage ) external returns (uint); function availableToSellToAMM(address market, Position position) external view returns (uint); function sellToAmmQuote( address market, Position position, uint amount ) external view returns (uint); function sellToAMM( address market, Position position, uint amount, uint expectedPayout, uint additionalSlippage ) external returns (uint); function isMarketInAMMTrading(address market) external view returns (bool); function price(address market, Position position) external view returns (uint); function buyPriceImpact( address market, Position position, uint amount ) external view returns (int); function priceFeed() external view returns (IPriceFeed); }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.16; import "../interfaces/IPositionalMarketManager.sol"; import "../interfaces/IPosition.sol"; import "../interfaces/IPriceFeed.sol"; interface IPositionalMarket { /* ========== TYPES ========== */ enum Phase { Trading, Maturity, Expiry } enum Side { Up, Down } /* ========== VIEWS / VARIABLES ========== */ function getOptions() external view returns (IPosition up, IPosition down); function times() external view returns (uint maturity, uint destructino); function getOracleDetails() external view returns ( bytes32 key, uint strikePrice, uint finalPrice ); function fees() external view returns (uint poolFee, uint creatorFee); function deposited() external view returns (uint); function creator() external view returns (address); function resolved() external view returns (bool); function phase() external view returns (Phase); function oraclePrice() external view returns (uint); function oraclePriceAndTimestamp() external view returns (uint price, uint updatedAt); function canResolve() external view returns (bool); function result() external view returns (Side); function balancesOf(address account) external view returns (uint up, uint down); function totalSupplies() external view returns (uint up, uint down); function getMaximumBurnable(address account) external view returns (uint amount); /* ========== MUTATIVE FUNCTIONS ========== */ function mint(uint value) external; function exerciseOptions() external returns (uint); function burnOptions(uint amount) external; function burnOptionsMaximum() external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.16; interface IStakingThales { function updateVolume(address account, uint amount) external; /* ========== VIEWS / VARIABLES ========== */ function totalStakedAmount() external view returns (uint); function stakedBalanceOf(address account) external view returns (uint); function currentPeriodRewards() external view returns (uint); function currentPeriodFees() external view returns (uint); function getLastPeriodOfClaimedRewards(address account) external view returns (uint); function getRewardsAvailable(address account) external view returns (uint); function getRewardFeesAvailable(address account) external view returns (uint); function getAlreadyClaimedRewards(address account) external view returns (uint); function getContractRewardFunds() external view returns (uint); function getContractFeeFunds() external view returns (uint); function getAMMVolume(address account) external view returns (uint); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 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 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); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; import "../proxy/utils/Initializable.sol"; /** * @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 ContextUpgradeable is Initializable { function __Context_init() internal onlyInitializing { __Context_init_unchained(); } function __Context_init_unchained() internal onlyInitializing { } function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.16; interface IPriceFeed { // Structs struct RateAndUpdatedTime { uint216 rate; uint40 time; } // Mutative functions function addAggregator(bytes32 currencyKey, address aggregatorAddress) external; function removeAggregator(bytes32 currencyKey) external; // Views function rateForCurrency(bytes32 currencyKey) external view returns (uint); function rateAndUpdatedTime(bytes32 currencyKey) external view returns (uint rate, uint time); function getRates() external view returns (uint[] memory); function getCurrencies() external view returns (bytes32[] memory); }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.16; import "../interfaces/IPositionalMarket.sol"; interface IPositionalMarketManager { /* ========== VIEWS / VARIABLES ========== */ function durations() external view returns (uint expiryDuration, uint maxTimeToMaturity); function capitalRequirement() external view returns (uint); function marketCreationEnabled() external view returns (bool); function onlyAMMMintingAndBurning() external view returns (bool); function transformCollateral(uint value) external view returns (uint); function reverseTransformCollateral(uint value) external view returns (uint); function totalDeposited() external view returns (uint); function numActiveMarkets() external view returns (uint); function activeMarkets(uint index, uint pageSize) external view returns (address[] memory); function numMaturedMarkets() external view returns (uint); function maturedMarkets(uint index, uint pageSize) external view returns (address[] memory); function isActiveMarket(address candidate) external view returns (bool); function isKnownMarket(address candidate) external view returns (bool); function getThalesAMM() external view returns (address); /* ========== MUTATIVE FUNCTIONS ========== */ function createMarket( bytes32 oracleKey, uint strikePrice, uint maturity, uint initialMint // initial sUSD to mint options for, ) external returns (IPositionalMarket); function resolveMarket(address market) external; function expireMarkets(address[] calldata market) external; function transferSusdTo( address sender, address receiver, uint amount ) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.16; import "./IPositionalMarket.sol"; interface IPosition { /* ========== VIEWS / VARIABLES ========== */ function getBalanceOf(address account) external view returns (uint); function getTotalSupply() external view returns (uint); function exerciseWithAmount(address claimant, uint amount) external; }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerNominated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isPaused","type":"bool"}],"name":"PauseChanged","type":"event"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract AmmVault","name":"ammVault","type":"address"}],"name":"getAmmVaultData","outputs":[{"components":[{"internalType":"bool","name":"vaultStarted","type":"bool"},{"internalType":"uint256","name":"maxAllowedDeposit","type":"uint256"},{"internalType":"uint256","name":"round","type":"uint256"},{"internalType":"uint256","name":"roundEndTime","type":"uint256"},{"internalType":"uint256","name":"availableAllocationNextRound","type":"uint256"},{"internalType":"uint256","name":"minDepositAmount","type":"uint256"},{"internalType":"uint256","name":"maxAllowedUsers","type":"uint256"},{"internalType":"uint256","name":"usersCurrentlyInVault","type":"uint256"},{"internalType":"bool","name":"canCloseCurrentRound","type":"bool"},{"internalType":"bool","name":"paused","type":"bool"},{"internalType":"uint256","name":"utilizationRate","type":"uint256"},{"internalType":"uint256","name":"priceLowerLimit","type":"uint256"},{"internalType":"uint256","name":"priceUpperLimit","type":"uint256"},{"internalType":"int256","name":"skewImpactLimit","type":"int256"},{"internalType":"uint256","name":"allocationLimitsPerMarketPerRound","type":"uint256"},{"internalType":"uint256","name":"minTradeAmount","type":"uint256"},{"internalType":"uint256","name":"roundLength","type":"uint256"},{"internalType":"uint256","name":"allocationCurrentRound","type":"uint256"},{"internalType":"uint256","name":"allocationNextRound","type":"uint256"},{"internalType":"uint256","name":"lifetimePnl","type":"uint256"},{"internalType":"uint256","name":"allocationSpentInARound","type":"uint256"},{"internalType":"uint256","name":"tradingAllocation","type":"uint256"}],"internalType":"struct AmmVaultData.VaultData","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract AmmVault","name":"ammVault","type":"address"},{"internalType":"address","name":"user","type":"address"}],"name":"getUserAmmVaultData","outputs":[{"components":[{"internalType":"uint256","name":"balanceCurrentRound","type":"uint256"},{"internalType":"uint256","name":"balanceNextRound","type":"uint256"},{"internalType":"bool","name":"withdrawalRequested","type":"bool"}],"internalType":"struct AmmVaultData.UserVaultData","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastPauseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"nominateNewOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nominatedOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"setOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"transferOwnershipAtInit","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b50611740806100206000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80638da5cb5b116100715780638da5cb5b1461014957806391b4ded914610162578063b73e6eb614610179578063c3b83f5f146101b0578063c4d66de8146101c3578063d454be9b146101d657600080fd5b806313af4035146100b95780631627540c146100ce57806316c38b3c146100e157806353a47bb7146100f45780635c975abb1461012457806379ba509714610141575b600080fd5b6100cc6100c73660046114f8565b6101f6565b005b6100cc6100dc3660046114f8565b610336565b6100cc6100ef36600461151b565b61038c565b600154610107906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6003546101319060ff1681565b604051901515815260200161011b565b6100cc610402565b600054610107906201000090046001600160a01b031681565b61016b60025481565b60405190815260200161011b565b61018c610187366004611553565b6104ff565b6040805182518152602080840151908201529181015115159082015260600161011b565b6100cc6101be3660046114f8565b61075c565b6100cc6101d13660046114f8565b610875565b6101e96101e43660046114f8565b610938565b60405161011b91906115a3565b6001600160a01b0381166102515760405162461bcd60e51b815260206004820152601960248201527f4f776e657220616464726573732063616e6e6f7420626520300000000000000060448201526064015b60405180910390fd5b600154600160a01b900460ff16156102bd5760405162461bcd60e51b815260206004820152602960248201527f416c726561647920696e697469616c697a65642c20757365206e6f6d696e617460448201526832a732bba7bbb732b960b91b6064820152608401610248565b6001805460ff60a01b1916600160a01b179055600080546001600160a01b03831662010000810262010000600160b01b03199092169190911782556040805192835260208301919091527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c91015b60405180910390a150565b61033e61147e565b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce229060200161032b565b61039461147e565b60035460ff16151581151514156103a85750565b6003805460ff191682151590811790915560ff16156103c657426002555b60035460405160ff909116151581527f8fb6c181ee25a520cf3dd6565006ef91229fcfe5a989566c2a3b8c115570cec59060200161032b565b50565b6001546001600160a01b0316331461047a5760405162461bcd60e51b815260206004820152603560248201527f596f75206d757374206265206e6f6d696e61746564206265666f726520796f7560448201527402063616e20616363657074206f776e65727368697605c1b6064820152608401610248565b60005460015460408051620100009093046001600160a01b03908116845290911660208301527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c910160405180910390a1600180546000805462010000600160b01b0319166001600160a01b03831662010000021790556001600160a01b0319169055565b610525604051806060016040528060008152602001600081526020016000151581525090565b6000836001600160a01b031663146ca5316040518163ffffffff1660e01b815260040160206040518083038186803b15801561056057600080fd5b505afa158015610574573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610598919061158b565b604080516060810191829052635ddd3e8360e01b909152909150806001600160a01b038616635ddd3e836105e28588606486019182526001600160a01b0316602082015260400190565b60206040518083038186803b1580156105fa57600080fd5b505afa15801561060e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610632919061158b565b81526020016001600160a01b038616635ddd3e836106518560016116a2565b6040516001600160e01b031960e084901b16815260048101919091526001600160a01b038816602482015260440160206040518083038186803b15801561069757600080fd5b505afa1580156106ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106cf919061158b565b8152604051631daae17360e01b81526001600160a01b038681166004830152602090920191871690631daae1739060240160206040518083038186803b15801561071857600080fd5b505afa15801561072c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107509190611537565b15159052949350505050565b61076461147e565b6001600160a01b0381166107ac5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610248565b600154600160a81b900460ff16156107fc5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481d1c985b9cd9995c9c9959606a1b6044820152606401610248565b600080546001600160a01b038381166201000081810262010000600160b01b031990941693909317938490556001805460ff60a81b1916600160a81b1790556040805193909404909116825260208201527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c910161032b565b600054610100900460ff166108905760005460ff1615610894565b303b155b6108f75760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610248565b600054610100900460ff16158015610919576000805461ffff19166101011790555b610922826101f6565b8015610934576000805461ff00191690555b5050565b6109e8604051806102c00160405280600015158152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000151581526020016000151581526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6000826001600160a01b031663146ca5316040518163ffffffff1660e01b815260040160206040518083038186803b158015610a2357600080fd5b505afa158015610a37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5b919061158b565b9050604051806102c00160405280846001600160a01b031663cee73a766040518163ffffffff1660e01b815260040160206040518083038186803b158015610aa257600080fd5b505afa158015610ab6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ada9190611537565b15158152602001846001600160a01b031663d27c07976040518163ffffffff1660e01b815260040160206040518083038186803b158015610b1a57600080fd5b505afa158015610b2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b52919061158b565b8152602001828152602001846001600160a01b03166371bb4b476040518163ffffffff1660e01b815260040160206040518083038186803b158015610b9657600080fd5b505afa158015610baa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bce919061158b565b8152602001846001600160a01b031663dd636bc76040518163ffffffff1660e01b815260040160206040518083038186803b158015610c0c57600080fd5b505afa158015610c20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c44919061158b565b8152602001846001600160a01b031663645006ca6040518163ffffffff1660e01b815260040160206040518083038186803b158015610c8257600080fd5b505afa158015610c96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cba919061158b565b8152602001846001600160a01b031663610589e16040518163ffffffff1660e01b815260040160206040518083038186803b158015610cf857600080fd5b505afa158015610d0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d30919061158b565b8152602001846001600160a01b031663322ce77a6040518163ffffffff1660e01b815260040160206040518083038186803b158015610d6e57600080fd5b505afa158015610d82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da6919061158b565b8152602001846001600160a01b031663ee161cce6040518163ffffffff1660e01b815260040160206040518083038186803b158015610de457600080fd5b505afa158015610df8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1c9190611537565b15158152602001846001600160a01b0316635c975abb6040518163ffffffff1660e01b815260040160206040518083038186803b158015610e5c57600080fd5b505afa158015610e70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e949190611537565b15158152602001846001600160a01b0316636c321c8a6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ed457600080fd5b505afa158015610ee8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0c919061158b565b8152602001846001600160a01b031663e75c93d96040518163ffffffff1660e01b815260040160206040518083038186803b158015610f4a57600080fd5b505afa158015610f5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f82919061158b565b8152602001846001600160a01b031663be805e3c6040518163ffffffff1660e01b815260040160206040518083038186803b158015610fc057600080fd5b505afa158015610fd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff8919061158b565b8152602001846001600160a01b031663456ff7886040518163ffffffff1660e01b815260040160206040518083038186803b15801561103657600080fd5b505afa15801561104a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106e919061158b565b8152602001846001600160a01b031663a9050d4d6040518163ffffffff1660e01b815260040160206040518083038186803b1580156110ac57600080fd5b505afa1580156110c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e4919061158b565b8152602001846001600160a01b031663dda9046f6040518163ffffffff1660e01b815260040160206040518083038186803b15801561112257600080fd5b505afa158015611136573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115a919061158b565b8152602001846001600160a01b0316638b649b946040518163ffffffff1660e01b815260040160206040518083038186803b15801561119857600080fd5b505afa1580156111ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d0919061158b565b8152602001846001600160a01b0316634ae7937f846040518263ffffffff1660e01b815260040161120391815260200190565b60206040518083038186803b15801561121b57600080fd5b505afa15801561122f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611253919061158b565b81526020016001600160a01b0385166325a663956112728560016116a2565b6040518263ffffffff1660e01b815260040161129091815260200190565b60206040518083038186803b1580156112a857600080fd5b505afa1580156112bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e0919061158b565b8152602001846001600160a01b031663336d30ed6000851161130357600061130e565b61130e6001866116ba565b6040518263ffffffff1660e01b815260040161132c91815260200190565b60206040518083038186803b15801561134457600080fd5b505afa158015611358573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137c919061158b565b8152602001846001600160a01b031663e48a694b846040518263ffffffff1660e01b81526004016113af91815260200190565b60206040518083038186803b1580156113c757600080fd5b505afa1580156113db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ff919061158b565b8152602001846001600160a01b0316631e9224606040518163ffffffff1660e01b815260040160206040518083038186803b15801561143d57600080fd5b505afa158015611451573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611475919061158b565b90529392505050565b6000546201000090046001600160a01b031633146114f65760405162461bcd60e51b815260206004820152602f60248201527f4f6e6c792074686520636f6e7472616374206f776e6572206d6179207065726660448201526e37b936903a3434b99030b1ba34b7b760891b6064820152608401610248565b565b600060208284031215611509578081fd5b8135611514816116e7565b9392505050565b60006020828403121561152c578081fd5b8135611514816116fc565b600060208284031215611548578081fd5b8151611514816116fc565b60008060408385031215611565578081fd5b8235611570816116e7565b91506020830135611580816116e7565b809150509250929050565b60006020828403121561159c578081fd5b5051919050565b8151151581526102c081016020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e083015160e0830152610100808401516116088285018215159052565b5050610120838101511515908301526101408084015190830152610160808401519083015261018080840151908301526101a080840151908301526101c080840151908301526101e08084015190830152610200808401519083015261022080840151908301526102408084015190830152610260808401519083015261028080840151908301526102a092830151929091019190915290565b600082198211156116b5576116b56116d1565b500190565b6000828210156116cc576116cc6116d1565b500390565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146103ff57600080fd5b80151581146103ff57600080fdfea264697066735822122048116fca03ac1a102a3168de2e65cba709385b870f2d6b6af8241d6301b1dacc64736f6c63430008040033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80638da5cb5b116100715780638da5cb5b1461014957806391b4ded914610162578063b73e6eb614610179578063c3b83f5f146101b0578063c4d66de8146101c3578063d454be9b146101d657600080fd5b806313af4035146100b95780631627540c146100ce57806316c38b3c146100e157806353a47bb7146100f45780635c975abb1461012457806379ba509714610141575b600080fd5b6100cc6100c73660046114f8565b6101f6565b005b6100cc6100dc3660046114f8565b610336565b6100cc6100ef36600461151b565b61038c565b600154610107906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6003546101319060ff1681565b604051901515815260200161011b565b6100cc610402565b600054610107906201000090046001600160a01b031681565b61016b60025481565b60405190815260200161011b565b61018c610187366004611553565b6104ff565b6040805182518152602080840151908201529181015115159082015260600161011b565b6100cc6101be3660046114f8565b61075c565b6100cc6101d13660046114f8565b610875565b6101e96101e43660046114f8565b610938565b60405161011b91906115a3565b6001600160a01b0381166102515760405162461bcd60e51b815260206004820152601960248201527f4f776e657220616464726573732063616e6e6f7420626520300000000000000060448201526064015b60405180910390fd5b600154600160a01b900460ff16156102bd5760405162461bcd60e51b815260206004820152602960248201527f416c726561647920696e697469616c697a65642c20757365206e6f6d696e617460448201526832a732bba7bbb732b960b91b6064820152608401610248565b6001805460ff60a01b1916600160a01b179055600080546001600160a01b03831662010000810262010000600160b01b03199092169190911782556040805192835260208301919091527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c91015b60405180910390a150565b61033e61147e565b600180546001600160a01b0319166001600160a01b0383169081179091556040519081527f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce229060200161032b565b61039461147e565b60035460ff16151581151514156103a85750565b6003805460ff191682151590811790915560ff16156103c657426002555b60035460405160ff909116151581527f8fb6c181ee25a520cf3dd6565006ef91229fcfe5a989566c2a3b8c115570cec59060200161032b565b50565b6001546001600160a01b0316331461047a5760405162461bcd60e51b815260206004820152603560248201527f596f75206d757374206265206e6f6d696e61746564206265666f726520796f7560448201527402063616e20616363657074206f776e65727368697605c1b6064820152608401610248565b60005460015460408051620100009093046001600160a01b03908116845290911660208301527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c910160405180910390a1600180546000805462010000600160b01b0319166001600160a01b03831662010000021790556001600160a01b0319169055565b610525604051806060016040528060008152602001600081526020016000151581525090565b6000836001600160a01b031663146ca5316040518163ffffffff1660e01b815260040160206040518083038186803b15801561056057600080fd5b505afa158015610574573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610598919061158b565b604080516060810191829052635ddd3e8360e01b909152909150806001600160a01b038616635ddd3e836105e28588606486019182526001600160a01b0316602082015260400190565b60206040518083038186803b1580156105fa57600080fd5b505afa15801561060e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610632919061158b565b81526020016001600160a01b038616635ddd3e836106518560016116a2565b6040516001600160e01b031960e084901b16815260048101919091526001600160a01b038816602482015260440160206040518083038186803b15801561069757600080fd5b505afa1580156106ab573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106cf919061158b565b8152604051631daae17360e01b81526001600160a01b038681166004830152602090920191871690631daae1739060240160206040518083038186803b15801561071857600080fd5b505afa15801561072c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107509190611537565b15159052949350505050565b61076461147e565b6001600160a01b0381166107ac5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610248565b600154600160a81b900460ff16156107fc5760405162461bcd60e51b8152602060048201526013602482015272105b1c9958591e481d1c985b9cd9995c9c9959606a1b6044820152606401610248565b600080546001600160a01b038381166201000081810262010000600160b01b031990941693909317938490556001805460ff60a81b1916600160a81b1790556040805193909404909116825260208201527fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c910161032b565b600054610100900460ff166108905760005460ff1615610894565b303b155b6108f75760405162461bcd60e51b815260206004820152602e60248201527f496e697469616c697a61626c653a20636f6e747261637420697320616c72656160448201526d191e481a5b9a5d1a585b1a5e995960921b6064820152608401610248565b600054610100900460ff16158015610919576000805461ffff19166101011790555b610922826101f6565b8015610934576000805461ff00191690555b5050565b6109e8604051806102c00160405280600015158152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000151581526020016000151581526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6000826001600160a01b031663146ca5316040518163ffffffff1660e01b815260040160206040518083038186803b158015610a2357600080fd5b505afa158015610a37573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5b919061158b565b9050604051806102c00160405280846001600160a01b031663cee73a766040518163ffffffff1660e01b815260040160206040518083038186803b158015610aa257600080fd5b505afa158015610ab6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ada9190611537565b15158152602001846001600160a01b031663d27c07976040518163ffffffff1660e01b815260040160206040518083038186803b158015610b1a57600080fd5b505afa158015610b2e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b52919061158b565b8152602001828152602001846001600160a01b03166371bb4b476040518163ffffffff1660e01b815260040160206040518083038186803b158015610b9657600080fd5b505afa158015610baa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bce919061158b565b8152602001846001600160a01b031663dd636bc76040518163ffffffff1660e01b815260040160206040518083038186803b158015610c0c57600080fd5b505afa158015610c20573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c44919061158b565b8152602001846001600160a01b031663645006ca6040518163ffffffff1660e01b815260040160206040518083038186803b158015610c8257600080fd5b505afa158015610c96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cba919061158b565b8152602001846001600160a01b031663610589e16040518163ffffffff1660e01b815260040160206040518083038186803b158015610cf857600080fd5b505afa158015610d0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d30919061158b565b8152602001846001600160a01b031663322ce77a6040518163ffffffff1660e01b815260040160206040518083038186803b158015610d6e57600080fd5b505afa158015610d82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610da6919061158b565b8152602001846001600160a01b031663ee161cce6040518163ffffffff1660e01b815260040160206040518083038186803b158015610de457600080fd5b505afa158015610df8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e1c9190611537565b15158152602001846001600160a01b0316635c975abb6040518163ffffffff1660e01b815260040160206040518083038186803b158015610e5c57600080fd5b505afa158015610e70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e949190611537565b15158152602001846001600160a01b0316636c321c8a6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ed457600080fd5b505afa158015610ee8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f0c919061158b565b8152602001846001600160a01b031663e75c93d96040518163ffffffff1660e01b815260040160206040518083038186803b158015610f4a57600080fd5b505afa158015610f5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f82919061158b565b8152602001846001600160a01b031663be805e3c6040518163ffffffff1660e01b815260040160206040518083038186803b158015610fc057600080fd5b505afa158015610fd4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff8919061158b565b8152602001846001600160a01b031663456ff7886040518163ffffffff1660e01b815260040160206040518083038186803b15801561103657600080fd5b505afa15801561104a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061106e919061158b565b8152602001846001600160a01b031663a9050d4d6040518163ffffffff1660e01b815260040160206040518083038186803b1580156110ac57600080fd5b505afa1580156110c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110e4919061158b565b8152602001846001600160a01b031663dda9046f6040518163ffffffff1660e01b815260040160206040518083038186803b15801561112257600080fd5b505afa158015611136573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061115a919061158b565b8152602001846001600160a01b0316638b649b946040518163ffffffff1660e01b815260040160206040518083038186803b15801561119857600080fd5b505afa1580156111ac573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111d0919061158b565b8152602001846001600160a01b0316634ae7937f846040518263ffffffff1660e01b815260040161120391815260200190565b60206040518083038186803b15801561121b57600080fd5b505afa15801561122f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611253919061158b565b81526020016001600160a01b0385166325a663956112728560016116a2565b6040518263ffffffff1660e01b815260040161129091815260200190565b60206040518083038186803b1580156112a857600080fd5b505afa1580156112bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e0919061158b565b8152602001846001600160a01b031663336d30ed6000851161130357600061130e565b61130e6001866116ba565b6040518263ffffffff1660e01b815260040161132c91815260200190565b60206040518083038186803b15801561134457600080fd5b505afa158015611358573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061137c919061158b565b8152602001846001600160a01b031663e48a694b846040518263ffffffff1660e01b81526004016113af91815260200190565b60206040518083038186803b1580156113c757600080fd5b505afa1580156113db573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113ff919061158b565b8152602001846001600160a01b0316631e9224606040518163ffffffff1660e01b815260040160206040518083038186803b15801561143d57600080fd5b505afa158015611451573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611475919061158b565b90529392505050565b6000546201000090046001600160a01b031633146114f65760405162461bcd60e51b815260206004820152602f60248201527f4f6e6c792074686520636f6e7472616374206f776e6572206d6179207065726660448201526e37b936903a3434b99030b1ba34b7b760891b6064820152608401610248565b565b600060208284031215611509578081fd5b8135611514816116e7565b9392505050565b60006020828403121561152c578081fd5b8135611514816116fc565b600060208284031215611548578081fd5b8151611514816116fc565b60008060408385031215611565578081fd5b8235611570816116e7565b91506020830135611580816116e7565b809150509250929050565b60006020828403121561159c578081fd5b5051919050565b8151151581526102c081016020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015260e083015160e0830152610100808401516116088285018215159052565b5050610120838101511515908301526101408084015190830152610160808401519083015261018080840151908301526101a080840151908301526101c080840151908301526101e08084015190830152610200808401519083015261022080840151908301526102408084015190830152610260808401519083015261028080840151908301526102a092830151929091019190915290565b600082198211156116b5576116b56116d1565b500190565b6000828210156116cc576116cc6116d1565b500390565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b03811681146103ff57600080fd5b80151581146103ff57600080fdfea264697066735822122048116fca03ac1a102a3168de2e65cba709385b870f2d6b6af8241d6301b1dacc64736f6c63430008040033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
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.