Overview
S Balance
0 S
S Value
-More Info
Private Name Tags
ContractCreator
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
588028 | 2 days ago | Contract Creation | 0 S |
Loading...
Loading
Contract Name:
AccountantWithFixedRate
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
Yes with 200 runs
Other Settings:
london EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.21; import {FixedPointMathLib} from "@solmate/utils/FixedPointMathLib.sol"; import {IRateProvider} from "src/interfaces/IRateProvider.sol"; import {ERC20} from "@solmate/tokens/ERC20.sol"; import {SafeTransferLib} from "@solmate/utils/SafeTransferLib.sol"; import {BoringVault} from "src/base/BoringVault.sol"; import {Auth, Authority} from "@solmate/auth/Auth.sol"; import {IPausable} from "src/interfaces/IPausable.sol"; import {AccountantWithRateProviders} from "src/base/Roles/AccountantWithRateProviders.sol"; contract AccountantWithFixedRate is AccountantWithRateProviders { using FixedPointMathLib for uint256; using SafeTransferLib for ERC20; // ========================================= STRUCTS ========================================= /** * @notice State for the fixed rate accountant. * @param yieldEarnedInBase The yield earned in base. * @param yieldDistributor The address of the yield distributor. */ struct FixedRateAccountantState { uint96 yieldEarnedInBase; address yieldDistributor; } // ========================================= STATE ========================================= /** * @notice State for the fixed rate accountant. */ FixedRateAccountantState public fixedRateAccountantState; //============================== ERRORS =============================== error AccountantWithFixedRate__HighWaterMarkCannotChange(); error AccountantWithFixedRate__StartingExchangeRateCannotBeGreaterThanFixed(); error AccountantWithFixedRate__UnsafeUint96Cast(); error AccountantWithFixedRate__OnlyCallableByYieldDistributor(); error AccountantWithFixedRate__ZeroYieldOwed(); //============================== EVENTS =============================== event YieldClaimed(address indexed yieldAsset, uint256 amount); event YieldDistributorUpdated(address indexed yieldDistributor); //============================== IMMUTABLES =============================== /** * @notice The fixed exchange rate. */ uint96 internal immutable fixedExchangeRate; constructor( address _owner, address _vault, address payoutAddress, uint96 startingExchangeRate, address _base, uint16 allowedExchangeRateChangeUpper, uint16 allowedExchangeRateChangeLower, uint24 minimumUpdateDelayInSeconds, uint16 platformFee, uint16 performanceFee ) AccountantWithRateProviders( _owner, _vault, payoutAddress, startingExchangeRate, _base, allowedExchangeRateChangeUpper, allowedExchangeRateChangeLower, minimumUpdateDelayInSeconds, platformFee, performanceFee ) { fixedExchangeRate = uint96(10 ** decimals); if (startingExchangeRate > fixedExchangeRate) { revert AccountantWithFixedRate__StartingExchangeRateCannotBeGreaterThanFixed(); } } // ========================================= ADMIN FUNCTIONS ========================================= /** * @notice Set the yield distributor. */ function setYieldDistributor(address yieldDistributor) external requiresAuth { fixedRateAccountantState.yieldDistributor = yieldDistributor; emit YieldDistributorUpdated(yieldDistributor); } /** * @notice Reset the highwater mark. * @dev This function is overridden to prevent it from being called. */ function resetHighwaterMark() external view override requiresAuth { revert AccountantWithFixedRate__HighWaterMarkCannotChange(); } // ========================================= CLAIM YIELD FUNCTION ========================================= /** * @notice Claim yield owed to the yield distributor. * @dev Callable by the yield distributor. */ function claimYield(ERC20 yieldAsset) external { FixedRateAccountantState storage frState = fixedRateAccountantState; if (msg.sender != frState.yieldDistributor) revert AccountantWithFixedRate__OnlyCallableByYieldDistributor(); AccountantState storage state = accountantState; if (state.isPaused) revert AccountantWithRateProviders__Paused(); if (frState.yieldEarnedInBase == 0) revert AccountantWithFixedRate__ZeroYieldOwed(); // Determine amount of yield earned in yieldAsset. uint256 yieldOwedInYieldAsset; RateProviderData memory data = rateProviderData[yieldAsset]; if (address(yieldAsset) == address(base)) { yieldOwedInYieldAsset = frState.yieldEarnedInBase; } else { uint8 yieldAssetDecimals = ERC20(yieldAsset).decimals(); uint256 feesOwedInBaseUsingYieldAssetDecimals = _changeDecimals(frState.yieldEarnedInBase, decimals, yieldAssetDecimals); if (data.isPeggedToBase) { yieldOwedInYieldAsset = feesOwedInBaseUsingYieldAssetDecimals; } else { uint256 rate = data.rateProvider.getRate(); yieldOwedInYieldAsset = feesOwedInBaseUsingYieldAssetDecimals.mulDivDown(10 ** yieldAssetDecimals, rate); } } // Zero out yield earned. frState.yieldEarnedInBase = 0; // Transfer fee asset to payout address. yieldAsset.safeTransferFrom(address(vault), frState.yieldDistributor, yieldOwedInYieldAsset); emit YieldClaimed(address(yieldAsset), yieldOwedInYieldAsset); } // ========================================= VIEW FUNCTIONS ========================================= /** * @notice Preview the result of an update to the exchange rate. * @return updateWillPause Whether the update will pause the contract. * @return newFeesOwedInBase The new fees owed in base. * @return totalFeesOwedInBase The total fees owed in base. */ function previewUpdateExchangeRate(uint96 newExchangeRate) external view override returns (bool updateWillPause, uint256 newFeesOwedInBase, uint256 totalFeesOwedInBase) { ( bool shouldPause, AccountantState storage state, uint64 currentTime, uint256 currentExchangeRate, uint256 currentTotalShares ) = _beforeUpdateExchangeRate(newExchangeRate); updateWillPause = shouldPause; totalFeesOwedInBase = state.feesOwedInBase; if (!shouldPause) { if (newExchangeRate > fixedExchangeRate) { (uint256 platformFeesOwedInBase, uint256 shareSupplyToUse) = _calculatePlatformFee( state.totalSharesLastUpdate, state.lastUpdateTimestamp, state.platformFee, newExchangeRate, currentExchangeRate, currentTotalShares, currentTime ); (uint256 performanceFeesOwedInBase, uint256 yieldEarned) = _calculatePerformanceFee(newExchangeRate, shareSupplyToUse, fixedExchangeRate, state.performanceFee); if (yieldEarned < (platformFeesOwedInBase + performanceFeesOwedInBase)) { // This means that the platform fee + performance fee is greater than or equal to the exchange rate appreciation, // so the platform fee is forfeited, but yield and performance fees are still calculated. newFeesOwedInBase = performanceFeesOwedInBase; } else { newFeesOwedInBase = platformFeesOwedInBase + performanceFeesOwedInBase; } totalFeesOwedInBase += newFeesOwedInBase; } } } // ========================================= INTERNAL HELPER FUNCTIONS ========================================= /** * @notice Override set exchange rate logic to ensure it never exceeds the fixed rate, * but it is allowed to be less than or equal to the fixed rate. */ function _setExchangeRate(uint96 newExchangeRate, AccountantState storage state) internal override returns (uint96) { if (newExchangeRate < fixedExchangeRate) { state.exchangeRate = newExchangeRate; } else { state.exchangeRate = fixedExchangeRate; newExchangeRate = fixedExchangeRate; } return newExchangeRate; } /** * @notice Calculate fees owed in base. * @dev We only update fees and yield earned if we are above the fixed rate. * Because if we are below the fixed rate there is no yield, and no fees should * be taken as the focus is on getting the rate back to the fixed rate. * @dev If the platform fee + performance fee is greater than or equal to the exchange rate appreciation, * then the platform fee is forfeited, but yield and performance fees are still calculated. */ function _calculateFeesOwed( AccountantState storage state, uint96 newExchangeRate, uint256 currentExchangeRate, uint256 currentTotalShares, uint64 currentTime ) internal override { // Only update fees if we are above the fixed rate. if (newExchangeRate > fixedExchangeRate) { // Account for platform fees. (uint256 platformFeesOwedInBase, uint256 shareSupplyToUse) = _calculatePlatformFee( state.totalSharesLastUpdate, state.lastUpdateTimestamp, state.platformFee, newExchangeRate, currentExchangeRate, currentTotalShares, currentTime ); // Account for performance fees. (uint256 performanceFeesOwedInBase, uint256 yieldEarned) = _calculatePerformanceFee(newExchangeRate, shareSupplyToUse, fixedExchangeRate, state.performanceFee); uint256 feesOwedInBase; if (yieldEarned < (platformFeesOwedInBase + performanceFeesOwedInBase)) { // This means that the platform fee + performance fee is greater than or equal to the exchange rate appreciation, // so the platform fee is forfeited, but yield and performance fees are still calculated. feesOwedInBase = performanceFeesOwedInBase; } else { feesOwedInBase = platformFeesOwedInBase + performanceFeesOwedInBase; } // Since performance fees are a percentage of yield earned, we know this will never underflow. yieldEarned -= feesOwedInBase; // We intentionally do not update highwater mark since this is a fixed rate accountant. // state.highwaterMark = newExchangeRate; // Add yield earned to fixed rate accountant state. if (yieldEarned > type(uint96).max) { revert AccountantWithFixedRate__UnsafeUint96Cast(); } fixedRateAccountantState.yieldEarnedInBase += uint96(yieldEarned); state.feesOwedInBase += uint128(feesOwedInBase); } } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; /// @notice Arithmetic library with operations for fixed-point numbers. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/FixedPointMathLib.sol) /// @author Inspired by USM (https://github.com/usmfum/USM/blob/master/contracts/WadMath.sol) library FixedPointMathLib { /*////////////////////////////////////////////////////////////// SIMPLIFIED FIXED POINT OPERATIONS //////////////////////////////////////////////////////////////*/ uint256 internal constant MAX_UINT256 = 2**256 - 1; uint256 internal constant WAD = 1e18; // The scalar of ETH and most ERC20s. function mulWadDown(uint256 x, uint256 y) internal pure returns (uint256) { return mulDivDown(x, y, WAD); // Equivalent to (x * y) / WAD rounded down. } function mulWadUp(uint256 x, uint256 y) internal pure returns (uint256) { return mulDivUp(x, y, WAD); // Equivalent to (x * y) / WAD rounded up. } function divWadDown(uint256 x, uint256 y) internal pure returns (uint256) { return mulDivDown(x, WAD, y); // Equivalent to (x * WAD) / y rounded down. } function divWadUp(uint256 x, uint256 y) internal pure returns (uint256) { return mulDivUp(x, WAD, y); // Equivalent to (x * WAD) / y rounded up. } /*////////////////////////////////////////////////////////////// LOW LEVEL FIXED POINT OPERATIONS //////////////////////////////////////////////////////////////*/ function mulDivDown( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 z) { /// @solidity memory-safe-assembly assembly { // Equivalent to require(denominator != 0 && (y == 0 || x <= type(uint256).max / y)) if iszero(mul(denominator, iszero(mul(y, gt(x, div(MAX_UINT256, y)))))) { revert(0, 0) } // Divide x * y by the denominator. z := div(mul(x, y), denominator) } } function mulDivUp( uint256 x, uint256 y, uint256 denominator ) internal pure returns (uint256 z) { /// @solidity memory-safe-assembly assembly { // Equivalent to require(denominator != 0 && (y == 0 || x <= type(uint256).max / y)) if iszero(mul(denominator, iszero(mul(y, gt(x, div(MAX_UINT256, y)))))) { revert(0, 0) } // If x * y modulo the denominator is strictly greater than 0, // 1 is added to round up the division of x * y by the denominator. z := add(gt(mod(mul(x, y), denominator), 0), div(mul(x, y), denominator)) } } function rpow( uint256 x, uint256 n, uint256 scalar ) internal pure returns (uint256 z) { /// @solidity memory-safe-assembly assembly { switch x case 0 { switch n case 0 { // 0 ** 0 = 1 z := scalar } default { // 0 ** n = 0 z := 0 } } default { switch mod(n, 2) case 0 { // If n is even, store scalar in z for now. z := scalar } default { // If n is odd, store x in z for now. z := x } // Shifting right by 1 is like dividing by 2. let half := shr(1, scalar) for { // Shift n right by 1 before looping to halve it. n := shr(1, n) } n { // Shift n right by 1 each iteration to halve it. n := shr(1, n) } { // Revert immediately if x ** 2 would overflow. // Equivalent to iszero(eq(div(xx, x), x)) here. if shr(128, x) { revert(0, 0) } // Store x squared. let xx := mul(x, x) // Round to the nearest number. let xxRound := add(xx, half) // Revert if xx + half overflowed. if lt(xxRound, xx) { revert(0, 0) } // Set x to scaled xxRound. x := div(xxRound, scalar) // If n is even: if mod(n, 2) { // Compute z * x. let zx := mul(z, x) // If z * x overflowed: if iszero(eq(div(zx, x), z)) { // Revert if x is non-zero. if iszero(iszero(x)) { revert(0, 0) } } // Round to the nearest number. let zxRound := add(zx, half) // Revert if zx + half overflowed. if lt(zxRound, zx) { revert(0, 0) } // Return properly scaled zxRound. z := div(zxRound, scalar) } } } } } /*////////////////////////////////////////////////////////////// GENERAL NUMBER UTILITIES //////////////////////////////////////////////////////////////*/ function sqrt(uint256 x) internal pure returns (uint256 z) { /// @solidity memory-safe-assembly assembly { let y := x // We start y at x, which will help us make our initial estimate. z := 181 // The "correct" value is 1, but this saves a multiplication later. // This segment is to get a reasonable initial estimate for the Babylonian method. With a bad // start, the correct # of bits increases ~linearly each iteration instead of ~quadratically. // We check y >= 2^(k + 8) but shift right by k bits // each branch to ensure that if x >= 256, then y >= 256. if iszero(lt(y, 0x10000000000000000000000000000000000)) { y := shr(128, y) z := shl(64, z) } if iszero(lt(y, 0x1000000000000000000)) { y := shr(64, y) z := shl(32, z) } if iszero(lt(y, 0x10000000000)) { y := shr(32, y) z := shl(16, z) } if iszero(lt(y, 0x1000000)) { y := shr(16, y) z := shl(8, z) } // Goal was to get z*z*y within a small factor of x. More iterations could // get y in a tighter range. Currently, we will have y in [256, 256*2^16). // We ensured y >= 256 so that the relative difference between y and y+1 is small. // That's not possible if x < 256 but we can just verify those cases exhaustively. // Now, z*z*y <= x < z*z*(y+1), and y <= 2^(16+8), and either y >= 256, or x < 256. // Correctness can be checked exhaustively for x < 256, so we assume y >= 256. // Then z*sqrt(y) is within sqrt(257)/sqrt(256) of sqrt(x), or about 20bps. // For s in the range [1/256, 256], the estimate f(s) = (181/1024) * (s+1) is in the range // (1/2.84 * sqrt(s), 2.84 * sqrt(s)), with largest error when s = 1 and when s = 256 or 1/256. // Since y is in [256, 256*2^16), let a = y/65536, so that a is in [1/256, 256). Then we can estimate // sqrt(y) using sqrt(65536) * 181/1024 * (a + 1) = 181/4 * (y + 65536)/65536 = 181 * (y + 65536)/2^18. // There is no overflow risk here since y < 2^136 after the first branch above. z := shr(18, mul(z, add(y, 65536))) // A mul() is saved from starting z at 181. // Given the worst case multiplicative error of 2.84 above, 7 iterations should be enough. z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) z := shr(1, add(z, div(x, z))) // If x+1 is a perfect square, the Babylonian method cycles between // floor(sqrt(x)) and ceil(sqrt(x)). This statement ensures we return floor. // See: https://en.wikipedia.org/wiki/Integer_square_root#Using_only_integer_division // Since the ceil is rare, we save gas on the assignment and repeat division in the rare case. // If you don't care whether the floor or ceil square root is returned, you can remove this statement. z := sub(z, lt(div(x, z), z)) } } function unsafeMod(uint256 x, uint256 y) internal pure returns (uint256 z) { /// @solidity memory-safe-assembly assembly { // Mod x by y. Note this will return // 0 instead of reverting if y is zero. z := mod(x, y) } } function unsafeDiv(uint256 x, uint256 y) internal pure returns (uint256 r) { /// @solidity memory-safe-assembly assembly { // Divide x by y. Note this will return // 0 instead of reverting if y is zero. r := div(x, y) } } function unsafeDivUp(uint256 x, uint256 y) internal pure returns (uint256 z) { /// @solidity memory-safe-assembly assembly { // Add 1 to x * y if x % y > 0. Note this will // return 0 instead of reverting if y is zero. z := add(gt(mod(x, y), 0), div(x, y)) } } }
// SPDX-License-Identifier: UNLICENSED // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // You should have received a copy of the GNU General Public License // along with this program. If not, see <http://www.gnu.org/licenses/>. pragma solidity ^0.8.0; interface IRateProvider { function getRate() external view returns (uint256); }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; /// @notice Modern and gas efficient ERC20 + EIP-2612 implementation. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/ERC20.sol) /// @author Modified from Uniswap (https://github.com/Uniswap/uniswap-v2-core/blob/master/contracts/UniswapV2ERC20.sol) /// @dev Do not manually set balances without updating totalSupply, as the sum of all user balances must not exceed it. abstract contract ERC20 { /*////////////////////////////////////////////////////////////// EVENTS //////////////////////////////////////////////////////////////*/ event Transfer(address indexed from, address indexed to, uint256 amount); event Approval(address indexed owner, address indexed spender, uint256 amount); /*////////////////////////////////////////////////////////////// METADATA STORAGE //////////////////////////////////////////////////////////////*/ string public name; string public symbol; uint8 public immutable decimals; /*////////////////////////////////////////////////////////////// ERC20 STORAGE //////////////////////////////////////////////////////////////*/ uint256 public totalSupply; mapping(address => uint256) public balanceOf; mapping(address => mapping(address => uint256)) public allowance; /*////////////////////////////////////////////////////////////// EIP-2612 STORAGE //////////////////////////////////////////////////////////////*/ uint256 internal immutable INITIAL_CHAIN_ID; bytes32 internal immutable INITIAL_DOMAIN_SEPARATOR; mapping(address => uint256) public nonces; /*////////////////////////////////////////////////////////////// CONSTRUCTOR //////////////////////////////////////////////////////////////*/ constructor( string memory _name, string memory _symbol, uint8 _decimals ) { name = _name; symbol = _symbol; decimals = _decimals; INITIAL_CHAIN_ID = block.chainid; INITIAL_DOMAIN_SEPARATOR = computeDomainSeparator(); } /*////////////////////////////////////////////////////////////// ERC20 LOGIC //////////////////////////////////////////////////////////////*/ function approve(address spender, uint256 amount) public virtual returns (bool) { allowance[msg.sender][spender] = amount; emit Approval(msg.sender, spender, amount); return true; } function transfer(address to, uint256 amount) public virtual returns (bool) { balanceOf[msg.sender] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(msg.sender, to, amount); return true; } function transferFrom( address from, address to, uint256 amount ) public virtual returns (bool) { uint256 allowed = allowance[from][msg.sender]; // Saves gas for limited approvals. if (allowed != type(uint256).max) allowance[from][msg.sender] = allowed - amount; balanceOf[from] -= amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(from, to, amount); return true; } /*////////////////////////////////////////////////////////////// EIP-2612 LOGIC //////////////////////////////////////////////////////////////*/ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) public virtual { require(deadline >= block.timestamp, "PERMIT_DEADLINE_EXPIRED"); // Unchecked because the only math done is incrementing // the owner's nonce which cannot realistically overflow. unchecked { address recoveredAddress = ecrecover( keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR(), keccak256( abi.encode( keccak256( "Permit(address owner,address spender,uint256 value,uint256 nonce,uint256 deadline)" ), owner, spender, value, nonces[owner]++, deadline ) ) ) ), v, r, s ); require(recoveredAddress != address(0) && recoveredAddress == owner, "INVALID_SIGNER"); allowance[recoveredAddress][spender] = value; } emit Approval(owner, spender, value); } function DOMAIN_SEPARATOR() public view virtual returns (bytes32) { return block.chainid == INITIAL_CHAIN_ID ? INITIAL_DOMAIN_SEPARATOR : computeDomainSeparator(); } function computeDomainSeparator() internal view virtual returns (bytes32) { return keccak256( abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes(name)), keccak256("1"), block.chainid, address(this) ) ); } /*////////////////////////////////////////////////////////////// INTERNAL MINT/BURN LOGIC //////////////////////////////////////////////////////////////*/ function _mint(address to, uint256 amount) internal virtual { totalSupply += amount; // Cannot overflow because the sum of all user // balances can't exceed the max uint256 value. unchecked { balanceOf[to] += amount; } emit Transfer(address(0), to, amount); } function _burn(address from, uint256 amount) internal virtual { balanceOf[from] -= amount; // Cannot underflow because a user's balance // will never be larger than the total supply. unchecked { totalSupply -= amount; } emit Transfer(from, address(0), amount); } }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; import {ERC20} from "../tokens/ERC20.sol"; /// @notice Safe ETH and ERC20 transfer library that gracefully handles missing return values. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/SafeTransferLib.sol) /// @dev Use with caution! Some functions in this library knowingly create dirty bits at the destination of the free memory pointer. /// @dev Note that none of the functions in this library check that a token has code at all! That responsibility is delegated to the caller. library SafeTransferLib { /*////////////////////////////////////////////////////////////// ETH OPERATIONS //////////////////////////////////////////////////////////////*/ function safeTransferETH(address to, uint256 amount) internal { bool success; /// @solidity memory-safe-assembly assembly { // Transfer the ETH and store if it succeeded or not. success := call(gas(), to, amount, 0, 0, 0, 0) } require(success, "ETH_TRANSFER_FAILED"); } /*////////////////////////////////////////////////////////////// ERC20 OPERATIONS //////////////////////////////////////////////////////////////*/ function safeTransferFrom( ERC20 token, address from, address to, uint256 amount ) internal { bool success; /// @solidity memory-safe-assembly assembly { // Get a pointer to some free memory. let freeMemoryPointer := mload(0x40) // Write the abi-encoded calldata into memory, beginning with the function selector. mstore(freeMemoryPointer, 0x23b872dd00000000000000000000000000000000000000000000000000000000) mstore(add(freeMemoryPointer, 4), and(from, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "from" argument. mstore(add(freeMemoryPointer, 36), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument. mstore(add(freeMemoryPointer, 68), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type. success := and( // Set success to whether the call reverted, if not we check it either // returned exactly 1 (can't just be non-zero data), or had no return data. or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())), // We use 100 because the length of our calldata totals up like so: 4 + 32 * 3. // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space. // Counterintuitively, this call must be positioned second to the or() call in the // surrounding and() call or else returndatasize() will be zero during the computation. call(gas(), token, 0, freeMemoryPointer, 100, 0, 32) ) } require(success, "TRANSFER_FROM_FAILED"); } function safeTransfer( ERC20 token, address to, uint256 amount ) internal { bool success; /// @solidity memory-safe-assembly assembly { // Get a pointer to some free memory. let freeMemoryPointer := mload(0x40) // Write the abi-encoded calldata into memory, beginning with the function selector. mstore(freeMemoryPointer, 0xa9059cbb00000000000000000000000000000000000000000000000000000000) mstore(add(freeMemoryPointer, 4), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument. mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type. success := and( // Set success to whether the call reverted, if not we check it either // returned exactly 1 (can't just be non-zero data), or had no return data. or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())), // We use 68 because the length of our calldata totals up like so: 4 + 32 * 2. // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space. // Counterintuitively, this call must be positioned second to the or() call in the // surrounding and() call or else returndatasize() will be zero during the computation. call(gas(), token, 0, freeMemoryPointer, 68, 0, 32) ) } require(success, "TRANSFER_FAILED"); } function safeApprove( ERC20 token, address to, uint256 amount ) internal { bool success; /// @solidity memory-safe-assembly assembly { // Get a pointer to some free memory. let freeMemoryPointer := mload(0x40) // Write the abi-encoded calldata into memory, beginning with the function selector. mstore(freeMemoryPointer, 0x095ea7b300000000000000000000000000000000000000000000000000000000) mstore(add(freeMemoryPointer, 4), and(to, 0xffffffffffffffffffffffffffffffffffffffff)) // Append and mask the "to" argument. mstore(add(freeMemoryPointer, 36), amount) // Append the "amount" argument. Masking not required as it's a full 32 byte type. success := and( // Set success to whether the call reverted, if not we check it either // returned exactly 1 (can't just be non-zero data), or had no return data. or(and(eq(mload(0), 1), gt(returndatasize(), 31)), iszero(returndatasize())), // We use 68 because the length of our calldata totals up like so: 4 + 32 * 2. // We use 0 and 32 to copy up to 32 bytes of return data into the scratch space. // Counterintuitively, this call must be positioned second to the or() call in the // surrounding and() call or else returndatasize() will be zero during the computation. call(gas(), token, 0, freeMemoryPointer, 68, 0, 32) ) } require(success, "APPROVE_FAILED"); } }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.21; import {Address} from "@openzeppelin/contracts/utils/Address.sol"; import {ERC721Holder} from "@openzeppelin/contracts/token/ERC721/utils/ERC721Holder.sol"; import {ERC1155Holder} from "@openzeppelin/contracts/token/ERC1155/utils/ERC1155Holder.sol"; import {FixedPointMathLib} from "@solmate/utils/FixedPointMathLib.sol"; import {SafeTransferLib} from "@solmate/utils/SafeTransferLib.sol"; import {ERC20} from "@solmate/tokens/ERC20.sol"; import {BeforeTransferHook} from "src/interfaces/BeforeTransferHook.sol"; import {Auth, Authority} from "@solmate/auth/Auth.sol"; contract BoringVault is ERC20, Auth, ERC721Holder, ERC1155Holder { using Address for address; using SafeTransferLib for ERC20; using FixedPointMathLib for uint256; // ========================================= STATE ========================================= /** * @notice Contract responsbile for implementing `beforeTransfer`. */ BeforeTransferHook public hook; //============================== EVENTS =============================== event Enter(address indexed from, address indexed asset, uint256 amount, address indexed to, uint256 shares); event Exit(address indexed to, address indexed asset, uint256 amount, address indexed from, uint256 shares); //============================== CONSTRUCTOR =============================== constructor(address _owner, string memory _name, string memory _symbol, uint8 _decimals) ERC20(_name, _symbol, _decimals) Auth(_owner, Authority(address(0))) {} //============================== MANAGE =============================== /** * @notice Allows manager to make an arbitrary function call from this contract. * @dev Callable by MANAGER_ROLE. */ function manage(address target, bytes calldata data, uint256 value) external requiresAuth returns (bytes memory result) { result = target.functionCallWithValue(data, value); } /** * @notice Allows manager to make arbitrary function calls from this contract. * @dev Callable by MANAGER_ROLE. */ function manage(address[] calldata targets, bytes[] calldata data, uint256[] calldata values) external requiresAuth returns (bytes[] memory results) { uint256 targetsLength = targets.length; results = new bytes[](targetsLength); for (uint256 i; i < targetsLength; ++i) { results[i] = targets[i].functionCallWithValue(data[i], values[i]); } } //============================== ENTER =============================== /** * @notice Allows minter to mint shares, in exchange for assets. * @dev If assetAmount is zero, no assets are transferred in. * @dev Callable by MINTER_ROLE. */ function enter(address from, ERC20 asset, uint256 assetAmount, address to, uint256 shareAmount) external requiresAuth { // Transfer assets in if (assetAmount > 0) asset.safeTransferFrom(from, address(this), assetAmount); // Mint shares. _mint(to, shareAmount); emit Enter(from, address(asset), assetAmount, to, shareAmount); } //============================== EXIT =============================== /** * @notice Allows burner to burn shares, in exchange for assets. * @dev If assetAmount is zero, no assets are transferred out. * @dev Callable by BURNER_ROLE. */ function exit(address to, ERC20 asset, uint256 assetAmount, address from, uint256 shareAmount) external requiresAuth { // Burn shares. _burn(from, shareAmount); // Transfer assets out. if (assetAmount > 0) asset.safeTransfer(to, assetAmount); emit Exit(to, address(asset), assetAmount, from, shareAmount); } //============================== BEFORE TRANSFER HOOK =============================== /** * @notice Sets the share locker. * @notice If set to zero address, the share locker logic is disabled. * @dev Callable by OWNER_ROLE. */ function setBeforeTransferHook(address _hook) external requiresAuth { hook = BeforeTransferHook(_hook); } /** * @notice Call `beforeTransferHook` passing in `from` `to`, and `msg.sender`. */ function _callBeforeTransfer(address from, address to) internal view { if (address(hook) != address(0)) hook.beforeTransfer(from, to, msg.sender); } function transfer(address to, uint256 amount) public override returns (bool) { _callBeforeTransfer(msg.sender, to); return super.transfer(to, amount); } function transferFrom(address from, address to, uint256 amount) public override returns (bool) { _callBeforeTransfer(from, to); return super.transferFrom(from, to, amount); } //============================== RECEIVE =============================== receive() external payable {} }
// SPDX-License-Identifier: AGPL-3.0-only pragma solidity >=0.8.0; /// @notice Provides a flexible and updatable auth pattern which is completely separate from application logic. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Auth.sol) /// @author Modified from Dappsys (https://github.com/dapphub/ds-auth/blob/master/src/auth.sol) abstract contract Auth { event OwnershipTransferred(address indexed user, address indexed newOwner); event AuthorityUpdated(address indexed user, Authority indexed newAuthority); address public owner; Authority public authority; constructor(address _owner, Authority _authority) { owner = _owner; authority = _authority; emit OwnershipTransferred(msg.sender, _owner); emit AuthorityUpdated(msg.sender, _authority); } modifier requiresAuth() virtual { require(isAuthorized(msg.sender, msg.sig), "UNAUTHORIZED"); _; } function isAuthorized(address user, bytes4 functionSig) internal view virtual returns (bool) { Authority auth = authority; // Memoizing authority saves us a warm SLOAD, around 100 gas. // Checking if the caller is the owner only after calling the authority saves gas in most cases, but be // aware that this makes protected functions uncallable even to the owner if the authority is out of order. return (address(auth) != address(0) && auth.canCall(user, address(this), functionSig)) || user == owner; } function setAuthority(Authority newAuthority) public virtual { // We check if the caller is the owner first because we want to ensure they can // always swap out the authority even if it's reverting or using up a lot of gas. require(msg.sender == owner || authority.canCall(msg.sender, address(this), msg.sig)); authority = newAuthority; emit AuthorityUpdated(msg.sender, newAuthority); } function transferOwnership(address newOwner) public virtual requiresAuth { owner = newOwner; emit OwnershipTransferred(msg.sender, newOwner); } } /// @notice A generic interface for a contract which provides authorization data to an Auth instance. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/auth/Auth.sol) /// @author Modified from Dappsys (https://github.com/dapphub/ds-auth/blob/master/src/auth.sol) interface Authority { function canCall( address user, address target, bytes4 functionSig ) external view returns (bool); }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.21; interface IPausable { function pause() external; function unpause() external; }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.21; import {FixedPointMathLib} from "@solmate/utils/FixedPointMathLib.sol"; import {IRateProvider} from "src/interfaces/IRateProvider.sol"; import {ERC20} from "@solmate/tokens/ERC20.sol"; import {SafeTransferLib} from "@solmate/utils/SafeTransferLib.sol"; import {BoringVault} from "src/base/BoringVault.sol"; import {Auth, Authority} from "@solmate/auth/Auth.sol"; import {IPausable} from "src/interfaces/IPausable.sol"; contract AccountantWithRateProviders is Auth, IRateProvider, IPausable { using FixedPointMathLib for uint256; using SafeTransferLib for ERC20; // ========================================= STRUCTS ========================================= /** * @param payoutAddress the address `claimFees` sends fees to * @param highwaterMark the highest value of the BoringVault's share price * @param feesOwedInBase total pending fees owed in terms of base * @param totalSharesLastUpdate total amount of shares the last exchange rate update * @param exchangeRate the current exchange rate in terms of base * @param allowedExchangeRateChangeUpper the max allowed change to exchange rate from an update * @param allowedExchangeRateChangeLower the min allowed change to exchange rate from an update * @param lastUpdateTimestamp the block timestamp of the last exchange rate update * @param isPaused whether or not this contract is paused * @param minimumUpdateDelayInSeconds the minimum amount of time that must pass between * exchange rate updates, such that the update won't trigger the contract to be paused * @param platformFee the platform fee * @param performanceFee the performance fee */ struct AccountantState { address payoutAddress; uint96 highwaterMark; uint128 feesOwedInBase; uint128 totalSharesLastUpdate; uint96 exchangeRate; uint16 allowedExchangeRateChangeUpper; uint16 allowedExchangeRateChangeLower; uint64 lastUpdateTimestamp; bool isPaused; uint24 minimumUpdateDelayInSeconds; uint16 platformFee; uint16 performanceFee; } /** * @param isPeggedToBase whether or not the asset is 1:1 with the base asset * @param rateProvider the rate provider for this asset if `isPeggedToBase` is false */ struct RateProviderData { bool isPeggedToBase; IRateProvider rateProvider; } // ========================================= STATE ========================================= /** * @notice Store the accountant state in 3 packed slots. */ AccountantState public accountantState; /** * @notice Maps ERC20s to their RateProviderData. */ mapping(ERC20 => RateProviderData) public rateProviderData; //============================== ERRORS =============================== error AccountantWithRateProviders__UpperBoundTooSmall(); error AccountantWithRateProviders__LowerBoundTooLarge(); error AccountantWithRateProviders__PlatformFeeTooLarge(); error AccountantWithRateProviders__PerformanceFeeTooLarge(); error AccountantWithRateProviders__Paused(); error AccountantWithRateProviders__ZeroFeesOwed(); error AccountantWithRateProviders__OnlyCallableByBoringVault(); error AccountantWithRateProviders__UpdateDelayTooLarge(); error AccountantWithRateProviders__ExchangeRateAboveHighwaterMark(); //============================== EVENTS =============================== event Paused(); event Unpaused(); event DelayInSecondsUpdated(uint24 oldDelay, uint24 newDelay); event UpperBoundUpdated(uint16 oldBound, uint16 newBound); event LowerBoundUpdated(uint16 oldBound, uint16 newBound); event PlatformFeeUpdated(uint16 oldFee, uint16 newFee); event PerformanceFeeUpdated(uint16 oldFee, uint16 newFee); event PayoutAddressUpdated(address oldPayout, address newPayout); event RateProviderUpdated(address asset, bool isPegged, address rateProvider); event ExchangeRateUpdated(uint96 oldRate, uint96 newRate, uint64 currentTime); event FeesClaimed(address indexed feeAsset, uint256 amount); event HighwaterMarkReset(); //============================== IMMUTABLES =============================== /** * @notice The base asset rates are provided in. */ ERC20 public immutable base; /** * @notice The decimals rates are provided in. */ uint8 public immutable decimals; /** * @notice The BoringVault this accountant is working with. * Used to determine share supply for fee calculation. */ BoringVault public immutable vault; /** * @notice One share of the BoringVault. */ uint256 internal immutable ONE_SHARE; constructor( address _owner, address _vault, address payoutAddress, uint96 startingExchangeRate, address _base, uint16 allowedExchangeRateChangeUpper, uint16 allowedExchangeRateChangeLower, uint24 minimumUpdateDelayInSeconds, uint16 platformFee, uint16 performanceFee ) Auth(_owner, Authority(address(0))) { base = ERC20(_base); decimals = ERC20(_base).decimals(); vault = BoringVault(payable(_vault)); ONE_SHARE = 10 ** vault.decimals(); accountantState = AccountantState({ payoutAddress: payoutAddress, highwaterMark: startingExchangeRate, feesOwedInBase: 0, totalSharesLastUpdate: uint128(vault.totalSupply()), exchangeRate: startingExchangeRate, allowedExchangeRateChangeUpper: allowedExchangeRateChangeUpper, allowedExchangeRateChangeLower: allowedExchangeRateChangeLower, lastUpdateTimestamp: uint64(block.timestamp), isPaused: false, minimumUpdateDelayInSeconds: minimumUpdateDelayInSeconds, platformFee: platformFee, performanceFee: performanceFee }); } // ========================================= ADMIN FUNCTIONS ========================================= /** * @notice Pause this contract, which prevents future calls to `updateExchangeRate`, and any safe rate * calls will revert. * @dev Callable by MULTISIG_ROLE. */ function pause() external requiresAuth { accountantState.isPaused = true; emit Paused(); } /** * @notice Unpause this contract, which allows future calls to `updateExchangeRate`, and any safe rate * calls will stop reverting. * @dev Callable by MULTISIG_ROLE. */ function unpause() external requiresAuth { accountantState.isPaused = false; emit Unpaused(); } /** * @notice Update the minimum time delay between `updateExchangeRate` calls. * @dev There are no input requirements, as it is possible the admin would want * the exchange rate updated as frequently as needed. * @dev Callable by OWNER_ROLE. */ function updateDelay(uint24 minimumUpdateDelayInSeconds) external requiresAuth { if (minimumUpdateDelayInSeconds > 14 days) revert AccountantWithRateProviders__UpdateDelayTooLarge(); uint24 oldDelay = accountantState.minimumUpdateDelayInSeconds; accountantState.minimumUpdateDelayInSeconds = minimumUpdateDelayInSeconds; emit DelayInSecondsUpdated(oldDelay, minimumUpdateDelayInSeconds); } /** * @notice Update the allowed upper bound change of exchange rate between `updateExchangeRateCalls`. * @dev Callable by OWNER_ROLE. */ function updateUpper(uint16 allowedExchangeRateChangeUpper) external requiresAuth { if (allowedExchangeRateChangeUpper < 1e4) revert AccountantWithRateProviders__UpperBoundTooSmall(); uint16 oldBound = accountantState.allowedExchangeRateChangeUpper; accountantState.allowedExchangeRateChangeUpper = allowedExchangeRateChangeUpper; emit UpperBoundUpdated(oldBound, allowedExchangeRateChangeUpper); } /** * @notice Update the allowed lower bound change of exchange rate between `updateExchangeRateCalls`. * @dev Callable by OWNER_ROLE. */ function updateLower(uint16 allowedExchangeRateChangeLower) external requiresAuth { if (allowedExchangeRateChangeLower > 1e4) revert AccountantWithRateProviders__LowerBoundTooLarge(); uint16 oldBound = accountantState.allowedExchangeRateChangeLower; accountantState.allowedExchangeRateChangeLower = allowedExchangeRateChangeLower; emit LowerBoundUpdated(oldBound, allowedExchangeRateChangeLower); } /** * @notice Update the platform fee to a new value. * @dev Callable by OWNER_ROLE. */ function updatePlatformFee(uint16 platformFee) external requiresAuth { if (platformFee > 0.2e4) revert AccountantWithRateProviders__PlatformFeeTooLarge(); uint16 oldFee = accountantState.platformFee; accountantState.platformFee = platformFee; emit PlatformFeeUpdated(oldFee, platformFee); } /** * @notice Update the performance fee to a new value. * @dev Callable by OWNER_ROLE. */ function updatePerformanceFee(uint16 performanceFee) external requiresAuth { if (performanceFee > 0.5e4) revert AccountantWithRateProviders__PerformanceFeeTooLarge(); uint16 oldFee = accountantState.performanceFee; accountantState.performanceFee = performanceFee; emit PerformanceFeeUpdated(oldFee, performanceFee); } /** * @notice Update the payout address fees are sent to. * @dev Callable by OWNER_ROLE. */ function updatePayoutAddress(address payoutAddress) external requiresAuth { address oldPayout = accountantState.payoutAddress; accountantState.payoutAddress = payoutAddress; emit PayoutAddressUpdated(oldPayout, payoutAddress); } /** * @notice Update the rate provider data for a specific `asset`. * @dev Rate providers must return rates in terms of `base` or * an asset pegged to base and they must use the same decimals * as `asset`. * @dev Callable by OWNER_ROLE. */ function setRateProviderData(ERC20 asset, bool isPeggedToBase, address rateProvider) external requiresAuth { rateProviderData[asset] = RateProviderData({isPeggedToBase: isPeggedToBase, rateProvider: IRateProvider(rateProvider)}); emit RateProviderUpdated(address(asset), isPeggedToBase, rateProvider); } /** * @notice Reset the highwater mark to the current exchange rate. * @dev Callable by OWNER_ROLE. */ function resetHighwaterMark() external virtual requiresAuth { AccountantState storage state = accountantState; if (state.exchangeRate > state.highwaterMark) { revert AccountantWithRateProviders__ExchangeRateAboveHighwaterMark(); } uint64 currentTime = uint64(block.timestamp); uint256 currentTotalShares = vault.totalSupply(); _calculateFeesOwed(state, state.exchangeRate, state.exchangeRate, currentTotalShares, currentTime); state.totalSharesLastUpdate = uint128(currentTotalShares); state.highwaterMark = accountantState.exchangeRate; state.lastUpdateTimestamp = currentTime; emit HighwaterMarkReset(); } // ========================================= UPDATE EXCHANGE RATE/FEES FUNCTIONS ========================================= /** * @notice Updates this contract exchangeRate. * @dev If new exchange rate is outside of accepted bounds, or if not enough time has passed, this * will pause the contract, and this function will NOT calculate fees owed. * @dev Callable by UPDATE_EXCHANGE_RATE_ROLE. */ function updateExchangeRate(uint96 newExchangeRate) external virtual requiresAuth { ( bool shouldPause, AccountantState storage state, uint64 currentTime, uint256 currentExchangeRate, uint256 currentTotalShares ) = _beforeUpdateExchangeRate(newExchangeRate); if (shouldPause) { // Instead of reverting, pause the contract. This way the exchange rate updater is able to update the exchange rate // to a better value, and pause it. state.isPaused = true; } else { _calculateFeesOwed(state, newExchangeRate, currentExchangeRate, currentTotalShares, currentTime); } newExchangeRate = _setExchangeRate(newExchangeRate, state); state.totalSharesLastUpdate = uint128(currentTotalShares); state.lastUpdateTimestamp = currentTime; emit ExchangeRateUpdated(uint96(currentExchangeRate), newExchangeRate, currentTime); } /** * @notice Claim pending fees. * @dev This function must be called by the BoringVault. * @dev This function will lose precision if the exchange rate * decimals is greater than the feeAsset's decimals. */ function claimFees(ERC20 feeAsset) external { if (msg.sender != address(vault)) revert AccountantWithRateProviders__OnlyCallableByBoringVault(); AccountantState storage state = accountantState; if (state.isPaused) revert AccountantWithRateProviders__Paused(); if (state.feesOwedInBase == 0) revert AccountantWithRateProviders__ZeroFeesOwed(); // Determine amount of fees owed in feeAsset. uint256 feesOwedInFeeAsset; RateProviderData memory data = rateProviderData[feeAsset]; if (address(feeAsset) == address(base)) { feesOwedInFeeAsset = state.feesOwedInBase; } else { uint8 feeAssetDecimals = ERC20(feeAsset).decimals(); uint256 feesOwedInBaseUsingFeeAssetDecimals = _changeDecimals(state.feesOwedInBase, decimals, feeAssetDecimals); if (data.isPeggedToBase) { feesOwedInFeeAsset = feesOwedInBaseUsingFeeAssetDecimals; } else { uint256 rate = data.rateProvider.getRate(); feesOwedInFeeAsset = feesOwedInBaseUsingFeeAssetDecimals.mulDivDown(10 ** feeAssetDecimals, rate); } } // Zero out fees owed. state.feesOwedInBase = 0; // Transfer fee asset to payout address. feeAsset.safeTransferFrom(msg.sender, state.payoutAddress, feesOwedInFeeAsset); emit FeesClaimed(address(feeAsset), feesOwedInFeeAsset); } // ========================================= VIEW FUNCTIONS ========================================= /** * @notice Get this BoringVault's current rate in the base. */ function getRate() public view returns (uint256 rate) { rate = accountantState.exchangeRate; } /** * @notice Get this BoringVault's current rate in the base. * @dev Revert if paused. */ function getRateSafe() external view returns (uint256 rate) { if (accountantState.isPaused) revert AccountantWithRateProviders__Paused(); rate = getRate(); } /** * @notice Get this BoringVault's current rate in the provided quote. * @dev `quote` must have its RateProviderData set, else this will revert. * @dev This function will lose precision if the exchange rate * decimals is greater than the quote's decimals. */ function getRateInQuote(ERC20 quote) public view returns (uint256 rateInQuote) { if (address(quote) == address(base)) { rateInQuote = accountantState.exchangeRate; } else { RateProviderData memory data = rateProviderData[quote]; uint8 quoteDecimals = ERC20(quote).decimals(); uint256 exchangeRateInQuoteDecimals = _changeDecimals(accountantState.exchangeRate, decimals, quoteDecimals); if (data.isPeggedToBase) { rateInQuote = exchangeRateInQuoteDecimals; } else { uint256 quoteRate = data.rateProvider.getRate(); uint256 oneQuote = 10 ** quoteDecimals; rateInQuote = oneQuote.mulDivDown(exchangeRateInQuoteDecimals, quoteRate); } } } /** * @notice Get this BoringVault's current rate in the provided quote. * @dev `quote` must have its RateProviderData set, else this will revert. * @dev Revert if paused. */ function getRateInQuoteSafe(ERC20 quote) external view returns (uint256 rateInQuote) { if (accountantState.isPaused) revert AccountantWithRateProviders__Paused(); rateInQuote = getRateInQuote(quote); } /** * @notice Preview the result of an update to the exchange rate. * @return updateWillPause Whether the update will pause the contract. * @return newFeesOwedInBase The new fees owed in base. * @return totalFeesOwedInBase The total fees owed in base. */ function previewUpdateExchangeRate(uint96 newExchangeRate) external view virtual returns (bool updateWillPause, uint256 newFeesOwedInBase, uint256 totalFeesOwedInBase) { ( bool shouldPause, AccountantState storage state, uint64 currentTime, uint256 currentExchangeRate, uint256 currentTotalShares ) = _beforeUpdateExchangeRate(newExchangeRate); updateWillPause = shouldPause; totalFeesOwedInBase = state.feesOwedInBase; if (!shouldPause) { (uint256 platformFeesOwedInBase, uint256 shareSupplyToUse) = _calculatePlatformFee( state.totalSharesLastUpdate, state.lastUpdateTimestamp, state.platformFee, newExchangeRate, currentExchangeRate, currentTotalShares, currentTime ); uint256 performanceFeesOwedInBase; if (newExchangeRate > state.highwaterMark) { (performanceFeesOwedInBase,) = _calculatePerformanceFee( newExchangeRate, shareSupplyToUse, state.highwaterMark, state.performanceFee ); } newFeesOwedInBase = platformFeesOwedInBase + performanceFeesOwedInBase; totalFeesOwedInBase += newFeesOwedInBase; } } // ========================================= INTERNAL HELPER FUNCTIONS ========================================= /** * @notice Used to change the decimals of precision used for an amount. */ function _changeDecimals(uint256 amount, uint8 fromDecimals, uint8 toDecimals) internal pure returns (uint256) { if (fromDecimals == toDecimals) { return amount; } else if (fromDecimals < toDecimals) { return amount * 10 ** (toDecimals - fromDecimals); } else { return amount / 10 ** (fromDecimals - toDecimals); } } /** * @notice Check if the new exchange rate is outside of the allowed bounds or if not enough time has passed. */ function _beforeUpdateExchangeRate(uint96 newExchangeRate) internal view returns ( bool shouldPause, AccountantState storage state, uint64 currentTime, uint256 currentExchangeRate, uint256 currentTotalShares ) { state = accountantState; if (state.isPaused) revert AccountantWithRateProviders__Paused(); currentTime = uint64(block.timestamp); currentExchangeRate = state.exchangeRate; currentTotalShares = vault.totalSupply(); shouldPause = currentTime < state.lastUpdateTimestamp + state.minimumUpdateDelayInSeconds || newExchangeRate > currentExchangeRate.mulDivDown(state.allowedExchangeRateChangeUpper, 1e4) || newExchangeRate < currentExchangeRate.mulDivDown(state.allowedExchangeRateChangeLower, 1e4); } /** * @notice Set the exchange rate. */ function _setExchangeRate(uint96 newExchangeRate, AccountantState storage state) internal virtual returns (uint96) { state.exchangeRate = newExchangeRate; return newExchangeRate; } /** * @notice Calculate platform fees. */ function _calculatePlatformFee( uint128 totalSharesLastUpdate, uint64 lastUpdateTimestamp, uint16 platformFee, uint96 newExchangeRate, uint256 currentExchangeRate, uint256 currentTotalShares, uint64 currentTime ) internal view returns (uint256 platformFeesOwedInBase, uint256 shareSupplyToUse) { shareSupplyToUse = currentTotalShares; // Use the minimum between current total supply and total supply for last update. if (totalSharesLastUpdate < shareSupplyToUse) { shareSupplyToUse = totalSharesLastUpdate; } // Determine platform fees owned. if (platformFee > 0) { uint256 timeDelta = currentTime - lastUpdateTimestamp; uint256 minimumAssets = newExchangeRate > currentExchangeRate ? shareSupplyToUse.mulDivDown(currentExchangeRate, ONE_SHARE) : shareSupplyToUse.mulDivDown(newExchangeRate, ONE_SHARE); uint256 platformFeesAnnual = minimumAssets.mulDivDown(platformFee, 1e4); platformFeesOwedInBase = platformFeesAnnual.mulDivDown(timeDelta, 365 days); } } /** * @notice Calculate performance fees. */ function _calculatePerformanceFee( uint96 newExchangeRate, uint256 shareSupplyToUse, uint96 datum, uint16 performanceFee ) internal view returns (uint256 performanceFeesOwedInBase, uint256 yieldEarned) { uint256 changeInExchangeRate = newExchangeRate - datum; yieldEarned = changeInExchangeRate.mulDivDown(shareSupplyToUse, ONE_SHARE); if (performanceFee > 0) { performanceFeesOwedInBase = yieldEarned.mulDivDown(performanceFee, 1e4); } } /** * @notice Calculate fees owed in base. * @dev This function will update the highwater mark if the new exchange rate is higher. */ function _calculateFeesOwed( AccountantState storage state, uint96 newExchangeRate, uint256 currentExchangeRate, uint256 currentTotalShares, uint64 currentTime ) internal virtual { // Only update fees if we are not paused. // Update fee accounting. (uint256 newFeesOwedInBase, uint256 shareSupplyToUse) = _calculatePlatformFee( state.totalSharesLastUpdate, state.lastUpdateTimestamp, state.platformFee, newExchangeRate, currentExchangeRate, currentTotalShares, currentTime ); // Account for performance fees. if (newExchangeRate > state.highwaterMark) { (uint256 performanceFeesOwedInBase,) = _calculatePerformanceFee(newExchangeRate, shareSupplyToUse, state.highwaterMark, state.performanceFee); // Add performance fees to fees owed. newFeesOwedInBase += performanceFeesOwedInBase; // Always update the highwater mark if the new exchange rate is higher. // This way if we are not iniitiall taking performance fees, we can start taking them // without back charging them on past performance. state.highwaterMark = newExchangeRate; } state.feesOwedInBase += uint128(newFeesOwedInBase); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @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://consensys.net/diligence/blog/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.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @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 or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * 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. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @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`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // 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 /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/utils/ERC721Holder.sol) pragma solidity ^0.8.20; import {IERC721Receiver} from "../IERC721Receiver.sol"; /** * @dev Implementation of the {IERC721Receiver} interface. * * Accepts all token transfers. * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or * {IERC721-setApprovalForAll}. */ abstract contract ERC721Holder is IERC721Receiver { /** * @dev See {IERC721Receiver-onERC721Received}. * * Always returns `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received(address, address, uint256, bytes memory) public virtual returns (bytes4) { return this.onERC721Received.selector; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/utils/ERC1155Holder.sol) pragma solidity ^0.8.20; import {IERC165, ERC165} from "../../../utils/introspection/ERC165.sol"; import {IERC1155Receiver} from "../IERC1155Receiver.sol"; /** * @dev Simple implementation of `IERC1155Receiver` that will allow a contract to hold ERC1155 tokens. * * IMPORTANT: When inheriting this contract, you must include a way to use the received tokens, otherwise they will be * stuck. */ abstract contract ERC1155Holder is ERC165, IERC1155Receiver { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155Receiver).interfaceId || super.supportsInterface(interfaceId); } function onERC1155Received( address, address, uint256, uint256, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155Received.selector; } function onERC1155BatchReceived( address, address, uint256[] memory, uint256[] memory, bytes memory ) public virtual override returns (bytes4) { return this.onERC1155BatchReceived.selector; } }
// SPDX-License-Identifier: UNLICENSED pragma solidity 0.8.21; interface BeforeTransferHook { function beforeTransfer(address from, address to, address operator) external view; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.20; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be * reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/ERC165.sol) pragma solidity ^0.8.20; import {IERC165} from "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.20; import {IERC165} from "../../utils/introspection/IERC165.sol"; /** * @dev Interface that must be implemented by smart contracts in order to receive * ERC-1155 token transfers. */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/introspection/IERC165.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "remappings": [ "@solmate/=lib/solmate/src/", "@forge-std/=lib/forge-std/src/", "@ds-test/=lib/forge-std/lib/ds-test/src/", "ds-test/=lib/forge-std/lib/ds-test/src/", "@openzeppelin/=lib/openzeppelin-contracts/", "@ccip/=lib/ccip/", "@oapp-auth/=lib/OAppAuth/src/", "@devtools-oapp-evm/=lib/OAppAuth/lib/devtools/packages/oapp-evm/contracts/oapp/", "@layerzerolabs/lz-evm-messagelib-v2/=lib/OAppAuth/node_modules/@layerzerolabs/lz-evm-messagelib-v2/", "@layerzerolabs/lz-evm-protocol-v2/=lib/OAppAuth/lib/LayerZero-V2/packages/layerzero-v2/evm/protocol/", "@layerzerolabs/oapp-evm/=lib/OAppAuth/lib/devtools/packages/oapp-evm/", "@lz-oapp-evm/=lib/OAppAuth/lib/LayerZero-V2/packages/layerzero-v2/evm/oapp/contracts/oapp/", "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", "@sbu/=lib/OAppAuth/lib/solidity-bytes-utils/", "LayerZero-V2/=lib/OAppAuth/lib/", "OAppAuth/=lib/OAppAuth/", "ccip/=lib/ccip/contracts/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "halmos-cheatcodes/=lib/OAppAuth/lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "solidity-bytes-utils/=lib/OAppAuth/node_modules/solidity-bytes-utils/", "solmate/=lib/solmate/src/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "london", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_vault","type":"address"},{"internalType":"address","name":"payoutAddress","type":"address"},{"internalType":"uint96","name":"startingExchangeRate","type":"uint96"},{"internalType":"address","name":"_base","type":"address"},{"internalType":"uint16","name":"allowedExchangeRateChangeUpper","type":"uint16"},{"internalType":"uint16","name":"allowedExchangeRateChangeLower","type":"uint16"},{"internalType":"uint24","name":"minimumUpdateDelayInSeconds","type":"uint24"},{"internalType":"uint16","name":"platformFee","type":"uint16"},{"internalType":"uint16","name":"performanceFee","type":"uint16"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AccountantWithFixedRate__HighWaterMarkCannotChange","type":"error"},{"inputs":[],"name":"AccountantWithFixedRate__OnlyCallableByYieldDistributor","type":"error"},{"inputs":[],"name":"AccountantWithFixedRate__StartingExchangeRateCannotBeGreaterThanFixed","type":"error"},{"inputs":[],"name":"AccountantWithFixedRate__UnsafeUint96Cast","type":"error"},{"inputs":[],"name":"AccountantWithFixedRate__ZeroYieldOwed","type":"error"},{"inputs":[],"name":"AccountantWithRateProviders__ExchangeRateAboveHighwaterMark","type":"error"},{"inputs":[],"name":"AccountantWithRateProviders__LowerBoundTooLarge","type":"error"},{"inputs":[],"name":"AccountantWithRateProviders__OnlyCallableByBoringVault","type":"error"},{"inputs":[],"name":"AccountantWithRateProviders__Paused","type":"error"},{"inputs":[],"name":"AccountantWithRateProviders__PerformanceFeeTooLarge","type":"error"},{"inputs":[],"name":"AccountantWithRateProviders__PlatformFeeTooLarge","type":"error"},{"inputs":[],"name":"AccountantWithRateProviders__UpdateDelayTooLarge","type":"error"},{"inputs":[],"name":"AccountantWithRateProviders__UpperBoundTooSmall","type":"error"},{"inputs":[],"name":"AccountantWithRateProviders__ZeroFeesOwed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"contract Authority","name":"newAuthority","type":"address"}],"name":"AuthorityUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint24","name":"oldDelay","type":"uint24"},{"indexed":false,"internalType":"uint24","name":"newDelay","type":"uint24"}],"name":"DelayInSecondsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint96","name":"oldRate","type":"uint96"},{"indexed":false,"internalType":"uint96","name":"newRate","type":"uint96"},{"indexed":false,"internalType":"uint64","name":"currentTime","type":"uint64"}],"name":"ExchangeRateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"feeAsset","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"FeesClaimed","type":"event"},{"anonymous":false,"inputs":[],"name":"HighwaterMarkReset","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"oldBound","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"newBound","type":"uint16"}],"name":"LowerBoundUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPayout","type":"address"},{"indexed":false,"internalType":"address","name":"newPayout","type":"address"}],"name":"PayoutAddressUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"oldFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"newFee","type":"uint16"}],"name":"PerformanceFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"oldFee","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"newFee","type":"uint16"}],"name":"PlatformFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"bool","name":"isPegged","type":"bool"},{"indexed":false,"internalType":"address","name":"rateProvider","type":"address"}],"name":"RateProviderUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"oldBound","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"newBound","type":"uint16"}],"name":"UpperBoundUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"yieldAsset","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"YieldClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"yieldDistributor","type":"address"}],"name":"YieldDistributorUpdated","type":"event"},{"inputs":[],"name":"accountantState","outputs":[{"internalType":"address","name":"payoutAddress","type":"address"},{"internalType":"uint96","name":"highwaterMark","type":"uint96"},{"internalType":"uint128","name":"feesOwedInBase","type":"uint128"},{"internalType":"uint128","name":"totalSharesLastUpdate","type":"uint128"},{"internalType":"uint96","name":"exchangeRate","type":"uint96"},{"internalType":"uint16","name":"allowedExchangeRateChangeUpper","type":"uint16"},{"internalType":"uint16","name":"allowedExchangeRateChangeLower","type":"uint16"},{"internalType":"uint64","name":"lastUpdateTimestamp","type":"uint64"},{"internalType":"bool","name":"isPaused","type":"bool"},{"internalType":"uint24","name":"minimumUpdateDelayInSeconds","type":"uint24"},{"internalType":"uint16","name":"platformFee","type":"uint16"},{"internalType":"uint16","name":"performanceFee","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"authority","outputs":[{"internalType":"contract Authority","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"base","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"feeAsset","type":"address"}],"name":"claimFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"yieldAsset","type":"address"}],"name":"claimYield","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fixedRateAccountantState","outputs":[{"internalType":"uint96","name":"yieldEarnedInBase","type":"uint96"},{"internalType":"address","name":"yieldDistributor","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRate","outputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"quote","type":"address"}],"name":"getRateInQuote","outputs":[{"internalType":"uint256","name":"rateInQuote","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"quote","type":"address"}],"name":"getRateInQuoteSafe","outputs":[{"internalType":"uint256","name":"rateInQuote","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRateSafe","outputs":[{"internalType":"uint256","name":"rate","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"newExchangeRate","type":"uint96"}],"name":"previewUpdateExchangeRate","outputs":[{"internalType":"bool","name":"updateWillPause","type":"bool"},{"internalType":"uint256","name":"newFeesOwedInBase","type":"uint256"},{"internalType":"uint256","name":"totalFeesOwedInBase","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"name":"rateProviderData","outputs":[{"internalType":"bool","name":"isPeggedToBase","type":"bool"},{"internalType":"contract IRateProvider","name":"rateProvider","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"resetHighwaterMark","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract Authority","name":"newAuthority","type":"address"}],"name":"setAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"asset","type":"address"},{"internalType":"bool","name":"isPeggedToBase","type":"bool"},{"internalType":"address","name":"rateProvider","type":"address"}],"name":"setRateProviderData","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"yieldDistributor","type":"address"}],"name":"setYieldDistributor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint24","name":"minimumUpdateDelayInSeconds","type":"uint24"}],"name":"updateDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint96","name":"newExchangeRate","type":"uint96"}],"name":"updateExchangeRate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"allowedExchangeRateChangeLower","type":"uint16"}],"name":"updateLower","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"payoutAddress","type":"address"}],"name":"updatePayoutAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"performanceFee","type":"uint16"}],"name":"updatePerformanceFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"platformFee","type":"uint16"}],"name":"updatePlatformFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"allowedExchangeRateChangeUpper","type":"uint16"}],"name":"updateUpper","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vault","outputs":[{"internalType":"contract BoringVault","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6101206040523480156200001257600080fd5b5060405162002b4c38038062002b4c8339810160408190526200003591620004a7565b600080546001600160a01b038c166001600160a01b031991821681178355600180549092169091556040518c928c928c928c928c928c928c928c928c928c928c92909133907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908490a36040516001600160a01b0382169033907fa3396fd7f6e0a21b50e5089d2da70d5ac0a3bbbd1f617a93f134b7638998019890600090a350506001600160a01b03861660808190526040805163313ce56760e01b8152905163313ce567916004808201926020929091908290030181865afa15801562000122573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200014891906200058d565b60ff1660a0526001600160a01b03891660c08190526040805163313ce56760e01b8152905163313ce567916004808201926020929091908290030181865afa15801562000199573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001bf91906200058d565b620001cc90600a620006ce565b60e08181525050604051806101800160405280896001600160a01b03168152602001886001600160601b0316815260200160006001600160801b0316815260200160c0516001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200024e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002749190620006df565b6001600160801b0390811682526001600160601b03998a1660208084019190915261ffff9889166040808501919091529789166060808501919091526001600160401b03428116608080870191909152600060a08088019190915262ffffff9a8b1660c080890191909152998d1660e080890191909152988d16610100978801528751948801518f16600160a01b026001600160a01b039095169490941760025599860151918601518416600160801b9081029290941691909117600355978401516004805486840151988701519787015195870151610120880151610140890151610160909901518e16600160f01b026001600160f01b03998f16600160e01b02999099166001600160e01b0391909c16600160c81b0262ffffff60c81b19921515600160c01b029290921663ffffffff60c01b1998909d16909602600160801b600160c01b0319998e16600160701b0299909916600160701b600160c01b03199a909d166c01000000000000000000000000026001600160701b031990921693909e16929092179190911796909616989098179390931716949094179690961795909516171790925550516200043393509150600a9050620006ce565b6001600160601b03908116610100819052908816111562000467576040516344716ffd60e01b815260040160405180910390fd5b50505050505050505050620006f9565b80516001600160a01b03811681146200048f57600080fd5b919050565b805161ffff811681146200048f57600080fd5b6000806000806000806000806000806101408b8d031215620004c857600080fd5b620004d38b62000477565b9950620004e360208c0162000477565b9850620004f360408c0162000477565b60608c01519098506001600160601b03811681146200051157600080fd5b96506200052160808c0162000477565b95506200053160a08c0162000494565b94506200054160c08c0162000494565b935060e08b015162ffffff811681146200055a57600080fd5b92506200056b6101008c0162000494565b91506200057c6101208c0162000494565b90509295989b9194979a5092959850565b600060208284031215620005a057600080fd5b815160ff81168114620005b257600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111562000610578160001904821115620005f457620005f4620005b9565b808516156200060257918102915b93841c9390800290620005d4565b509250929050565b6000826200062957506001620006c8565b816200063857506000620006c8565b81600181146200065157600281146200065c576200067c565b6001915050620006c8565b60ff841115620006705762000670620005b9565b50506001821b620006c8565b5060208310610133831016604e8410600b8410161715620006a1575081810a620006c8565b620006ad8383620005cf565b8060001904821115620006c457620006c4620005b9565b0290505b92915050565b6000620005b260ff84168362000618565b600060208284031215620006f257600080fd5b5051919050565b60805160a05160c05160e0516101005161239e620007ae60003960008181610f4b01528181610fd901528181611bcd01528181611c5b01528181611d8e0152611dfa015260008181611e9801528181611ec80152611f440152600081816105d501528181610602015281816116710152611a9c0152600081816102e001528181610798015281816109cf015261159a015260008181610474015281816106dd015281816108d901526114e5015261239e6000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636183fb95116101045780638456cb59116100a2578063bf7e214f11610071578063bf7e214f146105a2578063e059ac07146105b5578063f2fde38b146105bd578063fbfa77cf146105d057600080fd5b80638456cb59146105615780638da5cb5b14610569578063999927df1461057c578063afb069521461058f57600080fd5b80636a054dc9116100de5780636a054dc914610515578063709ac1c3146105285780637a9e5e4b1461053b578063820973da1461054e57600080fd5b80636183fb95146104c1578063634da58f146104f1578063679aefce1461050457600080fd5b8063313ce56711610171578063433255de1161014b578063433255de1461032f5780634d8be07e1461045c5780635001f3b51461046f57806356200819146104ae57600080fd5b8063313ce567146102db5780633458113d146103145780633f4ba83a1461032757600080fd5b80631dcbb110116101ad5780631dcbb1101461028c578063207ec0e7146102ad578063282a8700146102c05780633038a60d146102c857600080fd5b80630a4f02d7146101d457806312e2d8f31461022557806315a0ea6a14610277575b600080fd5b6006546101f9906001600160601b03811690600160601b90046001600160a01b031682565b604080516001600160601b0390931683526001600160a01b039091166020830152015b60405180910390f35b610258610233366004611faa565b60056020526000908152604090205460ff81169061010090046001600160a01b031682565b6040805192151583526001600160a01b0390911660208301520161021c565b61028a610285366004611faa565b6105f7565b005b61029f61029a366004611faa565b6108d5565b60405190815260200161021c565b61028a6102bb366004611fc7565b610a97565b61029f610b5f565b61028a6102d6366004611faa565b610b9d565b6103027f000000000000000000000000000000000000000000000000000000000000000081565b60405160ff909116815260200161021c565b61028a610322366004611feb565b610c21565b61028a610d40565b6002546003546004546103ca926001600160a01b03811692600160a01b9091046001600160601b03908116926001600160801b0380841693600160801b9081900490911692821691600160601b810461ffff90811692600160701b830482169290810467ffffffffffffffff1691600160c01b820460ff1691600160c81b810462ffffff1691600160e01b8204811691600160f01b9004168c565b604080516001600160a01b03909d168d526001600160601b039b8c1660208e01526001600160801b039a8b16908d01529890971660608b015297909416608089015261ffff92831660a089015290821660c088015267ffffffffffffffff1660e087015290151561010086015262ffffff9093166101208501528216610140840152166101608201526101800161021c565b61028a61046a366004612022565b610daa565b6104967f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161021c565b61028a6104bc366004611faa565b610e82565b6104d46104cf366004611feb565b610f0e565b60408051931515845260208401929092529082015260600161021c565b61028a6104ff366004611fc7565b611058565b6004546001600160601b031661029f565b61028a61052336600461206d565b61110f565b61028a610536366004611fc7565b6111ca565b61028a610549366004611faa565b611282565b61029f61055c366004611faa565b61136c565b61028a6113a9565b600054610496906001600160a01b031681565b61028a61058a366004611faa565b611419565b61028a61059d366004611fc7565b6116ea565b600154610496906001600160a01b031681565b61028a6117a1565b61028a6105cb366004611faa565b6117ec565b6104967f000000000000000000000000000000000000000000000000000000000000000081565b336001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000161461064057604051637e3db46f60e01b815260040160405180910390fd5b600454600290600160c01b900460ff161561066e57604051631d98997b60e11b815260040160405180910390fd5b60018101546001600160801b031660000361069c5760405163115b9d8b60e21b815260040160405180910390fd5b6001600160a01b03808316600081815260056020908152604080832081518083019092525460ff8116151582526101009004851691810191909152909290917f0000000000000000000000000000000000000000000000000000000000000000909116900361071a5760018301546001600160801b03169150610856565b6000846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561075a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077e9190612092565b60018501549091506000906107bd906001600160801b03167f000000000000000000000000000000000000000000000000000000000000000084611869565b8351909150156107cf57809350610853565b600083602001516001600160a01b031663679aefce6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610813573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061083791906120b5565b905061084f61084784600a6121c8565b8390836118d9565b9450505b50505b6001830180546fffffffffffffffffffffffffffffffff19169055825461088c906001600160a01b0386811691339116856118f7565b836001600160a01b03167f9493e5bbe4e8e0ac67284469a2d677403d0378a85a59e341d3abc433d0d9a209836040516108c791815260200190565b60405180910390a250505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316036109215750506004546001600160601b031690565b6001600160a01b03808316600081815260056020908152604080832081518083018352905460ff811615158252610100900490951685830152805163313ce56760e01b8152905192939263313ce567926004808401939192918290030181865afa158015610993573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b79190612092565b6004549091506000906109f4906001600160601b03167f000000000000000000000000000000000000000000000000000000000000000084611869565b835190915015610a0657809350610a8f565b600083602001516001600160a01b031663679aefce6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6e91906120b5565b90506000610a7d84600a6121c8565b9050610a8a8184846118d9565b955050505b505050919050565b610aad336000356001600160e01b031916611993565b610ad25760405162461bcd60e51b8152600401610ac9906121d7565b60405180910390fd5b6127108161ffff161115610af957604051637375d3bf60e01b815260040160405180910390fd5b6004805461ffff838116600160701b81810261ffff60701b1985161790945560408051949093049091168084526020840191909152917f76fe3c3557dd03afa5caf76f66f4019444ef3999e784ba08f47a33428fcc64d591015b60405180910390a15050565b600454600090600160c01b900460ff1615610b8d57604051631d98997b60e11b815260040160405180910390fd5b506004546001600160601b031690565b610bb3336000356001600160e01b031916611993565b610bcf5760405162461bcd60e51b8152600401610ac9906121d7565b600680546001600160601b0316600160601b6001600160a01b038416908102919091179091556040517f7d9c3ef9e65227fa9a8638f9e876cf890ef686bad3ab18e6c3a3f7cb9de258a090600090a250565b610c37336000356001600160e01b031916611993565b610c535760405162461bcd60e51b8152600401610ac9906121d7565b6000806000806000610c6486611a3d565b945094509450945094508415610c8e5760028401805460ff60c01b1916600160c01b179055610c9b565b610c9b8487848487611bcb565b610ca58685611d8a565b6001850180546001600160801b03908116600160801b91851682021790915560028601805467ffffffffffffffff60801b191667ffffffffffffffff8716928302179055604080516001600160601b03808716825284166020820152908101919091529096507fa95bc6aba40bbc4d95fc35f118c4cd8b53fc5d5b89ed264002af03503a7a94399060600160405180910390a1505050505050565b610d56336000356001600160e01b031916611993565b610d725760405162461bcd60e51b8152600401610ac9906121d7565b6004805460ff60c01b191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b610dc0336000356001600160e01b031916611993565b610ddc5760405162461bcd60e51b8152600401610ac9906121d7565b6040805180820182528315158082526001600160a01b0384811660208085018281528984166000818152600584528890209651875492516001600160a81b0319909316901515610100600160a81b03191617610100929095169190910293909317909455845191825292810191909152918201527f59f9adfe8cf4c9d4b77fb03aa2ae5f373632c97cb8caf6b61f0643d3d170a8fe9060600160405180910390a1505050565b610e98336000356001600160e01b031916611993565b610eb45760405162461bcd60e51b8152600401610ac9906121d7565b600280546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527fba2be5e898fed1646bc0814dee1cc9a2aee98f51fced7d5fc4699c47d99077539101610b53565b600080600080600080600080610f2389611a3d565b6001840154949c506001600160801b0390941699508b98509196509450925090508461104c577f00000000000000000000000000000000000000000000000000000000000000006001600160601b0316896001600160601b0316111561104c57600184015460028501546000918291610fcb91600160801b908190046001600160801b03169190810467ffffffffffffffff1690600160e01b900461ffff168e88888b611e34565b915091506000806110108d847f00000000000000000000000000000000000000000000000000000000000000008b600201601e9054906101000a900461ffff16611f24565b909250905061101f82856121fd565b81101561102e57819a5061103b565b61103882856121fd565b9a505b6110458b8b6121fd565b9950505050505b50505050509193909250565b61106e336000356001600160e01b031916611993565b61108a5760405162461bcd60e51b8152600401610ac9906121d7565b6127108161ffff1610156110b15760405163a4ec27a960e01b815260040160405180910390fd5b6004805461ffff838116600160601b81810261ffff60601b1985161790945560408051949093049091168084526020840191909152917f67d3a3f6bebb5b894324217d5224ff719d5d95dfc67f1bb2645dddbfcd43cadb9101610b53565b611125336000356001600160e01b031916611993565b6111415760405162461bcd60e51b8152600401610ac9906121d7565b621275008162ffffff16111561116a57604051635badbfbb60e01b815260040160405180910390fd5b6004805462ffffff838116600160c81b81810262ffffff60c81b1985161790945560408051949093049091168084526020840191909152917f5f7db254db512f40348d8a7ca15d574c051dfe59c19b47e273d926f2f43186069101610b53565b6111e0336000356001600160e01b031916611993565b6111fc5760405162461bcd60e51b8152600401610ac9906121d7565b6113888161ffff1611156112235760405163fdaeddbb60e01b815260040160405180910390fd5b6004805461ffff838116600160f01b8181026001600160f01b0385161790945560408051949093049091168084526020840191909152917fba8506b6cb85330fea21cbca8490aafb6a69b166f06201ef755eb511b2709fc19101610b53565b6000546001600160a01b0316331480611317575060015460405163b700961360e01b81526001600160a01b039091169063b7009613906112d690339030906001600160e01b03196000351690600401612210565b602060405180830381865afa1580156112f3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611317919061223d565b61132057600080fd5b600180546001600160a01b0319166001600160a01b03831690811790915560405133907fa3396fd7f6e0a21b50e5089d2da70d5ac0a3bbbd1f617a93f134b7638998019890600090a350565b600454600090600160c01b900460ff161561139a57604051631d98997b60e11b815260040160405180910390fd5b6113a3826108d5565b92915050565b6113bf336000356001600160e01b031916611993565b6113db5760405162461bcd60e51b8152600401610ac9906121d7565b6004805460ff60c01b1916600160c01b1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b60068054600160601b90046001600160a01b0316331461144c57604051634c012b5760e01b815260040160405180910390fd5b600454600290600160c01b900460ff161561147a57604051631d98997b60e11b815260040160405180910390fd5b81546001600160601b03166000036114a45760405162d27dd760e01b815260040160405180910390fd5b6001600160a01b03808416600081815260056020908152604080832081518083019092525460ff8116151582526101009004851691810191909152909290917f0000000000000000000000000000000000000000000000000000000000000000909116900361151f5783546001600160601b03169150611650565b6000856001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561155f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115839190612092565b85549091506000906115bf906001600160601b03167f000000000000000000000000000000000000000000000000000000000000000084611869565b8351909150156115d15780935061164d565b600083602001516001600160a01b031663679aefce6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611615573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163991906120b5565b905061164961084784600a6121c8565b9450505b50505b83546001600160601b0319168085556116a0906001600160a01b03878116917f000000000000000000000000000000000000000000000000000000000000000091600160601b90910416856118f7565b846001600160a01b03167fc04825ba3f383b602255d2a13065a68e325c65c9e0ed5d031ea2b06f641873af836040516116db91815260200190565b60405180910390a25050505050565b611700336000356001600160e01b031916611993565b61171c5760405162461bcd60e51b8152600401610ac9906121d7565b6107d08161ffff1611156117435760405163173aacc160e31b815260040160405180910390fd5b6004805461ffff838116600160e01b81810261ffff60e01b1985161790945560408051949093049091168084526020840191909152917f84e4fe32bf74c4011a7e1fde79c63acdffaf92a0112cde153e7b0abee665bc6b9101610b53565b6117b7336000356001600160e01b031916611993565b6117d35760405162461bcd60e51b8152600401610ac9906121d7565b60405163b64de88560e01b815260040160405180910390fd5b611802336000356001600160e01b031916611993565b61181e5760405162461bcd60e51b8152600401610ac9906121d7565b600080546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60008160ff168360ff160361187f5750826118d2565b8160ff168360ff1610156118b357611897838361225a565b6118a290600a6121c8565b6118ac9085612273565b90506118d2565b6118bd828461225a565b6118c890600a6121c8565b6118ac908561228a565b9392505050565b60008260001904841183021582026118f057600080fd5b5091020490565b60006040516323b872dd60e01b81526001600160a01b03851660048201526001600160a01b03841660248201528260448201526020600060648360008a5af13d15601f3d116001600051141617169150508061198c5760405162461bcd60e51b81526020600482015260146024820152731514905394d1915497d19493d357d1905253115160621b6044820152606401610ac9565b5050505050565b6001546000906001600160a01b03168015801590611a1d575060405163b700961360e01b81526001600160a01b0382169063b7009613906119dc90879030908890600401612210565b602060405180830381865afa1580156119f9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1d919061223d565b80611a3557506000546001600160a01b038581169116145b949350505050565b600454600090600290829081908190600160c01b900460ff1615611a7457604051631d98997b60e11b815260040160405180910390fd5b4292508360020160009054906101000a90046001600160601b03166001600160601b031691507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611af8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1c91906120b5565b6002850154909150611b4b90600160c81b810462ffffff1690600160801b900467ffffffffffffffff166122ac565b67ffffffffffffffff168367ffffffffffffffff161080611b9157506002840154611b85908390600160601b900461ffff166127106118d9565b866001600160601b0316115b80611bc157506002840154611bb5908390600160701b900461ffff166127106118d9565b866001600160601b0316105b9693955091935091565b7f00000000000000000000000000000000000000000000000000000000000000006001600160601b0316846001600160601b0316111561198c57600185015460028601546000918291611c4d91600160801b908190046001600160801b03169190810467ffffffffffffffff1690600160e01b900461ffff1689898989611e34565b91509150600080611c9288847f00000000000000000000000000000000000000000000000000000000000000008c600201601e9054906101000a900461ffff16611f24565b90925090506000611ca383866121fd565b821015611cb1575081611cbe565b611cbb83866121fd565b90505b611cc881836122d4565b91506001600160601b03821115611cf257604051631eab0c8f60e31b815260040160405180910390fd5b60068054839190600090611d109084906001600160601b03166122e7565b92506101000a8154816001600160601b0302191690836001600160601b03160217905550808a60010160008282829054906101000a90046001600160801b0316611d5a9190612307565b92506101000a8154816001600160801b0302191690836001600160801b0316021790555050505050505050505050565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160601b0316836001600160601b03161015611de8576002820180546001600160601b0319166001600160601b038516179055611e2d565b6002820180546001600160601b0319167f00000000000000000000000000000000000000000000000000000000000000006001600160601b0381169190911790915592505b5090919050565b6000826001600160801b038916811115611e5457506001600160801b0388165b61ffff871615611f18576000611e6a8985612327565b67ffffffffffffffff169050600086886001600160601b031611611ec157611ebc836001600160601b038a167f00000000000000000000000000000000000000000000000000000000000000006118d9565b611eec565b611eec83887f00000000000000000000000000000000000000000000000000000000000000006118d9565b90506000611f018261ffff8c166127106118d9565b9050611f1281846301e133806118d9565b94505050505b97509795505050505050565b60008080611f328588612348565b6001600160601b03169050611f6881877f00000000000000000000000000000000000000000000000000000000000000006118d9565b915061ffff841615611f8857611f858261ffff86166127106118d9565b92505b5094509492505050565b6001600160a01b0381168114611fa757600080fd5b50565b600060208284031215611fbc57600080fd5b81356118d281611f92565b600060208284031215611fd957600080fd5b813561ffff811681146118d257600080fd5b600060208284031215611ffd57600080fd5b81356001600160601b03811681146118d257600080fd5b8015158114611fa757600080fd5b60008060006060848603121561203757600080fd5b833561204281611f92565b9250602084013561205281612014565b9150604084013561206281611f92565b809150509250925092565b60006020828403121561207f57600080fd5b813562ffffff811681146118d257600080fd5b6000602082840312156120a457600080fd5b815160ff811681146118d257600080fd5b6000602082840312156120c757600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561211f578160001904821115612105576121056120ce565b8085161561211257918102915b93841c93908002906120e9565b509250929050565b600082612136575060016113a3565b81612143575060006113a3565b816001811461215957600281146121635761217f565b60019150506113a3565b60ff841115612174576121746120ce565b50506001821b6113a3565b5060208310610133831016604e8410600b84101617156121a2575081810a6113a3565b6121ac83836120e4565b80600019048211156121c0576121c06120ce565b029392505050565b60006118d260ff841683612127565b6020808252600c908201526b15539055551213d49256915160a21b604082015260600190565b808201808211156113a3576113a36120ce565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b60006020828403121561224f57600080fd5b81516118d281612014565b60ff82811682821603908111156113a3576113a36120ce565b80820281158282048414176113a3576113a36120ce565b6000826122a757634e487b7160e01b600052601260045260246000fd5b500490565b67ffffffffffffffff8181168382160190808211156122cd576122cd6120ce565b5092915050565b818103818111156113a3576113a36120ce565b6001600160601b038181168382160190808211156122cd576122cd6120ce565b6001600160801b038181168382160190808211156122cd576122cd6120ce565b67ffffffffffffffff8281168282160390808211156122cd576122cd6120ce565b6001600160601b038281168282160390808211156122cd576122cd6120ce56fea26469706673582212201de283202d10d881c1389a8acb875510b3843ee238a78dbe8177adbf3e93c78964736f6c634300081500330000000000000000000000005f2f11ad8656439d5c14d9b351f8b09cdac2a02d000000000000000000000000d3dce716f3ef535c5ff8d041c1a41c3bd89b97ae000000000000000000000000fc78c2cb63085343a26f2cf439ace51f4fa994da00000000000000000000000000000000000000000000000000000000000f424000000000000000000000000029219dd400f2bf60e5a23d13be72b486d4038894000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000026ac0000000000000000000000000000000000000000000000000000000000005460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c80636183fb95116101045780638456cb59116100a2578063bf7e214f11610071578063bf7e214f146105a2578063e059ac07146105b5578063f2fde38b146105bd578063fbfa77cf146105d057600080fd5b80638456cb59146105615780638da5cb5b14610569578063999927df1461057c578063afb069521461058f57600080fd5b80636a054dc9116100de5780636a054dc914610515578063709ac1c3146105285780637a9e5e4b1461053b578063820973da1461054e57600080fd5b80636183fb95146104c1578063634da58f146104f1578063679aefce1461050457600080fd5b8063313ce56711610171578063433255de1161014b578063433255de1461032f5780634d8be07e1461045c5780635001f3b51461046f57806356200819146104ae57600080fd5b8063313ce567146102db5780633458113d146103145780633f4ba83a1461032757600080fd5b80631dcbb110116101ad5780631dcbb1101461028c578063207ec0e7146102ad578063282a8700146102c05780633038a60d146102c857600080fd5b80630a4f02d7146101d457806312e2d8f31461022557806315a0ea6a14610277575b600080fd5b6006546101f9906001600160601b03811690600160601b90046001600160a01b031682565b604080516001600160601b0390931683526001600160a01b039091166020830152015b60405180910390f35b610258610233366004611faa565b60056020526000908152604090205460ff81169061010090046001600160a01b031682565b6040805192151583526001600160a01b0390911660208301520161021c565b61028a610285366004611faa565b6105f7565b005b61029f61029a366004611faa565b6108d5565b60405190815260200161021c565b61028a6102bb366004611fc7565b610a97565b61029f610b5f565b61028a6102d6366004611faa565b610b9d565b6103027f000000000000000000000000000000000000000000000000000000000000000681565b60405160ff909116815260200161021c565b61028a610322366004611feb565b610c21565b61028a610d40565b6002546003546004546103ca926001600160a01b03811692600160a01b9091046001600160601b03908116926001600160801b0380841693600160801b9081900490911692821691600160601b810461ffff90811692600160701b830482169290810467ffffffffffffffff1691600160c01b820460ff1691600160c81b810462ffffff1691600160e01b8204811691600160f01b9004168c565b604080516001600160a01b03909d168d526001600160601b039b8c1660208e01526001600160801b039a8b16908d01529890971660608b015297909416608089015261ffff92831660a089015290821660c088015267ffffffffffffffff1660e087015290151561010086015262ffffff9093166101208501528216610140840152166101608201526101800161021c565b61028a61046a366004612022565b610daa565b6104967f00000000000000000000000029219dd400f2bf60e5a23d13be72b486d403889481565b6040516001600160a01b03909116815260200161021c565b61028a6104bc366004611faa565b610e82565b6104d46104cf366004611feb565b610f0e565b60408051931515845260208401929092529082015260600161021c565b61028a6104ff366004611fc7565b611058565b6004546001600160601b031661029f565b61028a61052336600461206d565b61110f565b61028a610536366004611fc7565b6111ca565b61028a610549366004611faa565b611282565b61029f61055c366004611faa565b61136c565b61028a6113a9565b600054610496906001600160a01b031681565b61028a61058a366004611faa565b611419565b61028a61059d366004611fc7565b6116ea565b600154610496906001600160a01b031681565b61028a6117a1565b61028a6105cb366004611faa565b6117ec565b6104967f000000000000000000000000d3dce716f3ef535c5ff8d041c1a41c3bd89b97ae81565b336001600160a01b037f000000000000000000000000d3dce716f3ef535c5ff8d041c1a41c3bd89b97ae161461064057604051637e3db46f60e01b815260040160405180910390fd5b600454600290600160c01b900460ff161561066e57604051631d98997b60e11b815260040160405180910390fd5b60018101546001600160801b031660000361069c5760405163115b9d8b60e21b815260040160405180910390fd5b6001600160a01b03808316600081815260056020908152604080832081518083019092525460ff8116151582526101009004851691810191909152909290917f00000000000000000000000029219dd400f2bf60e5a23d13be72b486d4038894909116900361071a5760018301546001600160801b03169150610856565b6000846001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561075a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061077e9190612092565b60018501549091506000906107bd906001600160801b03167f000000000000000000000000000000000000000000000000000000000000000684611869565b8351909150156107cf57809350610853565b600083602001516001600160a01b031663679aefce6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610813573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061083791906120b5565b905061084f61084784600a6121c8565b8390836118d9565b9450505b50505b6001830180546fffffffffffffffffffffffffffffffff19169055825461088c906001600160a01b0386811691339116856118f7565b836001600160a01b03167f9493e5bbe4e8e0ac67284469a2d677403d0378a85a59e341d3abc433d0d9a209836040516108c791815260200190565b60405180910390a250505050565b60007f00000000000000000000000029219dd400f2bf60e5a23d13be72b486d40388946001600160a01b0316826001600160a01b0316036109215750506004546001600160601b031690565b6001600160a01b03808316600081815260056020908152604080832081518083018352905460ff811615158252610100900490951685830152805163313ce56760e01b8152905192939263313ce567926004808401939192918290030181865afa158015610993573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b79190612092565b6004549091506000906109f4906001600160601b03167f000000000000000000000000000000000000000000000000000000000000000684611869565b835190915015610a0657809350610a8f565b600083602001516001600160a01b031663679aefce6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610a4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a6e91906120b5565b90506000610a7d84600a6121c8565b9050610a8a8184846118d9565b955050505b505050919050565b610aad336000356001600160e01b031916611993565b610ad25760405162461bcd60e51b8152600401610ac9906121d7565b60405180910390fd5b6127108161ffff161115610af957604051637375d3bf60e01b815260040160405180910390fd5b6004805461ffff838116600160701b81810261ffff60701b1985161790945560408051949093049091168084526020840191909152917f76fe3c3557dd03afa5caf76f66f4019444ef3999e784ba08f47a33428fcc64d591015b60405180910390a15050565b600454600090600160c01b900460ff1615610b8d57604051631d98997b60e11b815260040160405180910390fd5b506004546001600160601b031690565b610bb3336000356001600160e01b031916611993565b610bcf5760405162461bcd60e51b8152600401610ac9906121d7565b600680546001600160601b0316600160601b6001600160a01b038416908102919091179091556040517f7d9c3ef9e65227fa9a8638f9e876cf890ef686bad3ab18e6c3a3f7cb9de258a090600090a250565b610c37336000356001600160e01b031916611993565b610c535760405162461bcd60e51b8152600401610ac9906121d7565b6000806000806000610c6486611a3d565b945094509450945094508415610c8e5760028401805460ff60c01b1916600160c01b179055610c9b565b610c9b8487848487611bcb565b610ca58685611d8a565b6001850180546001600160801b03908116600160801b91851682021790915560028601805467ffffffffffffffff60801b191667ffffffffffffffff8716928302179055604080516001600160601b03808716825284166020820152908101919091529096507fa95bc6aba40bbc4d95fc35f118c4cd8b53fc5d5b89ed264002af03503a7a94399060600160405180910390a1505050505050565b610d56336000356001600160e01b031916611993565b610d725760405162461bcd60e51b8152600401610ac9906121d7565b6004805460ff60c01b191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d1693390600090a1565b610dc0336000356001600160e01b031916611993565b610ddc5760405162461bcd60e51b8152600401610ac9906121d7565b6040805180820182528315158082526001600160a01b0384811660208085018281528984166000818152600584528890209651875492516001600160a81b0319909316901515610100600160a81b03191617610100929095169190910293909317909455845191825292810191909152918201527f59f9adfe8cf4c9d4b77fb03aa2ae5f373632c97cb8caf6b61f0643d3d170a8fe9060600160405180910390a1505050565b610e98336000356001600160e01b031916611993565b610eb45760405162461bcd60e51b8152600401610ac9906121d7565b600280546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527fba2be5e898fed1646bc0814dee1cc9a2aee98f51fced7d5fc4699c47d99077539101610b53565b600080600080600080600080610f2389611a3d565b6001840154949c506001600160801b0390941699508b98509196509450925090508461104c577f00000000000000000000000000000000000000000000000000000000000f42406001600160601b0316896001600160601b0316111561104c57600184015460028501546000918291610fcb91600160801b908190046001600160801b03169190810467ffffffffffffffff1690600160e01b900461ffff168e88888b611e34565b915091506000806110108d847f00000000000000000000000000000000000000000000000000000000000f42408b600201601e9054906101000a900461ffff16611f24565b909250905061101f82856121fd565b81101561102e57819a5061103b565b61103882856121fd565b9a505b6110458b8b6121fd565b9950505050505b50505050509193909250565b61106e336000356001600160e01b031916611993565b61108a5760405162461bcd60e51b8152600401610ac9906121d7565b6127108161ffff1610156110b15760405163a4ec27a960e01b815260040160405180910390fd5b6004805461ffff838116600160601b81810261ffff60601b1985161790945560408051949093049091168084526020840191909152917f67d3a3f6bebb5b894324217d5224ff719d5d95dfc67f1bb2645dddbfcd43cadb9101610b53565b611125336000356001600160e01b031916611993565b6111415760405162461bcd60e51b8152600401610ac9906121d7565b621275008162ffffff16111561116a57604051635badbfbb60e01b815260040160405180910390fd5b6004805462ffffff838116600160c81b81810262ffffff60c81b1985161790945560408051949093049091168084526020840191909152917f5f7db254db512f40348d8a7ca15d574c051dfe59c19b47e273d926f2f43186069101610b53565b6111e0336000356001600160e01b031916611993565b6111fc5760405162461bcd60e51b8152600401610ac9906121d7565b6113888161ffff1611156112235760405163fdaeddbb60e01b815260040160405180910390fd5b6004805461ffff838116600160f01b8181026001600160f01b0385161790945560408051949093049091168084526020840191909152917fba8506b6cb85330fea21cbca8490aafb6a69b166f06201ef755eb511b2709fc19101610b53565b6000546001600160a01b0316331480611317575060015460405163b700961360e01b81526001600160a01b039091169063b7009613906112d690339030906001600160e01b03196000351690600401612210565b602060405180830381865afa1580156112f3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611317919061223d565b61132057600080fd5b600180546001600160a01b0319166001600160a01b03831690811790915560405133907fa3396fd7f6e0a21b50e5089d2da70d5ac0a3bbbd1f617a93f134b7638998019890600090a350565b600454600090600160c01b900460ff161561139a57604051631d98997b60e11b815260040160405180910390fd5b6113a3826108d5565b92915050565b6113bf336000356001600160e01b031916611993565b6113db5760405162461bcd60e51b8152600401610ac9906121d7565b6004805460ff60c01b1916600160c01b1790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e75290600090a1565b60068054600160601b90046001600160a01b0316331461144c57604051634c012b5760e01b815260040160405180910390fd5b600454600290600160c01b900460ff161561147a57604051631d98997b60e11b815260040160405180910390fd5b81546001600160601b03166000036114a45760405162d27dd760e01b815260040160405180910390fd5b6001600160a01b03808416600081815260056020908152604080832081518083019092525460ff8116151582526101009004851691810191909152909290917f00000000000000000000000029219dd400f2bf60e5a23d13be72b486d4038894909116900361151f5783546001600160601b03169150611650565b6000856001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa15801561155f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115839190612092565b85549091506000906115bf906001600160601b03167f000000000000000000000000000000000000000000000000000000000000000684611869565b8351909150156115d15780935061164d565b600083602001516001600160a01b031663679aefce6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611615573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061163991906120b5565b905061164961084784600a6121c8565b9450505b50505b83546001600160601b0319168085556116a0906001600160a01b03878116917f000000000000000000000000d3dce716f3ef535c5ff8d041c1a41c3bd89b97ae91600160601b90910416856118f7565b846001600160a01b03167fc04825ba3f383b602255d2a13065a68e325c65c9e0ed5d031ea2b06f641873af836040516116db91815260200190565b60405180910390a25050505050565b611700336000356001600160e01b031916611993565b61171c5760405162461bcd60e51b8152600401610ac9906121d7565b6107d08161ffff1611156117435760405163173aacc160e31b815260040160405180910390fd5b6004805461ffff838116600160e01b81810261ffff60e01b1985161790945560408051949093049091168084526020840191909152917f84e4fe32bf74c4011a7e1fde79c63acdffaf92a0112cde153e7b0abee665bc6b9101610b53565b6117b7336000356001600160e01b031916611993565b6117d35760405162461bcd60e51b8152600401610ac9906121d7565b60405163b64de88560e01b815260040160405180910390fd5b611802336000356001600160e01b031916611993565b61181e5760405162461bcd60e51b8152600401610ac9906121d7565b600080546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b60008160ff168360ff160361187f5750826118d2565b8160ff168360ff1610156118b357611897838361225a565b6118a290600a6121c8565b6118ac9085612273565b90506118d2565b6118bd828461225a565b6118c890600a6121c8565b6118ac908561228a565b9392505050565b60008260001904841183021582026118f057600080fd5b5091020490565b60006040516323b872dd60e01b81526001600160a01b03851660048201526001600160a01b03841660248201528260448201526020600060648360008a5af13d15601f3d116001600051141617169150508061198c5760405162461bcd60e51b81526020600482015260146024820152731514905394d1915497d19493d357d1905253115160621b6044820152606401610ac9565b5050505050565b6001546000906001600160a01b03168015801590611a1d575060405163b700961360e01b81526001600160a01b0382169063b7009613906119dc90879030908890600401612210565b602060405180830381865afa1580156119f9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a1d919061223d565b80611a3557506000546001600160a01b038581169116145b949350505050565b600454600090600290829081908190600160c01b900460ff1615611a7457604051631d98997b60e11b815260040160405180910390fd5b4292508360020160009054906101000a90046001600160601b03166001600160601b031691507f000000000000000000000000d3dce716f3ef535c5ff8d041c1a41c3bd89b97ae6001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa158015611af8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b1c91906120b5565b6002850154909150611b4b90600160c81b810462ffffff1690600160801b900467ffffffffffffffff166122ac565b67ffffffffffffffff168367ffffffffffffffff161080611b9157506002840154611b85908390600160601b900461ffff166127106118d9565b866001600160601b0316115b80611bc157506002840154611bb5908390600160701b900461ffff166127106118d9565b866001600160601b0316105b9693955091935091565b7f00000000000000000000000000000000000000000000000000000000000f42406001600160601b0316846001600160601b0316111561198c57600185015460028601546000918291611c4d91600160801b908190046001600160801b03169190810467ffffffffffffffff1690600160e01b900461ffff1689898989611e34565b91509150600080611c9288847f00000000000000000000000000000000000000000000000000000000000f42408c600201601e9054906101000a900461ffff16611f24565b90925090506000611ca383866121fd565b821015611cb1575081611cbe565b611cbb83866121fd565b90505b611cc881836122d4565b91506001600160601b03821115611cf257604051631eab0c8f60e31b815260040160405180910390fd5b60068054839190600090611d109084906001600160601b03166122e7565b92506101000a8154816001600160601b0302191690836001600160601b03160217905550808a60010160008282829054906101000a90046001600160801b0316611d5a9190612307565b92506101000a8154816001600160801b0302191690836001600160801b0316021790555050505050505050505050565b60007f00000000000000000000000000000000000000000000000000000000000f42406001600160601b0316836001600160601b03161015611de8576002820180546001600160601b0319166001600160601b038516179055611e2d565b6002820180546001600160601b0319167f00000000000000000000000000000000000000000000000000000000000f42406001600160601b0381169190911790915592505b5090919050565b6000826001600160801b038916811115611e5457506001600160801b0388165b61ffff871615611f18576000611e6a8985612327565b67ffffffffffffffff169050600086886001600160601b031611611ec157611ebc836001600160601b038a167f00000000000000000000000000000000000000000000000000000000000f42406118d9565b611eec565b611eec83887f00000000000000000000000000000000000000000000000000000000000f42406118d9565b90506000611f018261ffff8c166127106118d9565b9050611f1281846301e133806118d9565b94505050505b97509795505050505050565b60008080611f328588612348565b6001600160601b03169050611f6881877f00000000000000000000000000000000000000000000000000000000000f42406118d9565b915061ffff841615611f8857611f858261ffff86166127106118d9565b92505b5094509492505050565b6001600160a01b0381168114611fa757600080fd5b50565b600060208284031215611fbc57600080fd5b81356118d281611f92565b600060208284031215611fd957600080fd5b813561ffff811681146118d257600080fd5b600060208284031215611ffd57600080fd5b81356001600160601b03811681146118d257600080fd5b8015158114611fa757600080fd5b60008060006060848603121561203757600080fd5b833561204281611f92565b9250602084013561205281612014565b9150604084013561206281611f92565b809150509250925092565b60006020828403121561207f57600080fd5b813562ffffff811681146118d257600080fd5b6000602082840312156120a457600080fd5b815160ff811681146118d257600080fd5b6000602082840312156120c757600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561211f578160001904821115612105576121056120ce565b8085161561211257918102915b93841c93908002906120e9565b509250929050565b600082612136575060016113a3565b81612143575060006113a3565b816001811461215957600281146121635761217f565b60019150506113a3565b60ff841115612174576121746120ce565b50506001821b6113a3565b5060208310610133831016604e8410600b84101617156121a2575081810a6113a3565b6121ac83836120e4565b80600019048211156121c0576121c06120ce565b029392505050565b60006118d260ff841683612127565b6020808252600c908201526b15539055551213d49256915160a21b604082015260600190565b808201808211156113a3576113a36120ce565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b60006020828403121561224f57600080fd5b81516118d281612014565b60ff82811682821603908111156113a3576113a36120ce565b80820281158282048414176113a3576113a36120ce565b6000826122a757634e487b7160e01b600052601260045260246000fd5b500490565b67ffffffffffffffff8181168382160190808211156122cd576122cd6120ce565b5092915050565b818103818111156113a3576113a36120ce565b6001600160601b038181168382160190808211156122cd576122cd6120ce565b6001600160801b038181168382160190808211156122cd576122cd6120ce565b67ffffffffffffffff8281168282160390808211156122cd576122cd6120ce565b6001600160601b038281168282160390808211156122cd576122cd6120ce56fea26469706673582212201de283202d10d881c1389a8acb875510b3843ee238a78dbe8177adbf3e93c78964736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000005f2f11ad8656439d5c14d9b351f8b09cdac2a02d000000000000000000000000d3dce716f3ef535c5ff8d041c1a41c3bd89b97ae000000000000000000000000fc78c2cb63085343a26f2cf439ace51f4fa994da00000000000000000000000000000000000000000000000000000000000f424000000000000000000000000029219dd400f2bf60e5a23d13be72b486d4038894000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000026ac0000000000000000000000000000000000000000000000000000000000005460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003e8
-----Decoded View---------------
Arg [0] : _owner (address): 0x5F2F11ad8656439d5C14d9B351f8b09cDaC2A02d
Arg [1] : _vault (address): 0xd3DCe716f3eF535C5Ff8d041c1A41C3bd89b97aE
Arg [2] : payoutAddress (address): 0xFC78c2cb63085343A26F2cF439ACe51F4fA994DA
Arg [3] : startingExchangeRate (uint96): 1000000
Arg [4] : _base (address): 0x29219dd400f2Bf60E5a23d13Be72B486D4038894
Arg [5] : allowedExchangeRateChangeUpper (uint16): 10000
Arg [6] : allowedExchangeRateChangeLower (uint16): 9900
Arg [7] : minimumUpdateDelayInSeconds (uint24): 21600
Arg [8] : platformFee (uint16): 0
Arg [9] : performanceFee (uint16): 1000
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000005f2f11ad8656439d5c14d9b351f8b09cdac2a02d
Arg [1] : 000000000000000000000000d3dce716f3ef535c5ff8d041c1a41c3bd89b97ae
Arg [2] : 000000000000000000000000fc78c2cb63085343a26f2cf439ace51f4fa994da
Arg [3] : 00000000000000000000000000000000000000000000000000000000000f4240
Arg [4] : 00000000000000000000000029219dd400f2bf60e5a23d13be72b486d4038894
Arg [5] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [6] : 00000000000000000000000000000000000000000000000000000000000026ac
Arg [7] : 0000000000000000000000000000000000000000000000000000000000005460
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [9] : 00000000000000000000000000000000000000000000000000000000000003e8
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ 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.