Overview
S Balance
S Value
$0.00More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x7b332fC3...03dc3e3BD The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
BoringSolver
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)
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity 0.8.21;import {Auth, Authority} from "@solmate/auth/Auth.sol";import {BoringOnChainQueue, ERC20, SafeTransferLib} from "src/base/Roles/BoringQueue/BoringOnChainQueue.sol";import {IBoringSolver} from "src/base/Roles/BoringQueue/IBoringSolver.sol";import {FixedPointMathLib} from "@solmate/utils/FixedPointMathLib.sol";import {TellerWithMultiAssetSupport} from "src/base/Roles/TellerWithMultiAssetSupport.sol";import {Multicall} from "@openzeppelin/contracts/utils/Multicall.sol";contract BoringSolver is IBoringSolver, Auth, Multicall {using SafeTransferLib for ERC20;using FixedPointMathLib for uint256;// ========================================= ENUMS =========================================enum SolveType {BORING_REDEEM, // Fill multiple user requests with a single transaction.BORING_REDEEM_MINT // Fill multiple user requests to redeem shares and mint new shares.}//============================== ERRORS ===============================error BoringSolver___WrongInitiator();error BoringSolver___BoringVaultTellerMismatch(address boringVault, address teller);error BoringSolver___OnlySelf();error BoringSolver___FailedToSolve();
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0-onlypragma 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");
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity 0.8.21;import {ERC20} from "@solmate/tokens/ERC20.sol";import {WETH} from "@solmate/tokens/WETH.sol";import {BoringVault} from "src/base/BoringVault.sol";import {AccountantWithRateProviders} from "src/base/Roles/AccountantWithRateProviders.sol";import {FixedPointMathLib} from "@solmate/utils/FixedPointMathLib.sol";import {SafeTransferLib} from "@solmate/utils/SafeTransferLib.sol";import {BeforeTransferHook} from "src/interfaces/BeforeTransferHook.sol";import {Auth, Authority} from "@solmate/auth/Auth.sol";import {ReentrancyGuard} from "@solmate/utils/ReentrancyGuard.sol";import {IPausable} from "src/interfaces/IPausable.sol";import {EnumerableSet} from "@openzeppelin/contracts/utils/structs/EnumerableSet.sol";import {IBoringSolver} from "src/base/Roles/BoringQueue/IBoringSolver.sol";contract BoringOnChainQueue is Auth, ReentrancyGuard, IPausable {using EnumerableSet for EnumerableSet.Bytes32Set;using SafeTransferLib for BoringVault;using SafeTransferLib for ERC20;using FixedPointMathLib for uint256;// ========================================= STRUCTS =========================================/*** @param allowWithdraws Whether or not withdraws are allowed for this asset.
12345678910111213// SPDX-License-Identifier: UNLICENSEDpragma solidity 0.8.21;interface IBoringSolver {function boringSolve(address initiator,address boringVault,address solveAsset,uint256 totalShares,uint256 requiredAssets,bytes calldata solveData) external;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0-onlypragma 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.}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma solidity 0.8.21;import {ERC20} from "@solmate/tokens/ERC20.sol";import {WETH} from "@solmate/tokens/WETH.sol";import {BoringVault} from "src/base/BoringVault.sol";import {AccountantWithRateProviders} from "src/base/Roles/AccountantWithRateProviders.sol";import {FixedPointMathLib} from "@solmate/utils/FixedPointMathLib.sol";import {SafeTransferLib} from "@solmate/utils/SafeTransferLib.sol";import {BeforeTransferHook} from "src/interfaces/BeforeTransferHook.sol";import {Auth, Authority} from "@solmate/auth/Auth.sol";import {ReentrancyGuard} from "@solmate/utils/ReentrancyGuard.sol";import {IPausable} from "src/interfaces/IPausable.sol";contract TellerWithMultiAssetSupport is Auth, BeforeTransferHook, ReentrancyGuard, IPausable {using FixedPointMathLib for uint256;using SafeTransferLib for ERC20;using SafeTransferLib for WETH;// ========================================= STRUCTS =========================================/*** @param allowDeposits bool indicating whether or not deposits are allowed for this asset.* @param allowWithdraws bool indicating whether or not withdraws are allowed for this asset.* @param sharePremium uint16 indicating the premium to apply to the shares minted.* where 40 represents a 40bps reduction in shares minted using this asset.*/
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.1) (utils/Multicall.sol)pragma solidity ^0.8.20;import {Address} from "./Address.sol";import {Context} from "./Context.sol";/*** @dev Provides a function to batch together multiple calls in a single external call.** Consider any assumption about calldata validation performed by the sender may be violated if it's not especially* careful about sending transactions invoking {multicall}. For example, a relay address that filters function* selectors won't filter calls nested within a {multicall} operation.** NOTE: Since 5.0.1 and 4.9.4, this contract identifies non-canonical contexts (i.e. `msg.sender` is not {_msgSender}).* If a non-canonical context is identified, the following self `delegatecall` appends the last bytes of `msg.data`* to the subcall. This makes it safe to use with {ERC2771Context}. Contexts that don't affect the resolution of* {_msgSender} are not propagated to subcalls.*/abstract contract Multicall is Context {/*** @dev Receives and executes a batch of function calls on this contract.* @custom:oz-upgrades-unsafe-allow-reachable delegatecall*/function multicall(bytes[] calldata data) external virtual returns (bytes[] memory results) {
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0-onlypragma 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;
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0-onlypragma solidity >=0.8.0;import {ERC20} from "./ERC20.sol";import {SafeTransferLib} from "../utils/SafeTransferLib.sol";/// @notice Minimalist and modern Wrapped Ether implementation./// @author Solmate (https://github.com/transmissions11/solmate/blob/main/src/tokens/WETH.sol)/// @author Inspired by WETH9 (https://github.com/dapphub/ds-weth/blob/master/src/weth9.sol)contract WETH is ERC20("Wrapped Ether", "WETH", 18) {using SafeTransferLib for address;event Deposit(address indexed from, uint256 amount);event Withdrawal(address indexed to, uint256 amount);function deposit() public payable virtual {_mint(msg.sender, msg.value);emit Deposit(msg.sender, msg.value);}function withdraw(uint256 amount) public virtual {_burn(msg.sender, amount);
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma 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 ===============================
1234567891011121314151617181920212223242526// SPDX-License-Identifier: UNLICENSEDpragma 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
1234567891011121314151617181920212223242526// SPDX-License-Identifier: AGPL-3.0-onlypragma 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-assemblyassembly {// Transfer the ETH and store if it succeeded or not.success := call(gas(), to, amount, 0, 0, 0, 0)}require(success, "ETH_TRANSFER_FAILED");}
123456// SPDX-License-Identifier: UNLICENSEDpragma solidity 0.8.21;interface BeforeTransferHook {function beforeTransfer(address from, address to, address operator) external view;}
12345678910111213141516171819// SPDX-License-Identifier: AGPL-3.0-onlypragma 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;}}
1234567// SPDX-License-Identifier: UNLICENSEDpragma solidity 0.8.21;interface IPausable {function pause() external;function unpause() external;}
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.0) (utils/structs/EnumerableSet.sol)// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.pragma solidity ^0.8.20;/*** @dev Library for managing* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive* types.** Sets have the following properties:** - Elements are added, removed, and checked for existence in constant time* (O(1)).* - Elements are enumerated in O(n). No guarantees are made on the ordering.** ```solidity* contract Example {* // Add the library methods* using EnumerableSet for EnumerableSet.AddressSet;** // Declare a set state variable* EnumerableSet.AddressSet private mySet;* }* ```
1234567891011121314151617181920212223242526// 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
1234567891011121314151617181920212223242526// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)pragma solidity ^0.8.20;/*** @dev Provides information about the current execution context, including the* sender of the transaction and its data. While these are generally available* via msg.sender and msg.data, they should not be accessed in such a direct* manner, since when dealing with meta-transactions the account sending and* paying for execution may not be the actual sender (as far as an application* is concerned).** This contract is only required for intermediate, library-like contracts.*/abstract contract Context {function _msgSender() internal view virtual returns (address) {return msg.sender;}function _msgData() internal view virtual returns (bytes calldata) {return msg.data;}function _contextSuffixLength() internal view virtual returns (uint256) {return 0;
123456789101112131415161718192021222324// 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;}}
1234567891011121314151617181920212223242526// 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,
12345678910111213141516171819// 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);}
1234567891011121314151617181920212223242526// 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
1234567891011121314151617181920212223242526// 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;}
1234567891011121314151617181920212223242526// 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
12345678910111213141516171819202122232425// 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);}
1234567891011121314151617181920212223242526{"remappings": ["@solmate/=lib/solmate/src/","@forge-std/=lib/forge-std/src/","@ds-test/=lib/forge-std/lib/ds-test/src/","ds-test/=lib/forge-std/lib/ds-test/src/","@openzeppelin/=lib/openzeppelin-contracts/","@ccip/=lib/ccip/","@oapp-auth/=lib/OAppAuth/src/","@devtools-oapp-evm/=lib/OAppAuth/lib/devtools/packages/oapp-evm/contracts/oapp/","@layerzerolabs/lz-evm-messagelib-v2/=lib/OAppAuth/node_modules/@layerzerolabs/lz-evm-messagelib-v2/","@layerzerolabs/lz-evm-protocol-v2/=lib/OAppAuth/lib/LayerZero-V2/packages/layerzero-v2/evm/protocol/","@layerzerolabs/oapp-evm/=lib/OAppAuth/lib/devtools/packages/oapp-evm/","@lz-oapp-evm/=lib/OAppAuth/lib/LayerZero-V2/packages/layerzero-v2/evm/oapp/contracts/oapp/","@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/","@sbu/=lib/OAppAuth/lib/solidity-bytes-utils/","LayerZero-V2/=lib/OAppAuth/lib/","OAppAuth/=lib/OAppAuth/","ccip/=lib/ccip/contracts/","erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/","forge-std/=lib/forge-std/src/","halmos-cheatcodes/=lib/OAppAuth/lib/openzeppelin-contracts/lib/halmos-cheatcodes/src/","openzeppelin-contracts/=lib/openzeppelin-contracts/","solidity-bytes-utils/=lib/OAppAuth/node_modules/solidity-bytes-utils/","solmate/=lib/solmate/src/"],
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_auth","type":"address"},{"internalType":"address","name":"_queue","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"boringVault","type":"address"},{"internalType":"address","name":"teller","type":"address"}],"name":"BoringSolver___BoringVaultTellerMismatch","type":"error"},{"inputs":[],"name":"BoringSolver___FailedToSolve","type":"error"},{"inputs":[],"name":"BoringSolver___OnlyQueue","type":"error"},{"inputs":[],"name":"BoringSolver___OnlySelf","type":"error"},{"inputs":[],"name":"BoringSolver___WrongInitiator","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"contract Authority","name":"newAuthority","type":"address"}],"name":"AuthorityUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"authority","outputs":[{"internalType":"contract Authority","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"components":[{"internalType":"uint96","name":"nonce","type":"uint96"},{"internalType":"address","name":"user","type":"address"},{"internalType":"address","name":"assetOut","type":"address"},{"internalType":"uint128","name":"amountOfShares","type":"uint128"},{"internalType":"uint128","name":"amountOfAssets","type":"uint128"},{"internalType":"uint40","name":"creationTime","type":"uint40"},{"internalType":"uint24","name":"secondsToMaturity","type":"uint24"},{"internalType":"uint24","name":"secondsToDeadline","type":"uint24"}],"internalType":"struct BoringOnChainQueue.OnChainWithdraw","name":"request","type":"tuple"},{"internalType":"address","name":"fromTeller","type":"address"},{"internalType":"address","name":"toTeller","type":"address"},{"internalType":"address","name":"intermediateAsset","type":"address"}],"name":"boringRedeemMintSelfSolve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint96","name":"nonce","type":"uint96"},{"internalType":"address","name":"user","type":"address"},{"internalType":"address","name":"assetOut","type":"address"},{"internalType":"uint128","name":"amountOfShares","type":"uint128"},{"internalType":"uint128","name":"amountOfAssets","type":"uint128"},{"internalType":"uint40","name":"creationTime","type":"uint40"},{"internalType":"uint24","name":"secondsToMaturity","type":"uint24"},{"internalType":"uint24","name":"secondsToDeadline","type":"uint24"}],"internalType":"struct BoringOnChainQueue.OnChainWithdraw[]","name":"requests","type":"tuple[]"},{"internalType":"address","name":"fromTeller","type":"address"},{"internalType":"address","name":"toTeller","type":"address"},{"internalType":"address","name":"intermediateAsset","type":"address"}],"name":"boringRedeemMintSolve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint96","name":"nonce","type":"uint96"},{"internalType":"address","name":"user","type":"address"},{"internalType":"address","name":"assetOut","type":"address"},{"internalType":"uint128","name":"amountOfShares","type":"uint128"},{"internalType":"uint128","name":"amountOfAssets","type":"uint128"},{"internalType":"uint40","name":"creationTime","type":"uint40"},{"internalType":"uint24","name":"secondsToMaturity","type":"uint24"},{"internalType":"uint24","name":"secondsToDeadline","type":"uint24"}],"internalType":"struct BoringOnChainQueue.OnChainWithdraw","name":"request","type":"tuple"},{"internalType":"address","name":"teller","type":"address"}],"name":"boringRedeemSelfSolve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"uint96","name":"nonce","type":"uint96"},{"internalType":"address","name":"user","type":"address"},{"internalType":"address","name":"assetOut","type":"address"},{"internalType":"uint128","name":"amountOfShares","type":"uint128"},{"internalType":"uint128","name":"amountOfAssets","type":"uint128"},{"internalType":"uint40","name":"creationTime","type":"uint40"},{"internalType":"uint24","name":"secondsToMaturity","type":"uint24"},{"internalType":"uint24","name":"secondsToDeadline","type":"uint24"}],"internalType":"struct BoringOnChainQueue.OnChainWithdraw[]","name":"requests","type":"tuple[]"},{"internalType":"address","name":"teller","type":"address"}],"name":"boringRedeemSolve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"initiator","type":"address"},{"internalType":"address","name":"boringVault","type":"address"},{"internalType":"address","name":"solveAsset","type":"address"},{"internalType":"uint256","name":"totalShares","type":"uint256"},{"internalType":"uint256","name":"requiredAssets","type":"uint256"},{"internalType":"bytes","name":"solveData","type":"bytes"}],"name":"boringSolve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes[]","name":"data","type":"bytes[]"}],"name":"multicall","outputs":[{"internalType":"bytes[]","name":"results","type":"bytes[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Authority","name":"newAuthority","type":"address"}],"name":"setAuthority","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Deployed Bytecode
0x608060405234801561000f575f80fd5b50600436106100a6575f3560e01c80638f3866081161006e5780638f38660814610127578063ac9650d81461013a578063b7532db21461015a578063bf7e214f1461016d578063f2fde38b14610180578063ff011b6214610193575f80fd5b806357376198146100aa57806367aa0416146100bf57806372faf4a4146100d25780637a9e5e4b146100e55780638da5cb5b146100f8575b5f80fd5b6100bd6100b83660046113dd565b6101a6565b005b6100bd6100cd366004611417565b610269565b6100bd6100e03660046114e3565b610390565b6100bd6100f336600461151b565b6104f9565b5f5461010a906001600160a01b031681565b6040516001600160a01b0390911681526020015b60405180910390f35b6100bd610135366004611536565b6105dd565b61014d610148366004611592565b610757565b60405161011e919061164e565b6100bd6101683660046116f6565b610849565b60015461010a906001600160a01b031681565b6100bd61018e36600461151b565b6108f5565b6100bd6101a1366004611749565b610970565b6101bb335f356001600160e01b031916610a21565b6101e05760405162461bcd60e51b81526004016101d7906117c1565b60405180910390fd5b5f198103610251576040516370a0823160e01b81523060048201526001600160a01b038316906370a0823190602401602060405180830381865afa15801561022a573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061024e91906117e7565b90505b6102656001600160a01b0383163383610ac7565b5050565b61027e335f356001600160e01b031916610a21565b61029a5760405162461bcd60e51b81526004016101d7906117c1565b336001600160a01b037f00000000000000000000000077530c480c6635dd09c6eeb5b354ad96f5842f3116146102e3576040516337aab0fd60e11b815260040160405180910390fd5b6001600160a01b038716301461030c5760405163702093cb60e11b815260040160405180910390fd5b5f6103198284018461180c565b90505f81600181111561032e5761032e611825565b0361034657610341838389898989610b4a565b610386565b600181600181111561035a5761035a611825565b0361036d57610341838389898989610d52565b6040516336ad3b5560e21b815260040160405180910390fd5b5050505050505050565b6103a5335f356001600160e01b031916610a21565b6103c15760405162461bcd60e51b81526004016101d7906117c1565b336103d2604084016020850161151b565b6001600160a01b0316146103f9576040516303279bc360e41b815260040160405180910390fd5b6040805160018082528183019092525f91816020015b610417611386565b81526020019060019003908161040f57905050905061043b3684900384018461189f565b815f8151811061044d5761044d61196e565b60200260200101819052505f8033845f60405160200161047094939291906119a2565b60408051601f19818403018152908290526310498e3760e21b825291506001600160a01b037f00000000000000000000000077530c480c6635dd09c6eeb5b354ad96f5842f31169063412638dc906104d0908590859030906004016119d9565b5f604051808303815f87803b1580156104e7575f80fd5b505af1158015610386573d5f803e3d5ffd5b5f546001600160a01b031633148061058a575060015460405163b700961360e01b81526001600160a01b039091169063b70096139061054b90339030906001600160e01b03195f351690600401611abb565b602060405180830381865afa158015610566573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061058a9190611af5565b610592575f80fd5b600180546001600160a01b0319166001600160a01b03831690811790915560405133907fa3396fd7f6e0a21b50e5089d2da70d5ac0a3bbbd1f617a93f134b76389980198905f90a350565b6105f2335f356001600160e01b031916610a21565b61060e5760405162461bcd60e51b81526004016101d7906117c1565b3361061f604086016020870161151b565b6001600160a01b031614610646576040516303279bc360e41b815260040160405180910390fd5b6040805160018082528183019092525f91816020015b610664611386565b81526020019060019003908161065c5790505090506106883686900386018661189f565b815f8151811061069a5761069a61196e565b60200260200101819052505f6001338686865f6040516020016106c296959493929190611b10565b60408051601f19818403018152908290526310498e3760e21b825291506001600160a01b037f00000000000000000000000077530c480c6635dd09c6eeb5b354ad96f5842f31169063412638dc90610722908590859030906004016119d9565b5f604051808303815f87803b158015610739575f80fd5b505af115801561074b573d5f803e3d5ffd5b50505050505050505050565b604080515f8152602081019091526060908267ffffffffffffffff81111561078157610781611839565b6040519080825280602002602001820160405280156107b457816020015b606081526020019060019003908161079f5790505b5091505f5b8381101561084057610810308686848181106107d7576107d761196e565b90506020028101906107e99190611b7d565b856040516020016107fc93929190611bc0565b6040516020818303038152906040526111ea565b8382815181106108225761082261196e565b6020026020010181905250808061083890611be5565b9150506107b9565b50505b92915050565b61085e335f356001600160e01b031916610a21565b61087a5760405162461bcd60e51b81526004016101d7906117c1565b5f803383600160405160200161089394939291906119a2565b60408051601f19818403018152908290526310498e3760e21b825291506001600160a01b037f00000000000000000000000077530c480c6635dd09c6eeb5b354ad96f5842f31169063412638dc906104d0908790879086903090600401611bfd565b61090a335f356001600160e01b031916610a21565b6109265760405162461bcd60e51b81526004016101d7906117c1565b5f80546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b610985335f356001600160e01b031916610a21565b6109a15760405162461bcd60e51b81526004016101d7906117c1565b5f60013385858560016040516020016109bf96959493929190611b10565b60408051601f19818403018152908290526310498e3760e21b825291506001600160a01b037f00000000000000000000000077530c480c6635dd09c6eeb5b354ad96f5842f31169063412638dc90610722908990899086903090600401611bfd565b6001545f906001600160a01b03168015801590610aa8575060405163b700961360e01b81526001600160a01b0382169063b700961390610a6990879030908890600401611abb565b602060405180830381865afa158015610a84573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610aa89190611af5565b80610abf57505f546001600160a01b038581169116145b949350505050565b5f60405163a9059cbb60e01b81526001600160a01b038416600482015282602482015260205f6044835f895af13d15601f3d1160015f511416171691505080610b445760405162461bcd60e51b815260206004820152600f60248201526e1514905394d1915497d19052531151608a1b60448201526064016101d7565b50505050565b5f8080610b59888a018a611d1c565b93509350935050816001600160a01b031663fbfa77cf6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610b9c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610bc09190611d68565b6001600160a01b0316876001600160a01b031614610c0457604051631469fe1360e21b81526001600160a01b038089166004830152831660248201526044016101d7565b604051633e64ce9960e01b815286905f906001600160a01b03851690633e64ce9990610c3a9085908b908b903090600401611d83565b6020604051808303815f875af1158015610c56573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610c7a91906117e7565b90508215610ca657610ca185610c908884611b6a565b6001600160a01b0385169190610ac7565b610cb4565b610cb489610c908884611b6a565b60405163095ea7b360e01b81526001600160a01b037f00000000000000000000000077530c480c6635dd09c6eeb5b354ad96f5842f31811660048301526024820188905283169063095ea7b3906044016020604051808303815f875af1158015610d20573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610d449190611af5565b505050505050505050505050565b5f80808080610d638a8c018c611dae565b9550955095509550955050836001600160a01b031663fbfa77cf6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610daa573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610dce9190611d68565b6001600160a01b0316896001600160a01b031614610e1257604051631469fe1360e21b81526001600160a01b03808b166004830152851660248201526044016101d7565b826001600160a01b031663fbfa77cf6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e4e573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610e729190611d68565b6001600160a01b0316886001600160a01b031614610eb657604051631469fe1360e21b81526001600160a01b03808a166004830152841660248201526044016101d7565b604051633e64ce9960e01b81525f906001600160a01b03861690633e64ce9990610eea9086908c9086903090600401611d83565b6020604051808303815f875af1158015610f06573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f2a91906117e7565b90505f611082856001600160a01b0316634fb3ccc56040518163ffffffff1660e01b8152600401602060405180830381865afa158015610f6c573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610f909190611d68565b604051634104b9ed60e11b81526001600160a01b038781166004830152919091169063820973da90602401602060405180830381865afa158015610fd6573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610ffa91906117e7565b7f00000000000000000000000077530c480c6635dd09c6eeb5b354ad96f5842f316001600160a01b031663b7d122b56040518163ffffffff1660e01b8152600401602060405180830381865afa158015611056573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061107a91906117e7565b8a919061125c565b905061108e8183611b6a565b91506110a46001600160a01b0385168b8361127f565b6040516304eaba2160e51b81526001600160a01b03861690639d574420906110d690879085908d903090600401611d83565b6020604051808303815f875af11580156110f2573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061111691906117e7565b50508115611137576111326001600160a01b0384168783610ac7565b61114b565b61114b6001600160a01b0384168b83610ac7565b60405163095ea7b360e01b81526001600160a01b037f00000000000000000000000077530c480c6635dd09c6eeb5b354ad96f5842f3181166004830152602482018990528a169063095ea7b3906044016020604051808303815f875af11580156111b7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906111db9190611af5565b50505050505050505050505050565b60605f80846001600160a01b0316846040516112069190611e2a565b5f60405180830381855af49150503d805f811461123e576040519150601f19603f3d011682016040523d82523d5f602084013e611243565b606091505b50915091506112538583836112fb565b95945050505050565b5f825f190484118302158202611270575f80fd5b50910281810615159190040190565b5f60405163095ea7b360e01b81526001600160a01b038416600482015282602482015260205f6044835f895af13d15601f3d1160015f511416171691505080610b445760405162461bcd60e51b815260206004820152600e60248201526d1054141493d59157d1905253115160921b60448201526064016101d7565b6060826113105761130b8261135a565b611353565b815115801561132757506001600160a01b0384163b155b1561135057604051639996b31560e01b81526001600160a01b03851660048201526024016101d7565b50805b9392505050565b80511561136a5780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b50565b60408051610100810182525f80825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e081019190915290565b6001600160a01b0381168114611383575f80fd5b5f80604083850312156113ee575f80fd5b82356113f9816113c9565b946020939093013593505050565b8035611412816113c9565b919050565b5f805f805f805f60c0888a03121561142d575f80fd5b8735611438816113c9565b96506020880135611448816113c9565b95506040880135611458816113c9565b9450606088013593506080880135925060a088013567ffffffffffffffff80821115611482575f80fd5b818a0191508a601f830112611495575f80fd5b8135818111156114a3575f80fd5b8b60208285010111156114b4575f80fd5b60208301945080935050505092959891949750929550565b5f61010082840312156114dd575f80fd5b50919050565b5f8061012083850312156114f5575f80fd5b6114ff84846114cc565b9150610100830135611510816113c9565b809150509250929050565b5f6020828403121561152b575f80fd5b8135611353816113c9565b5f805f80610160858703121561154a575f80fd5b61155486866114cc565b9350610100850135611565816113c9565b9250610120850135611576816113c9565b9150610140850135611587816113c9565b939692955090935050565b5f80602083850312156115a3575f80fd5b823567ffffffffffffffff808211156115ba575f80fd5b818501915085601f8301126115cd575f80fd5b8135818111156115db575f80fd5b8660208260051b85010111156115ef575f80fd5b60209290920196919550909350505050565b5f5b8381101561161b578181015183820152602001611603565b50505f910152565b5f815180845261163a816020860160208601611601565b601f01601f19169290920160200192915050565b5f602080830181845280855180835260408601915060408160051b87010192508387015f5b828110156116a157603f1988860301845261168f858351611623565b94509285019290850190600101611673565b5092979650505050505050565b5f8083601f8401126116be575f80fd5b50813567ffffffffffffffff8111156116d5575f80fd5b6020830191508360208260081b85010111156116ef575f80fd5b9250929050565b5f805f60408486031215611708575f80fd5b833567ffffffffffffffff81111561171e575f80fd5b61172a868287016116ae565b909450925050602084013561173e816113c9565b809150509250925092565b5f805f805f6080868803121561175d575f80fd5b853567ffffffffffffffff811115611773575f80fd5b61177f888289016116ae565b9096509450506020860135611793816113c9565b925060408601356117a3816113c9565b915060608601356117b3816113c9565b809150509295509295909350565b6020808252600c908201526b15539055551213d49256915160a21b604082015260600190565b5f602082840312156117f7575f80fd5b5051919050565b803560028110611412575f80fd5b5f6020828403121561181c575f80fd5b611353826117fe565b634e487b7160e01b5f52602160045260245ffd5b634e487b7160e01b5f52604160045260245ffd5b80356001600160601b0381168114611412575f80fd5b80356001600160801b0381168114611412575f80fd5b803564ffffffffff81168114611412575f80fd5b803562ffffff81168114611412575f80fd5b5f6101008083850312156118b1575f80fd5b6040519081019067ffffffffffffffff821181831017156118e057634e487b7160e01b5f52604160045260245ffd5b816040526118ed8461184d565b81526118fb60208501611407565b602082015261190c60408501611407565b604082015261191d60608501611863565b606082015261192e60808501611863565b608082015261193f60a08501611879565b60a082015261195060c0850161188d565b60c082015261196160e0850161188d565b60e0820152949350505050565b634e487b7160e01b5f52603260045260245ffd5b6002811061199e57634e487b7160e01b5f52602160045260245ffd5b9052565b608081016119b08287611982565b6001600160a01b0394851660208301529290931660408401521515606090920191909152919050565b606080825284518282018190525f9190608090818501906020808a01865b83811015611a8d57815180516001600160601b03168652838101516001600160a01b039081168588015260408083015190911690870152878101516001600160801b039081168988015287820151168787015260a08082015164ffffffffff169087015260c08082015162ffffff9081169188019190915260e091820151169086015261010090940193908201906001016119f7565b50508683039087015250611aa18188611623565b9350505050610abf60408301846001600160a01b03169052565b6001600160a01b0393841681529190921660208201526001600160e01b0319909116604082015260600190565b8015158114611383575f80fd5b5f60208284031215611b05575f80fd5b815161135381611ae8565b60c08101611b1e8289611982565b6001600160a01b039687166020830152948616604082015292851660608401529316608082015291151560a090920191909152919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561084357610843611b56565b5f808335601e19843603018112611b92575f80fd5b83018035915067ffffffffffffffff821115611bac575f80fd5b6020019150368190038213156116ef575f80fd5b828482375f8382015f81528351611bdb818360208801611601565b0195945050505050565b5f60018201611bf657611bf6611b56565b5060010190565b60608082528181018590525f90608080840188845b89811015611cee576001600160601b03611c2b8361184d565b168352602080830135611c3d816113c9565b6001600160a01b031690840152604082810135611c59816113c9565b6001600160a01b031690840152611c71828601611863565b6001600160801b031685840152611c89828501611863565b6001600160801b03168484015260a0611ca3838201611879565b64ffffffffff169084015260c0611cbb83820161188d565b62ffffff169084015260e0611cd183820161188d565b62ffffff1690840152610100928301929190910190600101611c12565b50508481036020860152611d028188611623565b935050505061125360408301846001600160a01b03169052565b5f805f8060808587031215611d2f575f80fd5b611d38856117fe565b93506020850135611d48816113c9565b92506040850135611d58816113c9565b9150606085013561158781611ae8565b5f60208284031215611d78575f80fd5b8151611353816113c9565b6001600160a01b03948516815260208101939093526040830191909152909116606082015260800190565b5f805f805f8060c08789031215611dc3575f80fd5b611dcc876117fe565b95506020870135611ddc816113c9565b94506040870135611dec816113c9565b93506060870135611dfc816113c9565b92506080870135611e0c816113c9565b915060a0870135611e1c81611ae8565b809150509295509295509295565b5f8251611e3b818460208701611601565b919091019291505056fea2646970667358221220a5741c30db9edacf86cae8f15d1e1379049a9d49d8cafc6c4b676da214fe245a64736f6c63430008150033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ 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.