Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 9 from a total of 9 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Safe Update Atom... | 21200151 | 2 days ago | IN | 0 ETH | 0.00125634 | ||||
Safe Update Atom... | 21174028 | 6 days ago | IN | 0 ETH | 0.00256641 | ||||
Safe Update Atom... | 21094849 | 17 days ago | IN | 0 ETH | 0.00056019 | ||||
Safe Update Atom... | 21073029 | 20 days ago | IN | 0 ETH | 0.00123027 | ||||
Safe Update Atom... | 20914267 | 42 days ago | IN | 0 ETH | 0.00707492 | ||||
Safe Update Atom... | 20846688 | 51 days ago | IN | 0 ETH | 0.00068278 | ||||
Safe Update Atom... | 20772399 | 62 days ago | IN | 0 ETH | 0.00222464 | ||||
Update Atomic Re... | 20772394 | 62 days ago | IN | 0 ETH | 0.0010179 | ||||
Safe Update Atom... | 20751476 | 65 days ago | IN | 0 ETH | 0.00014889 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20736993 | 67 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
AtomicQueue
Compiler Version
v0.8.21+commit.d9974bed
Optimization Enabled:
Yes with 200 runs
Other Settings:
shanghai 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 {SafeTransferLib} from "@solmate/utils/SafeTransferLib.sol"; import {ERC20} from "@solmate/tokens/ERC20.sol"; import {ReentrancyGuard} from "@solmate/utils/ReentrancyGuard.sol"; import {IAtomicSolver} from "./IAtomicSolver.sol"; import {AccountantWithRateProviders} from "src/base/Roles/AccountantWithRateProviders.sol"; import {IPausable} from "src/interfaces/IPausable.sol"; import {Auth, Authority} from "@solmate/auth/Auth.sol"; /** * @title AtomicQueue * @notice Allows users to create `AtomicRequests` that specify an ERC20 asset to `offer` * and an ERC20 asset to `want` in return. * @notice Making atomic requests where the exchange rate between offer and want is not * relatively stable is effectively the same as placing a limit order between * those assets, so requests can be filled at a rate worse than the current market rate. * @notice It is possible for a user to make multiple requests that use the same offer asset. * If this is done it is important that the user has approved the queue to spend the * total amount of assets aggregated from all their requests, and to also have enough * `offer` asset to cover the aggregate total request of `offerAmount`. * @author crispymangoes */ contract AtomicQueue is Auth, ReentrancyGuard, IPausable { using SafeTransferLib for ERC20; using FixedPointMathLib for uint256; // ========================================= STRUCTS ========================================= /** * @notice Stores request information needed to fulfill a users atomic request. * @param deadline unix timestamp for when request is no longer valid * @param atomicPrice the price in terms of `want` asset the user wants their `offer` assets "sold" at * @dev atomicPrice MUST be in terms of `want` asset decimals. * @param offerAmount the amount of `offer` asset the user wants converted to `want` asset * @param inSolve bool used during solves to prevent duplicate users, and to prevent redoing multiple checks */ struct AtomicRequest { uint64 deadline; // deadline to fulfill request uint88 atomicPrice; // In terms of want asset decimals uint96 offerAmount; // The amount of offer asset the user wants to sell. bool inSolve; // Indicates whether this user is currently having their request fulfilled. } /** * @notice Used in `viewSolveMetaData` helper function to return data in a clean struct. * @param user the address of the user * @param flags 8 bits indicating the state of the user only the first 4 bits are used XXXX0000 * Either all flags are false(user is solvable) or only 1 is true(an error occurred). * From right to left * - 0: indicates user deadline has passed. * - 1: indicates user request has zero offer amount. * - 2: indicates user does not have enough offer asset in wallet. * - 3: indicates user has not given AtomicQueue approval. * @param assetsToOffer the amount of offer asset to solve * @param assetsForWant the amount of assets users want for their offer assets */ struct SolveMetaData { address user; uint8 flags; uint256 assetsToOffer; uint256 assetsForWant; } /** * @notice Used in `viewVerboseSolveMetaData` helper function to return data in a clean struct. * @param user the address of the user * @param deadlineExceeded indicates if the user has passed their deadline * @param zeroOfferAmount indicates if the user has a zero offer amount * @param insufficientOfferBalance indicates if the user has insufficient offer balance * @param insufficientOfferAllowance indicates if the user has insufficient offer allowance * @param assetsToOffer the amount of offer asset to solve * @param assetsForWant the amount of assets users want for their offer assets */ struct VerboseSolveMetaData { address user; bool deadlineExceeded; bool zeroOfferAmount; bool insufficientOfferBalance; bool insufficientOfferAllowance; uint256 assetsToOffer; uint256 assetsForWant; } // ========================================= CONSTANTS ========================================= /** * @notice When using safeUpdateAtomicRequest, this is the max discount that can be applied. */ uint256 public constant MAX_DISCOUNT = 0.01e6; // ========================================= GLOBAL STATE ========================================= /** * @notice Maps user address to offer asset to want asset to a AtomicRequest struct. */ mapping(address => mapping(ERC20 => mapping(ERC20 => AtomicRequest))) public userAtomicRequest; /** * @notice Used to pause calls to `updateAtomicRequest` and `solve`. */ bool public isPaused; //============================== ERRORS =============================== error AtomicQueue__UserRepeated(address user); error AtomicQueue__RequestDeadlineExceeded(address user); error AtomicQueue__UserNotInSolve(address user); error AtomicQueue__ZeroOfferAmount(address user); error AtomicQueue__SafeRequestOfferAmountGreaterThanOfferBalance(uint256 offerAmount, uint256 offerBalance); error AtomicQueue__SafeRequestDeadlineExceeded(uint256 deadline); error AtomicQueue__SafeRequestInsufficientOfferAllowance(uint256 offerAmount, uint256 offerAllowance); error AtomicQueue__SafeRequestOfferAmountZero(); error AtomicQueue__SafeRequestDiscountTooLarge(); error AtomicQueue__SafeRequestAccountantOfferMismatch(); error AtomicQueue__SafeRequestCannotCastToUint88(); error AtomicQueue__Paused(); //============================== EVENTS =============================== /** * @notice Emitted when `updateAtomicRequest` is called. */ event AtomicRequestUpdated( address indexed user, address indexed offerToken, address indexed wantToken, uint256 amount, uint256 deadline, uint256 minPrice, uint256 timestamp ); /** * @notice Emitted when `solve` exchanges a users offer asset for their want asset. */ event AtomicRequestFulfilled( address indexed user, address indexed offerToken, address indexed wantToken, uint256 offerAmountSpent, uint256 wantAmountReceived, uint256 timestamp ); /** * @notice Emitted when the contract is paused. */ event Paused(); /** * @notice Emitted when the contract is unpaused. */ event Unpaused(); //============================== IMMUTABLES =============================== constructor(address _owner, Authority _auth) Auth(_owner, _auth) {} // ========================================= 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 { 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 { isPaused = false; emit Unpaused(); } //============================== USER FUNCTIONS =============================== /** * @notice Get a users Atomic Request. * @param user the address of the user to get the request for * @param offer the ERC0 token they want to exchange for the want * @param want the ERC20 token they want in exchange for the offer */ function getUserAtomicRequest(address user, ERC20 offer, ERC20 want) external view returns (AtomicRequest memory) { return userAtomicRequest[user][offer][want]; } /** * @notice Helper function that returns either * true: Withdraw request is valid. * false: Withdraw request is not valid. * @dev It is possible for a withdraw request to return false from this function, but using the * request in `updateAtomicRequest` will succeed, but solvers will not be able to include * the user in `solve` unless some other state is changed. * @param offer the ERC0 token they want to exchange for the want * @param user the address of the user making the request * @param userRequest the request struct to validate */ function isAtomicRequestValid(ERC20 offer, address user, AtomicRequest calldata userRequest) external view returns (bool) { // Validate amount. if (userRequest.offerAmount > offer.balanceOf(user)) return false; // Validate deadline. if (block.timestamp > userRequest.deadline) return false; // Validate approval. if (offer.allowance(user, address(this)) < userRequest.offerAmount) return false; // Validate offerAmount is nonzero. if (userRequest.offerAmount == 0) return false; // Validate atomicPrice is nonzero. if (userRequest.atomicPrice == 0) return false; return true; } /** * @notice Allows user to add/update their withdraw request. * @notice It is possible for a withdraw request with a zero atomicPrice to be made, and solved. * If this happens, users will be selling their shares for no assets in return. * To determine a safe atomicPrice, share.previewRedeem should be used to get * a good share price, then the user can lower it from there to make their request fill faster. * @param offer the ERC20 token the user is offering in exchange for the want * @param want the ERC20 token the user wants in exchange for offer * @param userRequest the users request */ function updateAtomicRequest(ERC20 offer, ERC20 want, AtomicRequest memory userRequest) external nonReentrant requiresAuth { _updateAtomicRequest(offer, want, userRequest); } /** * @notice Mostly identical to `updateAtomicRequest` but with additional checks to ensure the request is safe. * @notice Adds in accountant and discount to calculate a safe atomicPrice. * @dev This function will completely ignore the provided atomic price and calculate a new one based off the * the accountant rate in quote and the discount provided. * @param accountant the accountant to use to get the rate in quote * @param discount the discount to apply to the rate in quote */ function safeUpdateAtomicRequest( ERC20 offer, ERC20 want, AtomicRequest memory userRequest, AccountantWithRateProviders accountant, uint256 discount ) external nonReentrant requiresAuth { // Validate amount. uint256 offerBalance = offer.balanceOf(msg.sender); if (userRequest.offerAmount > offerBalance) { revert AtomicQueue__SafeRequestOfferAmountGreaterThanOfferBalance(userRequest.offerAmount, offerBalance); } // Validate deadline. if (block.timestamp > userRequest.deadline) { revert AtomicQueue__SafeRequestDeadlineExceeded(userRequest.deadline); } // Validate approval. uint256 offerAllowance = offer.allowance(msg.sender, address(this)); if (offerAllowance < userRequest.offerAmount) { revert AtomicQueue__SafeRequestInsufficientOfferAllowance(userRequest.offerAmount, offerAllowance); } // Validate offerAmount is nonzero. if (userRequest.offerAmount == 0) revert AtomicQueue__SafeRequestOfferAmountZero(); // Calculate atomic price. if (discount > MAX_DISCOUNT) revert AtomicQueue__SafeRequestDiscountTooLarge(); if (address(offer) != address(accountant.vault())) revert AtomicQueue__SafeRequestAccountantOfferMismatch(); uint256 safeRate = accountant.getRateInQuoteSafe(want); uint256 safeAtomicPrice = safeRate.mulDivDown(1e6 - discount, 1e6); if (safeAtomicPrice > type(uint88).max) revert AtomicQueue__SafeRequestCannotCastToUint88(); userRequest.atomicPrice = uint88(safeAtomicPrice); _updateAtomicRequest(offer, want, userRequest); } //============================== SOLVER FUNCTIONS =============================== /** * @notice Called by solvers in order to exchange offer asset for want asset. * @notice Solvers are optimistically transferred the offer asset, then are required to * approve this contract to spend enough of want assets to cover all requests. * @dev It is very likely `solve` TXs will be front run if broadcasted to public mem pools, * so solvers should use private mem pools. * @param offer the ERC20 offer token to solve for * @param want the ERC20 want token to solve for * @param users an array of user addresses to solve for * @param runData extra data that is passed back to solver when `finishSolve` is called * @param solver the address to make `finishSolve` callback to */ function solve(ERC20 offer, ERC20 want, address[] calldata users, bytes calldata runData, address solver) external nonReentrant requiresAuth { if (isPaused) revert AtomicQueue__Paused(); // Save offer asset decimals. uint8 offerDecimals = offer.decimals(); uint256 assetsToOffer; uint256 assetsForWant; for (uint256 i; i < users.length; ++i) { AtomicRequest storage request = userAtomicRequest[users[i]][offer][want]; if (request.inSolve) revert AtomicQueue__UserRepeated(users[i]); if (block.timestamp > request.deadline) revert AtomicQueue__RequestDeadlineExceeded(users[i]); if (request.offerAmount == 0) revert AtomicQueue__ZeroOfferAmount(users[i]); // User gets whatever their atomic price * offerAmount is. assetsForWant += _calculateAssetAmount(request.offerAmount, request.atomicPrice, offerDecimals); // If all checks above passed, the users request is valid and should be fulfilled. assetsToOffer += request.offerAmount; request.inSolve = true; // Transfer shares from user to solver. offer.safeTransferFrom(users[i], solver, request.offerAmount); } IAtomicSolver(solver).finishSolve(runData, msg.sender, offer, want, assetsToOffer, assetsForWant); for (uint256 i; i < users.length; ++i) { AtomicRequest storage request = userAtomicRequest[users[i]][offer][want]; if (request.inSolve) { // We know that the minimum price and deadline arguments are satisfied since this can only be true if they were. // Send user their share of assets. uint256 assetsToUser = _calculateAssetAmount(request.offerAmount, request.atomicPrice, offerDecimals); want.safeTransferFrom(solver, users[i], assetsToUser); emit AtomicRequestFulfilled( users[i], address(offer), address(want), request.offerAmount, assetsToUser, block.timestamp ); // Set shares to withdraw to 0. request.offerAmount = 0; request.inSolve = false; } else { revert AtomicQueue__UserNotInSolve(users[i]); } } } /** * @notice Helper function solvers can use to determine if users are solvable, and the required amounts to do so. * @notice Repeated users are not accounted for in this setup, so if solvers have repeat users in their `users` * array the results can be wrong. * @dev Since a user can have multiple requests with the same offer asset but different want asset, it is * possible for `viewSolveMetaData` to report no errors, but for a solve to fail, if any solves were done * between the time `viewSolveMetaData` and before `solve` is called. * @param offer the ERC20 offer token to check for solvability * @param want the ERC20 want token to check for solvability * @param users an array of user addresses to check for solvability */ function viewSolveMetaData(ERC20 offer, ERC20 want, address[] calldata users) external view returns (SolveMetaData[] memory metaData, uint256 totalAssetsForWant, uint256 totalAssetsToOffer) { // Save offer asset decimals. uint8 offerDecimals = offer.decimals(); // Setup meta data. metaData = new SolveMetaData[](users.length); for (uint256 i; i < users.length; ++i) { AtomicRequest memory request = userAtomicRequest[users[i]][offer][want]; metaData[i].user = users[i]; if (block.timestamp > request.deadline) { metaData[i].flags |= uint8(1); } if (request.offerAmount == 0) { metaData[i].flags |= uint8(1) << 1; } if (offer.balanceOf(users[i]) < request.offerAmount) { metaData[i].flags |= uint8(1) << 2; } if (offer.allowance(users[i], address(this)) < request.offerAmount) { metaData[i].flags |= uint8(1) << 3; } metaData[i].assetsToOffer = request.offerAmount; // User gets whatever their execution share price is. uint256 userAssets = _calculateAssetAmount(request.offerAmount, request.atomicPrice, offerDecimals); metaData[i].assetsForWant = userAssets; // If flags is zero, no errors occurred. if (metaData[i].flags == 0) { totalAssetsForWant += userAssets; totalAssetsToOffer += request.offerAmount; } } } /** * @notice Helper function solvers can use to determine if users are solvable, and the required amounts to do so. * @notice Repeated users are not accounted for in this setup, so if solvers have repeat users in their `users` * array the results can be wrong. * @dev Since a user can have multiple requests with the same offer asset but different want asset, it is * possible for `viewSolveMetaData` to report no errors, but for a solve to fail, if any solves were done * between the time `viewSolveMetaData` and before `solve` is called. * @param offer the ERC20 offer token to check for solvability * @param want the ERC20 want token to check for solvability * @param users an array of user addresses to check for solvability */ function viewVerboseSolveMetaData(ERC20 offer, ERC20 want, address[] calldata users) external view returns (VerboseSolveMetaData[] memory metaData, uint256 totalAssetsForWant, uint256 totalAssetsToOffer) { // Save offer asset decimals. uint8 offerDecimals = offer.decimals(); // Setup meta data. metaData = new VerboseSolveMetaData[](users.length); for (uint256 i; i < users.length; ++i) { AtomicRequest memory request = userAtomicRequest[users[i]][offer][want]; metaData[i].user = users[i]; if (block.timestamp > request.deadline) { metaData[i].deadlineExceeded = true; } if (request.offerAmount == 0) { metaData[i].zeroOfferAmount = true; } if (offer.balanceOf(users[i]) < request.offerAmount) { metaData[i].insufficientOfferBalance = true; } if (offer.allowance(users[i], address(this)) < request.offerAmount) { metaData[i].insufficientOfferAllowance = true; } metaData[i].assetsToOffer = request.offerAmount; // User gets whatever their execution share price is. uint256 userAssets = _calculateAssetAmount(request.offerAmount, request.atomicPrice, offerDecimals); metaData[i].assetsForWant = userAssets; // If flags is zero, no errors occurred. if ( !metaData[i].deadlineExceeded && !metaData[i].zeroOfferAmount && !metaData[i].insufficientOfferBalance && !metaData[i].insufficientOfferAllowance ) { totalAssetsForWant += userAssets; totalAssetsToOffer += request.offerAmount; } } } //============================== INTERNAL FUNCTIONS =============================== /** * @notice Allows user to add/update their withdraw request. * @notice It is possible for a withdraw request with a zero atomicPrice to be made, and solved. * If this happens, users will be selling their shares for no assets in return. * To determine a safe atomicPrice, share.previewRedeem should be used to get * a good share price, then the user can lower it from there to make their request fill faster. * @param offer the ERC20 token the user is offering in exchange for the want * @param want the ERC20 token the user wants in exchange for offer * @param userRequest the users request */ function _updateAtomicRequest(ERC20 offer, ERC20 want, AtomicRequest memory userRequest) internal { if (isPaused) revert AtomicQueue__Paused(); AtomicRequest storage request = userAtomicRequest[msg.sender][offer][want]; request.deadline = userRequest.deadline; request.atomicPrice = userRequest.atomicPrice; request.offerAmount = userRequest.offerAmount; // Emit full amount user has. emit AtomicRequestUpdated( msg.sender, address(offer), address(want), userRequest.offerAmount, userRequest.deadline, userRequest.atomicPrice, block.timestamp ); } /** * @notice Helper function to calculate the amount of want assets a users wants in exchange for * `offerAmount` of offer asset. */ function _calculateAssetAmount(uint256 offerAmount, uint256 atomicPrice, uint8 offerDecimals) internal pure returns (uint256) { return atomicPrice.mulDivDown(offerAmount, 10 ** offerDecimals); } }
// 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: 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: 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; /// @notice Gas optimized reentrancy protection for smart contracts. /// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/utils/ReentrancyGuard.sol) /// @author Modified from OpenZeppelin (https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/security/ReentrancyGuard.sol) abstract contract ReentrancyGuard { uint256 private locked = 1; modifier nonReentrant() virtual { require(locked == 1, "REENTRANCY"); locked = 2; _; locked = 1; } }
// SPDX-License-Identifier: UNLICENSED pragma solidity >=0.8.0; import {ERC20} from "@solmate/tokens/ERC20.sol"; interface IAtomicSolver { /** * @notice This function must be implemented in order for an address to be a `solver` * for the AtomicQueue * @param runData arbitrary bytes data that is dependent on how each solver is setup * it could contain swap data, or flash loan data, etc.. * @param initiator the address that initiated a solve * @param offer the ERC20 asset sent to the solver * @param want the ERC20 asset the solver must approve the queue for * @param assetsToOffer the amount of `offer` sent to the solver * @param assetsForWant the amount of `want` the solver must approve the queue for */ function finishSolve( bytes calldata runData, address initiator, ERC20 offer, ERC20 want, uint256 assetsToOffer, uint256 assetsForWant ) 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 managementFee the management 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 managementFee; 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__ManagementFeeTooLarge(); 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 ManagementFeeUpdated(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 managementFee, 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, managementFee: managementFee, 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 management fee to a new value. * @dev Callable by OWNER_ROLE. */ function updateManagementFee(uint16 managementFee) external requiresAuth { if (managementFee > 0.2e4) revert AccountantWithRateProviders__ManagementFeeTooLarge(); uint16 oldFee = accountantState.managementFee; accountantState.managementFee = managementFee; emit ManagementFeeUpdated(oldFee, managementFee); } /** * @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 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 requiresAuth { AccountantState storage state = accountantState; if (state.isPaused) revert AccountantWithRateProviders__Paused(); uint64 currentTime = uint64(block.timestamp); uint256 currentExchangeRate = state.exchangeRate; uint256 currentTotalShares = vault.totalSupply(); if ( currentTime < state.lastUpdateTimestamp + state.minimumUpdateDelayInSeconds || newExchangeRate > currentExchangeRate.mulDivDown(state.allowedExchangeRateChangeUpper, 1e4) || newExchangeRate < currentExchangeRate.mulDivDown(state.allowedExchangeRateChangeLower, 1e4) ) { // 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); } state.exchangeRate = newExchangeRate; 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); } // ========================================= RATE 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); } // ========================================= 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 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 { // Only update fees if we are not paused. // Update fee accounting. uint256 shareSupplyToUse = currentTotalShares; // Use the minimum between current total supply and total supply for last update. if (state.totalSharesLastUpdate < shareSupplyToUse) { shareSupplyToUse = state.totalSharesLastUpdate; } // Determine management fees owned. uint256 timeDelta = currentTime - state.lastUpdateTimestamp; uint256 minimumAssets = newExchangeRate > currentExchangeRate ? shareSupplyToUse.mulDivDown(currentExchangeRate, ONE_SHARE) : shareSupplyToUse.mulDivDown(newExchangeRate, ONE_SHARE); uint256 managementFeesAnnual = minimumAssets.mulDivDown(state.managementFee, 1e4); uint256 newFeesOwedInBase = managementFeesAnnual.mulDivDown(timeDelta, 365 days); // Account for performance fees. if (newExchangeRate > state.highwaterMark) { if (state.performanceFee > 0) { uint256 changeInExchangeRate = newExchangeRate - state.highwaterMark; uint256 yieldEarned = changeInExchangeRate.mulDivDown(shareSupplyToUse, ONE_SHARE); uint256 performanceFeesOwedInBase = yieldEarned.mulDivDown(state.performanceFee, 1e4); 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: UNLICENSED pragma solidity 0.8.21; interface IPausable { function pause() external; function unpause() external; }
// 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 // 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: 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: 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/", "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", "LayerZero-v2/=lib/LayerZero-v2/", "ccip/=lib/ccip/contracts/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/", "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": "shanghai", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"contract Authority","name":"_auth","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AtomicQueue__Paused","type":"error"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"AtomicQueue__RequestDeadlineExceeded","type":"error"},{"inputs":[],"name":"AtomicQueue__SafeRequestAccountantOfferMismatch","type":"error"},{"inputs":[],"name":"AtomicQueue__SafeRequestCannotCastToUint88","type":"error"},{"inputs":[{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"AtomicQueue__SafeRequestDeadlineExceeded","type":"error"},{"inputs":[],"name":"AtomicQueue__SafeRequestDiscountTooLarge","type":"error"},{"inputs":[{"internalType":"uint256","name":"offerAmount","type":"uint256"},{"internalType":"uint256","name":"offerAllowance","type":"uint256"}],"name":"AtomicQueue__SafeRequestInsufficientOfferAllowance","type":"error"},{"inputs":[{"internalType":"uint256","name":"offerAmount","type":"uint256"},{"internalType":"uint256","name":"offerBalance","type":"uint256"}],"name":"AtomicQueue__SafeRequestOfferAmountGreaterThanOfferBalance","type":"error"},{"inputs":[],"name":"AtomicQueue__SafeRequestOfferAmountZero","type":"error"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"AtomicQueue__UserNotInSolve","type":"error"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"AtomicQueue__UserRepeated","type":"error"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"AtomicQueue__ZeroOfferAmount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"offerToken","type":"address"},{"indexed":true,"internalType":"address","name":"wantToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"offerAmountSpent","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"wantAmountReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"AtomicRequestFulfilled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"offerToken","type":"address"},{"indexed":true,"internalType":"address","name":"wantToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"deadline","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"minPrice","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"AtomicRequestUpdated","type":"event"},{"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":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":[],"name":"Unpaused","type":"event"},{"inputs":[],"name":"MAX_DISCOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"authority","outputs":[{"internalType":"contract Authority","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"contract ERC20","name":"offer","type":"address"},{"internalType":"contract ERC20","name":"want","type":"address"}],"name":"getUserAtomicRequest","outputs":[{"components":[{"internalType":"uint64","name":"deadline","type":"uint64"},{"internalType":"uint88","name":"atomicPrice","type":"uint88"},{"internalType":"uint96","name":"offerAmount","type":"uint96"},{"internalType":"bool","name":"inSolve","type":"bool"}],"internalType":"struct AtomicQueue.AtomicRequest","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"offer","type":"address"},{"internalType":"address","name":"user","type":"address"},{"components":[{"internalType":"uint64","name":"deadline","type":"uint64"},{"internalType":"uint88","name":"atomicPrice","type":"uint88"},{"internalType":"uint96","name":"offerAmount","type":"uint96"},{"internalType":"bool","name":"inSolve","type":"bool"}],"internalType":"struct AtomicQueue.AtomicRequest","name":"userRequest","type":"tuple"}],"name":"isAtomicRequestValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"offer","type":"address"},{"internalType":"contract ERC20","name":"want","type":"address"},{"components":[{"internalType":"uint64","name":"deadline","type":"uint64"},{"internalType":"uint88","name":"atomicPrice","type":"uint88"},{"internalType":"uint96","name":"offerAmount","type":"uint96"},{"internalType":"bool","name":"inSolve","type":"bool"}],"internalType":"struct AtomicQueue.AtomicRequest","name":"userRequest","type":"tuple"},{"internalType":"contract AccountantWithRateProviders","name":"accountant","type":"address"},{"internalType":"uint256","name":"discount","type":"uint256"}],"name":"safeUpdateAtomicRequest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Authority","name":"newAuthority","type":"address"}],"name":"setAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"offer","type":"address"},{"internalType":"contract ERC20","name":"want","type":"address"},{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"bytes","name":"runData","type":"bytes"},{"internalType":"address","name":"solver","type":"address"}],"name":"solve","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":"contract ERC20","name":"offer","type":"address"},{"internalType":"contract ERC20","name":"want","type":"address"},{"components":[{"internalType":"uint64","name":"deadline","type":"uint64"},{"internalType":"uint88","name":"atomicPrice","type":"uint88"},{"internalType":"uint96","name":"offerAmount","type":"uint96"},{"internalType":"bool","name":"inSolve","type":"bool"}],"internalType":"struct AtomicQueue.AtomicRequest","name":"userRequest","type":"tuple"}],"name":"updateAtomicRequest","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"contract ERC20","name":"","type":"address"},{"internalType":"contract ERC20","name":"","type":"address"}],"name":"userAtomicRequest","outputs":[{"internalType":"uint64","name":"deadline","type":"uint64"},{"internalType":"uint88","name":"atomicPrice","type":"uint88"},{"internalType":"uint96","name":"offerAmount","type":"uint96"},{"internalType":"bool","name":"inSolve","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"offer","type":"address"},{"internalType":"contract ERC20","name":"want","type":"address"},{"internalType":"address[]","name":"users","type":"address[]"}],"name":"viewSolveMetaData","outputs":[{"components":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint8","name":"flags","type":"uint8"},{"internalType":"uint256","name":"assetsToOffer","type":"uint256"},{"internalType":"uint256","name":"assetsForWant","type":"uint256"}],"internalType":"struct AtomicQueue.SolveMetaData[]","name":"metaData","type":"tuple[]"},{"internalType":"uint256","name":"totalAssetsForWant","type":"uint256"},{"internalType":"uint256","name":"totalAssetsToOffer","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"offer","type":"address"},{"internalType":"contract ERC20","name":"want","type":"address"},{"internalType":"address[]","name":"users","type":"address[]"}],"name":"viewVerboseSolveMetaData","outputs":[{"components":[{"internalType":"address","name":"user","type":"address"},{"internalType":"bool","name":"deadlineExceeded","type":"bool"},{"internalType":"bool","name":"zeroOfferAmount","type":"bool"},{"internalType":"bool","name":"insufficientOfferBalance","type":"bool"},{"internalType":"bool","name":"insufficientOfferAllowance","type":"bool"},{"internalType":"uint256","name":"assetsToOffer","type":"uint256"},{"internalType":"uint256","name":"assetsForWant","type":"uint256"}],"internalType":"struct AtomicQueue.VerboseSolveMetaData[]","name":"metaData","type":"tuple[]"},{"internalType":"uint256","name":"totalAssetsForWant","type":"uint256"},{"internalType":"uint256","name":"totalAssetsToOffer","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6080604052600160025534801562000015575f80fd5b5060405162002837380380620028378339810160408190526200003891620000e9565b5f80546001600160a01b03199081166001600160a01b0385811691821784556001805490931690851617909155604051849284929133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36040516001600160a01b0382169033907fa3396fd7f6e0a21b50e5089d2da70d5ac0a3bbbd1f617a93f134b76389980198905f90a35050505062000126565b6001600160a01b0381168114620000e6575f80fd5b50565b5f8060408385031215620000fb575f80fd5b82516200010881620000d1565b60208401519092506200011b81620000d1565b809150509250929050565b61270380620001345f395ff3fe608060405234801561000f575f80fd5b50600436106100fb575f3560e01c80637c88eaa111610093578063bf7e214f11610063578063bf7e214f1461039f578063d93fc203146103b2578063e3495569146103c5578063f2fde38b146103dc575f80fd5b80637c88eaa11461034d5780638456cb59146103605780638da5cb5b14610368578063b187bd2614610392575f80fd5b80633f4ba83a116100ce5780633f4ba83a14610184578063433a85341461018c5780637a9e5e4b146102915780637abf631d146102a4575f80fd5b80630844484f146100ff5780632788dd941461012a5780632ae2f0711461014d5780633546e29b1461016f575b5f80fd5b61011261010d366004611f70565b6103ef565b60405161012193929190611fd0565b60405180910390f35b61013d610138366004612080565b610971565b6040519015158152602001610121565b61016061015b366004611f70565b610b15565b604051610121939291906120cf565b61018261017d36600461221f565b61101f565b005b6101826113dc565b61024161019a36600461227f565b60408051608080820183525f808352602080840182905283850182905260609384018290526001600160a01b0397881682526003815284822096881682529586528381209490961686529284529381902081519283018252546001600160401b0381168352600160401b81046001600160581b031693830193909352600160981b83046001600160601b031690820152600160f81b90910460ff1615159181019190915290565b604051610121919081516001600160401b031681526020808301516001600160581b0316908201526040808301516001600160601b03169082015260609182015115159181019190915260800190565b61018261029f3660046122c7565b611441565b61030b6102b236600461227f565b600360209081525f93845260408085208252928452828420905282529020546001600160401b03811690600160401b81046001600160581b031690600160981b81046001600160601b031690600160f81b900460ff1684565b604080516001600160401b0390951685526001600160581b0390931660208501526001600160601b039091169183019190915215156060820152608001610121565b61018261035b3660046122e2565b611525565b610182611591565b5f5461037a906001600160a01b031681565b6040516001600160a01b039091168152602001610121565b60045461013d9060ff1681565b60015461037a906001600160a01b031681565b6101826103c0366004612327565b6115f9565b6103ce61271081565b604051908152602001610121565b6101826103ea3660046122c7565b611c0d565b60605f805f876001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610430573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061045491906123ef565b9050846001600160401b0381111561046e5761046e612130565b6040519080825280602002602001820160405280156104d357816020015b6040805160e0810182525f8082526020808301829052928201819052606082018190526080820181905260a0820181905260c082015282525f1990920191018161048c5790505b5093505f5b85811015610965575f60035f8989858181106104f6576104f661240f565b905060200201602081019061050b91906122c7565b6001600160a01b03908116825260208083019390935260409182015f9081208e831682528452828120918d168152908352819020815160808101835290546001600160401b0381168252600160401b81046001600160581b031693820193909352600160981b83046001600160601b031691810191909152600160f81b90910460ff161515606082015290508787838181106105a9576105a961240f565b90506020020160208101906105be91906122c7565b8683815181106105d0576105d061240f565b60209081029190910101516001600160a01b03909116905280516001600160401b031642111561062157600186838151811061060e5761060e61240f565b6020908102919091018101519115159101525b80604001516001600160601b03165f0361065e5760018683815181106106495761064961240f565b60209081029190910101519015156040909101525b80604001516001600160601b03168a6001600160a01b03166370a082318a8a8681811061068d5761068d61240f565b90506020020160208101906106a291906122c7565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156106e4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107089190612423565b10156107375760018683815181106107225761072261240f565b60209081029190910101519015156060909101525b80604001516001600160601b03168a6001600160a01b031663dd62ed3e8a8a868181106107665761076661240f565b905060200201602081019061077b91906122c7565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa1580156107c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e79190612423565b10156108165760018683815181106108015761080161240f565b60209081029190910101519015156080909101525b80604001516001600160601b03168683815181106108365761083661240f565b602002602001015160a00181815250505f61086c82604001516001600160601b031683602001516001600160581b031686611c88565b9050808784815181106108815761088161240f565b602002602001015160c00181815250508683815181106108a3576108a361240f565b6020026020010151602001511580156108d757508683815181106108c9576108c961240f565b602002602001015160400151155b80156108fe57508683815181106108f0576108f061240f565b602002602001015160600151155b801561092557508683815181106109175761091761240f565b602002602001015160800151155b1561095257610934818761244e565b955081604001516001600160601b03168561094f919061244e565b94505b50508061095e90612461565b90506104d8565b50509450945094915050565b6040516370a0823160e01b81526001600160a01b0383811660048301525f91908516906370a0823190602401602060405180830381865afa1580156109b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109dc9190612423565b6109ec6060840160408501612479565b6001600160601b03161115610a0257505f610b0e565b610a0f6020830183612492565b6001600160401b0316421115610a2657505f610b0e565b610a366060830160408401612479565b604051636eb1769f60e11b81526001600160a01b0385811660048301523060248301526001600160601b03929092169186169063dd62ed3e90604401602060405180830381865afa158015610a8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab19190612423565b1015610abe57505f610b0e565b610ace6060830160408401612479565b6001600160601b03165f03610ae457505f610b0e565b610af460408301602084016124ab565b6001600160581b03165f03610b0a57505f610b0e565b5060015b9392505050565b60605f805f876001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b7a91906123ef565b9050846001600160401b03811115610b9457610b94612130565b604051908082528060200260200182016040528015610be457816020015b604080516080810182525f8082526020808301829052928201819052606082015282525f19909201910181610bb25790505b5093505f5b85811015610965575f60035f898985818110610c0757610c0761240f565b9050602002016020810190610c1c91906122c7565b6001600160a01b03908116825260208083019390935260409182015f9081208e831682528452828120918d168152908352819020815160808101835290546001600160401b0381168252600160401b81046001600160581b031693820193909352600160981b83046001600160601b031691810191909152600160f81b90910460ff16151560608201529050878783818110610cba57610cba61240f565b9050602002016020810190610ccf91906122c7565b868381518110610ce157610ce161240f565b60209081029190910101516001600160a01b03909116905280516001600160401b0316421115610d38576001868381518110610d1f57610d1f61240f565b6020908102919091018101510180519190911760ff1690525b80604001516001600160601b03165f03610d7c578551600290879084908110610d6357610d6361240f565b6020908102919091018101510180519190911760ff1690525b80604001516001600160601b03168a6001600160a01b03166370a082318a8a86818110610dab57610dab61240f565b9050602002016020810190610dc091906122c7565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015610e02573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e269190612423565b1015610e5c578551600490879084908110610e4357610e4361240f565b6020908102919091018101510180519190911760ff1690525b80604001516001600160601b03168a6001600160a01b031663dd62ed3e8a8a86818110610e8b57610e8b61240f565b9050602002016020810190610ea091906122c7565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa158015610ee8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0c9190612423565b1015610f42578551600890879084908110610f2957610f2961240f565b6020908102919091018101510180519190911760ff1690525b80604001516001600160601b0316868381518110610f6257610f6261240f565b602002602001015160400181815250505f610f9882604001516001600160601b031683602001516001600160581b031686611c88565b905080878481518110610fad57610fad61240f565b60200260200101516060018181525050868381518110610fcf57610fcf61240f565b60200260200101516020015160ff165f0361100c57610fee818761244e565b955081604001516001600160601b031685611009919061244e565b94505b50508061101890612461565b9050610be9565b60025460011461104a5760405162461bcd60e51b8152600401611041906124c4565b60405180910390fd5b60028055611063336001600160e01b03195f3516611ca8565b61107f5760405162461bcd60e51b8152600401611041906124e8565b6040516370a0823160e01b81523360048201525f906001600160a01b038716906370a0823190602401602060405180830381865afa1580156110c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110e79190612423565b90508084604001516001600160601b0316111561112f576040808501519051631b0b1a6b60e01b81526001600160601b03909116600482015260248101829052604401611041565b83516001600160401b0316421115611168578351604051632ca56ca560e21b81526001600160401b039091166004820152602401611041565b604051636eb1769f60e11b81523360048201523060248201525f906001600160a01b0388169063dd62ed3e90604401602060405180830381865afa1580156111b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111d69190612423565b905084604001516001600160601b031681101561121e576040808601519051636ce085eb60e01b81526001600160601b03909116600482015260248101829052604401611041565b84604001516001600160601b03165f0361124b57604051630b41d53160e31b815260040160405180910390fd5b61271083111561126e576040516342cb365d60e11b815260040160405180910390fd5b836001600160a01b031663fbfa77cf6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112ce919061250e565b6001600160a01b0316876001600160a01b0316146112ff57604051639212e4c360e01b815260040160405180910390fd5b604051634104b9ed60e11b81526001600160a01b0387811660048301525f919086169063820973da90602401602060405180830381865afa158015611346573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061136a9190612423565b90505f61138861137d86620f4240612529565b8390620f4240611d50565b90506001600160581b038111156113b2576040516307af973560e51b815260040160405180910390fd5b6001600160581b03811660208801526113cc898989611d6b565b5050600160025550505050505050565b6113f1335f356001600160e01b031916611ca8565b61140d5760405162461bcd60e51b8152600401611041906124e8565b6004805460ff191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d16933905f90a1565b5f546001600160a01b03163314806114d2575060015460405163b700961360e01b81526001600160a01b039091169063b70096139061149390339030906001600160e01b03195f35169060040161253c565b602060405180830381865afa1580156114ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114d29190612569565b6114da575f80fd5b600180546001600160a01b0319166001600160a01b03831690811790915560405133907fa3396fd7f6e0a21b50e5089d2da70d5ac0a3bbbd1f617a93f134b76389980198905f90a350565b6002546001146115475760405162461bcd60e51b8152600401611041906124c4565b60028055611560336001600160e01b03195f3516611ca8565b61157c5760405162461bcd60e51b8152600401611041906124e8565b611587838383611d6b565b5050600160025550565b6115a6335f356001600160e01b031916611ca8565b6115c25760405162461bcd60e51b8152600401611041906124e8565b6004805460ff191660011790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e752905f90a1565b60025460011461161b5760405162461bcd60e51b8152600401611041906124c4565b60028055611634336001600160e01b03195f3516611ca8565b6116505760405162461bcd60e51b8152600401611041906124e8565b60045460ff1615611674576040516304d3ed9760e31b815260040160405180910390fd5b5f876001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116d591906123ef565b90505f805f5b87811015611963575f60035f8b8b858181106116f9576116f961240f565b905060200201602081019061170e91906122c7565b6001600160a01b03166001600160a01b031681526020019081526020015f205f8d6001600160a01b03166001600160a01b031681526020019081526020015f205f8c6001600160a01b03166001600160a01b031681526020019081526020015f209050805f01601f9054906101000a900460ff16156117d6578989838181106117995761179961240f565b90506020020160208101906117ae91906122c7565b6040516001627c10bd60e11b031981526001600160a01b039091166004820152602401611041565b80546001600160401b0316421115611834578989838181106117fa576117fa61240f565b905060200201602081019061180f91906122c7565b6040516342a646e960e01b81526001600160a01b039091166004820152602401611041565b8054600160981b90046001600160601b03165f036118985789898381811061185e5761185e61240f565b905060200201602081019061187391906122c7565b60405163aeb7e20360e01b81526001600160a01b039091166004820152602401611041565b80546118c590600160981b81046001600160601b031690600160401b90046001600160581b031687611c88565b6118cf908461244e565b81549093506118ee90600160981b90046001600160601b03168561244e565b81546001600160f81b0316600160f81b17825593506119528a8a848181106119185761191861240f565b905060200201602081019061192d91906122c7565b82546001600160a01b038f1691908990600160981b90046001600160601b0316611e7a565b5061195c81612461565b90506116db565b50836001600160a01b0316632ddd62ce8787338e8e88886040518863ffffffff1660e01b815260040161199c9796959493929190612584565b5f604051808303815f87803b1580156119b3575f80fd5b505af11580156119c5573d5f803e3d5ffd5b505050505f5b87811015611bfb575f60035f8b8b858181106119e9576119e961240f565b90506020020160208101906119fe91906122c7565b6001600160a01b03166001600160a01b031681526020019081526020015f205f8d6001600160a01b03166001600160a01b031681526020019081526020015f205f8c6001600160a01b03166001600160a01b031681526020019081526020015f209050805f01601f9054906101000a900460ff1615611b9e5780545f90611aa690600160981b81046001600160601b031690600160401b90046001600160581b031688611c88565b9050611ae5878c8c86818110611abe57611abe61240f565b9050602002016020810190611ad391906122c7565b6001600160a01b038f16919084611e7a565b8b6001600160a01b03168d6001600160a01b03168c8c86818110611b0b57611b0b61240f565b9050602002016020810190611b2091906122c7565b845460408051600160981b9092046001600160601b031682526020820186905242908201526001600160a01b0391909116907fa4e3f90ef19273220b37cbbbcfe402a6eadd9559c54813b9be52ea0c9612d6c99060600160405180910390a450805472ffffffffffffffffffffffffffffffffffffff168155611bea565b898983818110611bb057611bb061240f565b9050602002016020810190611bc591906122c7565b60405163d698186360e01b81526001600160a01b039091166004820152602401611041565b50611bf481612461565b90506119cb565b50506001600255505050505050505050565b611c22335f356001600160e01b031916611ca8565b611c3e5760405162461bcd60e51b8152600401611041906124e8565b5f80546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b5f611ca084611c9884600a6126bf565b859190611d50565b949350505050565b6001545f906001600160a01b03168015801590611d2f575060405163b700961360e01b81526001600160a01b0382169063b700961390611cf09087903090889060040161253c565b602060405180830381865afa158015611d0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d2f9190612569565b80611d4657505f546001600160a01b038581169116145b9150505b92915050565b5f825f190484118302158202611d64575f80fd5b5091020490565b60045460ff1615611d8f576040516304d3ed9760e31b815260040160405180910390fd5b335f8181526003602090815260408083206001600160a01b03888116808652918452828520908816808652908452938290208651815488860151898601516001600160401b0390931672ffffffffffffffffffffffffffffffffffffff199092168217600160401b6001600160581b03909216918202176bffffffffffffffffffffffff60981b1916600160981b6001600160601b03909416938402178455855192835295820152928301939093524260608301529193907f9537495a2390e1a29f5f7e71b8540f5140bba27065f173615b770ad79d2f79609060800160405180910390a450505050565b5f6040516323b872dd60e01b81526001600160a01b03851660048201526001600160a01b038416602482015282604482015260205f6064835f8a5af13d15601f3d1160015f511416171691505080611f0b5760405162461bcd60e51b81526020600482015260146024820152731514905394d1915497d19493d357d1905253115160621b6044820152606401611041565b5050505050565b6001600160a01b0381168114611f26575f80fd5b50565b5f8083601f840112611f39575f80fd5b5081356001600160401b03811115611f4f575f80fd5b6020830191508360208260051b8501011115611f69575f80fd5b9250929050565b5f805f8060608587031215611f83575f80fd5b8435611f8e81611f12565b93506020850135611f9e81611f12565b925060408501356001600160401b03811115611fb8575f80fd5b611fc487828801611f29565b95989497509550505050565b606080825284518282018190525f9190608090818501906020808a01865b8381101561205557815180516001600160a01b0316865283810151151584870152604080820151151590870152878101511515888701528681015115158787015260a0808201519087015260c0908101519086015260e09094019390820190600101611fee565b50508601979097526040909401949094525090949350505050565b803561207b81611f12565b919050565b5f805f83850360c0811215612093575f80fd5b843561209e81611f12565b935060208501356120ae81611f12565b92506080603f19820112156120c1575f80fd5b506040840190509250925092565b606080825284518282018190525f9190608090818501906020808a01865b8381101561205557815180516001600160a01b031686528381015160ff1684870152604080820151908701528701518786015293850193908201906001016120ed565b634e487b7160e01b5f52604160045260245ffd5b80356001600160401b038116811461207b575f80fd5b80356001600160581b038116811461207b575f80fd5b80356001600160601b038116811461207b575f80fd5b8015158114611f26575f80fd5b5f608082840312156121a3575f80fd5b604051608081018181106001600160401b03821117156121d157634e487b7160e01b5f52604160045260245ffd5b6040529050806121e083612144565b81526121ee6020840161215a565b60208201526121ff60408401612170565b6040820152606083013561221281612186565b6060919091015292915050565b5f805f805f6101008688031215612234575f80fd5b853561223f81611f12565b9450602086013561224f81611f12565b935061225e8760408801612193565b925060c086013561226e81611f12565b9497939650919460e0013592915050565b5f805f60608486031215612291575f80fd5b833561229c81611f12565b925060208401356122ac81611f12565b915060408401356122bc81611f12565b809150509250925092565b5f602082840312156122d7575f80fd5b8135610b0e81611f12565b5f805f60c084860312156122f4575f80fd5b83356122ff81611f12565b9250602084013561230f81611f12565b915061231e8560408601612193565b90509250925092565b5f805f805f805f60a0888a03121561233d575f80fd5b873561234881611f12565b9650602088013561235881611f12565b955060408801356001600160401b0380821115612373575f80fd5b61237f8b838c01611f29565b909750955060608a0135915080821115612397575f80fd5b818a0191508a601f8301126123aa575f80fd5b8135818111156123b8575f80fd5b8b60208285010111156123c9575f80fd5b6020830195508094505050506123e160808901612070565b905092959891949750929550565b5f602082840312156123ff575f80fd5b815160ff81168114610b0e575f80fd5b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612433575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115611d4a57611d4a61243a565b5f600182016124725761247261243a565b5060010190565b5f60208284031215612489575f80fd5b610b0e82612170565b5f602082840312156124a2575f80fd5b610b0e82612144565b5f602082840312156124bb575f80fd5b610b0e8261215a565b6020808252600a90820152695245454e5452414e435960b01b604082015260600190565b6020808252600c908201526b15539055551213d49256915160a21b604082015260600190565b5f6020828403121561251e575f80fd5b8151610b0e81611f12565b81810381811115611d4a57611d4a61243a565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b5f60208284031215612579575f80fd5b8151610b0e81612186565b60c081528660c0820152868860e08301375f60e08883018101919091526001600160a01b0396871660208301529486166040820152929094166060830152608082015260a0810192909252601f909201601f19160101919050565b600181815b8085111561261957815f19048211156125ff576125ff61243a565b8085161561260c57918102915b93841c93908002906125e4565b509250929050565b5f8261262f57506001611d4a565b8161263b57505f611d4a565b8160018114612651576002811461265b57612677565b6001915050611d4a565b60ff84111561266c5761266c61243a565b50506001821b611d4a565b5060208310610133831016604e8410600b841016171561269a575081810a611d4a565b6126a483836125df565b805f19048211156126b7576126b761243a565b029392505050565b5f610b0e60ff84168361262156fea264697066735822122041569b8b67dcd15d790503e0bd4300ba57b341327c62b5268ca64425df8d6fb264736f6c63430008150033000000000000000000000000f8553c8552f906c19286f21711721e206ee4909e0000000000000000000000004df6b73328b639073db150c4584196c4d97053b7
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100fb575f3560e01c80637c88eaa111610093578063bf7e214f11610063578063bf7e214f1461039f578063d93fc203146103b2578063e3495569146103c5578063f2fde38b146103dc575f80fd5b80637c88eaa11461034d5780638456cb59146103605780638da5cb5b14610368578063b187bd2614610392575f80fd5b80633f4ba83a116100ce5780633f4ba83a14610184578063433a85341461018c5780637a9e5e4b146102915780637abf631d146102a4575f80fd5b80630844484f146100ff5780632788dd941461012a5780632ae2f0711461014d5780633546e29b1461016f575b5f80fd5b61011261010d366004611f70565b6103ef565b60405161012193929190611fd0565b60405180910390f35b61013d610138366004612080565b610971565b6040519015158152602001610121565b61016061015b366004611f70565b610b15565b604051610121939291906120cf565b61018261017d36600461221f565b61101f565b005b6101826113dc565b61024161019a36600461227f565b60408051608080820183525f808352602080840182905283850182905260609384018290526001600160a01b0397881682526003815284822096881682529586528381209490961686529284529381902081519283018252546001600160401b0381168352600160401b81046001600160581b031693830193909352600160981b83046001600160601b031690820152600160f81b90910460ff1615159181019190915290565b604051610121919081516001600160401b031681526020808301516001600160581b0316908201526040808301516001600160601b03169082015260609182015115159181019190915260800190565b61018261029f3660046122c7565b611441565b61030b6102b236600461227f565b600360209081525f93845260408085208252928452828420905282529020546001600160401b03811690600160401b81046001600160581b031690600160981b81046001600160601b031690600160f81b900460ff1684565b604080516001600160401b0390951685526001600160581b0390931660208501526001600160601b039091169183019190915215156060820152608001610121565b61018261035b3660046122e2565b611525565b610182611591565b5f5461037a906001600160a01b031681565b6040516001600160a01b039091168152602001610121565b60045461013d9060ff1681565b60015461037a906001600160a01b031681565b6101826103c0366004612327565b6115f9565b6103ce61271081565b604051908152602001610121565b6101826103ea3660046122c7565b611c0d565b60605f805f876001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610430573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061045491906123ef565b9050846001600160401b0381111561046e5761046e612130565b6040519080825280602002602001820160405280156104d357816020015b6040805160e0810182525f8082526020808301829052928201819052606082018190526080820181905260a0820181905260c082015282525f1990920191018161048c5790505b5093505f5b85811015610965575f60035f8989858181106104f6576104f661240f565b905060200201602081019061050b91906122c7565b6001600160a01b03908116825260208083019390935260409182015f9081208e831682528452828120918d168152908352819020815160808101835290546001600160401b0381168252600160401b81046001600160581b031693820193909352600160981b83046001600160601b031691810191909152600160f81b90910460ff161515606082015290508787838181106105a9576105a961240f565b90506020020160208101906105be91906122c7565b8683815181106105d0576105d061240f565b60209081029190910101516001600160a01b03909116905280516001600160401b031642111561062157600186838151811061060e5761060e61240f565b6020908102919091018101519115159101525b80604001516001600160601b03165f0361065e5760018683815181106106495761064961240f565b60209081029190910101519015156040909101525b80604001516001600160601b03168a6001600160a01b03166370a082318a8a8681811061068d5761068d61240f565b90506020020160208101906106a291906122c7565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156106e4573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107089190612423565b10156107375760018683815181106107225761072261240f565b60209081029190910101519015156060909101525b80604001516001600160601b03168a6001600160a01b031663dd62ed3e8a8a868181106107665761076661240f565b905060200201602081019061077b91906122c7565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa1580156107c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107e79190612423565b10156108165760018683815181106108015761080161240f565b60209081029190910101519015156080909101525b80604001516001600160601b03168683815181106108365761083661240f565b602002602001015160a00181815250505f61086c82604001516001600160601b031683602001516001600160581b031686611c88565b9050808784815181106108815761088161240f565b602002602001015160c00181815250508683815181106108a3576108a361240f565b6020026020010151602001511580156108d757508683815181106108c9576108c961240f565b602002602001015160400151155b80156108fe57508683815181106108f0576108f061240f565b602002602001015160600151155b801561092557508683815181106109175761091761240f565b602002602001015160800151155b1561095257610934818761244e565b955081604001516001600160601b03168561094f919061244e565b94505b50508061095e90612461565b90506104d8565b50509450945094915050565b6040516370a0823160e01b81526001600160a01b0383811660048301525f91908516906370a0823190602401602060405180830381865afa1580156109b8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906109dc9190612423565b6109ec6060840160408501612479565b6001600160601b03161115610a0257505f610b0e565b610a0f6020830183612492565b6001600160401b0316421115610a2657505f610b0e565b610a366060830160408401612479565b604051636eb1769f60e11b81526001600160a01b0385811660048301523060248301526001600160601b03929092169186169063dd62ed3e90604401602060405180830381865afa158015610a8d573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ab19190612423565b1015610abe57505f610b0e565b610ace6060830160408401612479565b6001600160601b03165f03610ae457505f610b0e565b610af460408301602084016124ab565b6001600160581b03165f03610b0a57505f610b0e565b5060015b9392505050565b60605f805f876001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610b7a91906123ef565b9050846001600160401b03811115610b9457610b94612130565b604051908082528060200260200182016040528015610be457816020015b604080516080810182525f8082526020808301829052928201819052606082015282525f19909201910181610bb25790505b5093505f5b85811015610965575f60035f898985818110610c0757610c0761240f565b9050602002016020810190610c1c91906122c7565b6001600160a01b03908116825260208083019390935260409182015f9081208e831682528452828120918d168152908352819020815160808101835290546001600160401b0381168252600160401b81046001600160581b031693820193909352600160981b83046001600160601b031691810191909152600160f81b90910460ff16151560608201529050878783818110610cba57610cba61240f565b9050602002016020810190610ccf91906122c7565b868381518110610ce157610ce161240f565b60209081029190910101516001600160a01b03909116905280516001600160401b0316421115610d38576001868381518110610d1f57610d1f61240f565b6020908102919091018101510180519190911760ff1690525b80604001516001600160601b03165f03610d7c578551600290879084908110610d6357610d6361240f565b6020908102919091018101510180519190911760ff1690525b80604001516001600160601b03168a6001600160a01b03166370a082318a8a86818110610dab57610dab61240f565b9050602002016020810190610dc091906122c7565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015610e02573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e269190612423565b1015610e5c578551600490879084908110610e4357610e4361240f565b6020908102919091018101510180519190911760ff1690525b80604001516001600160601b03168a6001600160a01b031663dd62ed3e8a8a86818110610e8b57610e8b61240f565b9050602002016020810190610ea091906122c7565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152306024820152604401602060405180830381865afa158015610ee8573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f0c9190612423565b1015610f42578551600890879084908110610f2957610f2961240f565b6020908102919091018101510180519190911760ff1690525b80604001516001600160601b0316868381518110610f6257610f6261240f565b602002602001015160400181815250505f610f9882604001516001600160601b031683602001516001600160581b031686611c88565b905080878481518110610fad57610fad61240f565b60200260200101516060018181525050868381518110610fcf57610fcf61240f565b60200260200101516020015160ff165f0361100c57610fee818761244e565b955081604001516001600160601b031685611009919061244e565b94505b50508061101890612461565b9050610be9565b60025460011461104a5760405162461bcd60e51b8152600401611041906124c4565b60405180910390fd5b60028055611063336001600160e01b03195f3516611ca8565b61107f5760405162461bcd60e51b8152600401611041906124e8565b6040516370a0823160e01b81523360048201525f906001600160a01b038716906370a0823190602401602060405180830381865afa1580156110c3573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906110e79190612423565b90508084604001516001600160601b0316111561112f576040808501519051631b0b1a6b60e01b81526001600160601b03909116600482015260248101829052604401611041565b83516001600160401b0316421115611168578351604051632ca56ca560e21b81526001600160401b039091166004820152602401611041565b604051636eb1769f60e11b81523360048201523060248201525f906001600160a01b0388169063dd62ed3e90604401602060405180830381865afa1580156111b2573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111d69190612423565b905084604001516001600160601b031681101561121e576040808601519051636ce085eb60e01b81526001600160601b03909116600482015260248101829052604401611041565b84604001516001600160601b03165f0361124b57604051630b41d53160e31b815260040160405180910390fd5b61271083111561126e576040516342cb365d60e11b815260040160405180910390fd5b836001600160a01b031663fbfa77cf6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156112aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906112ce919061250e565b6001600160a01b0316876001600160a01b0316146112ff57604051639212e4c360e01b815260040160405180910390fd5b604051634104b9ed60e11b81526001600160a01b0387811660048301525f919086169063820973da90602401602060405180830381865afa158015611346573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061136a9190612423565b90505f61138861137d86620f4240612529565b8390620f4240611d50565b90506001600160581b038111156113b2576040516307af973560e51b815260040160405180910390fd5b6001600160581b03811660208801526113cc898989611d6b565b5050600160025550505050505050565b6113f1335f356001600160e01b031916611ca8565b61140d5760405162461bcd60e51b8152600401611041906124e8565b6004805460ff191690556040517fa45f47fdea8a1efdd9029a5691c7f759c32b7c698632b563573e155625d16933905f90a1565b5f546001600160a01b03163314806114d2575060015460405163b700961360e01b81526001600160a01b039091169063b70096139061149390339030906001600160e01b03195f35169060040161253c565b602060405180830381865afa1580156114ae573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906114d29190612569565b6114da575f80fd5b600180546001600160a01b0319166001600160a01b03831690811790915560405133907fa3396fd7f6e0a21b50e5089d2da70d5ac0a3bbbd1f617a93f134b76389980198905f90a350565b6002546001146115475760405162461bcd60e51b8152600401611041906124c4565b60028055611560336001600160e01b03195f3516611ca8565b61157c5760405162461bcd60e51b8152600401611041906124e8565b611587838383611d6b565b5050600160025550565b6115a6335f356001600160e01b031916611ca8565b6115c25760405162461bcd60e51b8152600401611041906124e8565b6004805460ff191660011790556040517f9e87fac88ff661f02d44f95383c817fece4bce600a3dab7a54406878b965e752905f90a1565b60025460011461161b5760405162461bcd60e51b8152600401611041906124c4565b60028055611634336001600160e01b03195f3516611ca8565b6116505760405162461bcd60e51b8152600401611041906124e8565b60045460ff1615611674576040516304d3ed9760e31b815260040160405180910390fd5b5f876001600160a01b031663313ce5676040518163ffffffff1660e01b8152600401602060405180830381865afa1580156116b1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906116d591906123ef565b90505f805f5b87811015611963575f60035f8b8b858181106116f9576116f961240f565b905060200201602081019061170e91906122c7565b6001600160a01b03166001600160a01b031681526020019081526020015f205f8d6001600160a01b03166001600160a01b031681526020019081526020015f205f8c6001600160a01b03166001600160a01b031681526020019081526020015f209050805f01601f9054906101000a900460ff16156117d6578989838181106117995761179961240f565b90506020020160208101906117ae91906122c7565b6040516001627c10bd60e11b031981526001600160a01b039091166004820152602401611041565b80546001600160401b0316421115611834578989838181106117fa576117fa61240f565b905060200201602081019061180f91906122c7565b6040516342a646e960e01b81526001600160a01b039091166004820152602401611041565b8054600160981b90046001600160601b03165f036118985789898381811061185e5761185e61240f565b905060200201602081019061187391906122c7565b60405163aeb7e20360e01b81526001600160a01b039091166004820152602401611041565b80546118c590600160981b81046001600160601b031690600160401b90046001600160581b031687611c88565b6118cf908461244e565b81549093506118ee90600160981b90046001600160601b03168561244e565b81546001600160f81b0316600160f81b17825593506119528a8a848181106119185761191861240f565b905060200201602081019061192d91906122c7565b82546001600160a01b038f1691908990600160981b90046001600160601b0316611e7a565b5061195c81612461565b90506116db565b50836001600160a01b0316632ddd62ce8787338e8e88886040518863ffffffff1660e01b815260040161199c9796959493929190612584565b5f604051808303815f87803b1580156119b3575f80fd5b505af11580156119c5573d5f803e3d5ffd5b505050505f5b87811015611bfb575f60035f8b8b858181106119e9576119e961240f565b90506020020160208101906119fe91906122c7565b6001600160a01b03166001600160a01b031681526020019081526020015f205f8d6001600160a01b03166001600160a01b031681526020019081526020015f205f8c6001600160a01b03166001600160a01b031681526020019081526020015f209050805f01601f9054906101000a900460ff1615611b9e5780545f90611aa690600160981b81046001600160601b031690600160401b90046001600160581b031688611c88565b9050611ae5878c8c86818110611abe57611abe61240f565b9050602002016020810190611ad391906122c7565b6001600160a01b038f16919084611e7a565b8b6001600160a01b03168d6001600160a01b03168c8c86818110611b0b57611b0b61240f565b9050602002016020810190611b2091906122c7565b845460408051600160981b9092046001600160601b031682526020820186905242908201526001600160a01b0391909116907fa4e3f90ef19273220b37cbbbcfe402a6eadd9559c54813b9be52ea0c9612d6c99060600160405180910390a450805472ffffffffffffffffffffffffffffffffffffff168155611bea565b898983818110611bb057611bb061240f565b9050602002016020810190611bc591906122c7565b60405163d698186360e01b81526001600160a01b039091166004820152602401611041565b50611bf481612461565b90506119cb565b50506001600255505050505050505050565b611c22335f356001600160e01b031916611ca8565b611c3e5760405162461bcd60e51b8152600401611041906124e8565b5f80546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b5f611ca084611c9884600a6126bf565b859190611d50565b949350505050565b6001545f906001600160a01b03168015801590611d2f575060405163b700961360e01b81526001600160a01b0382169063b700961390611cf09087903090889060040161253c565b602060405180830381865afa158015611d0b573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190611d2f9190612569565b80611d4657505f546001600160a01b038581169116145b9150505b92915050565b5f825f190484118302158202611d64575f80fd5b5091020490565b60045460ff1615611d8f576040516304d3ed9760e31b815260040160405180910390fd5b335f8181526003602090815260408083206001600160a01b03888116808652918452828520908816808652908452938290208651815488860151898601516001600160401b0390931672ffffffffffffffffffffffffffffffffffffff199092168217600160401b6001600160581b03909216918202176bffffffffffffffffffffffff60981b1916600160981b6001600160601b03909416938402178455855192835295820152928301939093524260608301529193907f9537495a2390e1a29f5f7e71b8540f5140bba27065f173615b770ad79d2f79609060800160405180910390a450505050565b5f6040516323b872dd60e01b81526001600160a01b03851660048201526001600160a01b038416602482015282604482015260205f6064835f8a5af13d15601f3d1160015f511416171691505080611f0b5760405162461bcd60e51b81526020600482015260146024820152731514905394d1915497d19493d357d1905253115160621b6044820152606401611041565b5050505050565b6001600160a01b0381168114611f26575f80fd5b50565b5f8083601f840112611f39575f80fd5b5081356001600160401b03811115611f4f575f80fd5b6020830191508360208260051b8501011115611f69575f80fd5b9250929050565b5f805f8060608587031215611f83575f80fd5b8435611f8e81611f12565b93506020850135611f9e81611f12565b925060408501356001600160401b03811115611fb8575f80fd5b611fc487828801611f29565b95989497509550505050565b606080825284518282018190525f9190608090818501906020808a01865b8381101561205557815180516001600160a01b0316865283810151151584870152604080820151151590870152878101511515888701528681015115158787015260a0808201519087015260c0908101519086015260e09094019390820190600101611fee565b50508601979097526040909401949094525090949350505050565b803561207b81611f12565b919050565b5f805f83850360c0811215612093575f80fd5b843561209e81611f12565b935060208501356120ae81611f12565b92506080603f19820112156120c1575f80fd5b506040840190509250925092565b606080825284518282018190525f9190608090818501906020808a01865b8381101561205557815180516001600160a01b031686528381015160ff1684870152604080820151908701528701518786015293850193908201906001016120ed565b634e487b7160e01b5f52604160045260245ffd5b80356001600160401b038116811461207b575f80fd5b80356001600160581b038116811461207b575f80fd5b80356001600160601b038116811461207b575f80fd5b8015158114611f26575f80fd5b5f608082840312156121a3575f80fd5b604051608081018181106001600160401b03821117156121d157634e487b7160e01b5f52604160045260245ffd5b6040529050806121e083612144565b81526121ee6020840161215a565b60208201526121ff60408401612170565b6040820152606083013561221281612186565b6060919091015292915050565b5f805f805f6101008688031215612234575f80fd5b853561223f81611f12565b9450602086013561224f81611f12565b935061225e8760408801612193565b925060c086013561226e81611f12565b9497939650919460e0013592915050565b5f805f60608486031215612291575f80fd5b833561229c81611f12565b925060208401356122ac81611f12565b915060408401356122bc81611f12565b809150509250925092565b5f602082840312156122d7575f80fd5b8135610b0e81611f12565b5f805f60c084860312156122f4575f80fd5b83356122ff81611f12565b9250602084013561230f81611f12565b915061231e8560408601612193565b90509250925092565b5f805f805f805f60a0888a03121561233d575f80fd5b873561234881611f12565b9650602088013561235881611f12565b955060408801356001600160401b0380821115612373575f80fd5b61237f8b838c01611f29565b909750955060608a0135915080821115612397575f80fd5b818a0191508a601f8301126123aa575f80fd5b8135818111156123b8575f80fd5b8b60208285010111156123c9575f80fd5b6020830195508094505050506123e160808901612070565b905092959891949750929550565b5f602082840312156123ff575f80fd5b815160ff81168114610b0e575f80fd5b634e487b7160e01b5f52603260045260245ffd5b5f60208284031215612433575f80fd5b5051919050565b634e487b7160e01b5f52601160045260245ffd5b80820180821115611d4a57611d4a61243a565b5f600182016124725761247261243a565b5060010190565b5f60208284031215612489575f80fd5b610b0e82612170565b5f602082840312156124a2575f80fd5b610b0e82612144565b5f602082840312156124bb575f80fd5b610b0e8261215a565b6020808252600a90820152695245454e5452414e435960b01b604082015260600190565b6020808252600c908201526b15539055551213d49256915160a21b604082015260600190565b5f6020828403121561251e575f80fd5b8151610b0e81611f12565b81810381811115611d4a57611d4a61243a565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b5f60208284031215612579575f80fd5b8151610b0e81612186565b60c081528660c0820152868860e08301375f60e08883018101919091526001600160a01b0396871660208301529486166040820152929094166060830152608082015260a0810192909252601f909201601f19160101919050565b600181815b8085111561261957815f19048211156125ff576125ff61243a565b8085161561260c57918102915b93841c93908002906125e4565b509250929050565b5f8261262f57506001611d4a565b8161263b57505f611d4a565b8160018114612651576002811461265b57612677565b6001915050611d4a565b60ff84111561266c5761266c61243a565b50506001821b611d4a565b5060208310610133831016604e8410600b841016171561269a575081810a611d4a565b6126a483836125df565b805f19048211156126b7576126b761243a565b029392505050565b5f610b0e60ff84168361262156fea264697066735822122041569b8b67dcd15d790503e0bd4300ba57b341327c62b5268ca64425df8d6fb264736f6c63430008150033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f8553c8552f906c19286f21711721e206ee4909e0000000000000000000000004df6b73328b639073db150c4584196c4d97053b7
-----Decoded View---------------
Arg [0] : _owner (address): 0xf8553c8552f906C19286F21711721E206EE4909E
Arg [1] : _auth (address): 0x4df6b73328B639073db150C4584196c4d97053b7
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000f8553c8552f906c19286f21711721e206ee4909e
Arg [1] : 0000000000000000000000004df6b73328b639073db150c4584196c4d97053b7
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.