Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 83 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Deposit Native | 21281256 | 54 days ago | IN | 0.1 ETH | 0.00235008 | ||||
Deposit Native | 21281178 | 54 days ago | IN | 0.9 ETH | 0.00241761 | ||||
Deposit Native | 21280975 | 54 days ago | IN | 0.025 ETH | 0.00155882 | ||||
Deposit Native | 21279703 | 54 days ago | IN | 1.59 ETH | 0.00127146 | ||||
Deposit Native | 21278804 | 54 days ago | IN | 0.01762744 ETH | 0.00151313 | ||||
Deposit Native | 21277942 | 54 days ago | IN | 0.037 ETH | 0.00128869 | ||||
Deposit Native | 21277732 | 54 days ago | IN | 0.05 ETH | 0.00100521 | ||||
Deposit | 21276555 | 54 days ago | IN | 0 ETH | 0.00092779 | ||||
Deposit Native | 21275616 | 55 days ago | IN | 0.198 ETH | 0.00104796 | ||||
Deposit Native | 21274382 | 55 days ago | IN | 0.073895 ETH | 0.00106184 | ||||
Deposit Native | 21274361 | 55 days ago | IN | 1 ETH | 0.00087359 | ||||
Deposit Native | 21272321 | 55 days ago | IN | 0.37 ETH | 0.00166409 | ||||
Deposit Native | 21271927 | 55 days ago | IN | 0.5 ETH | 0.00151735 | ||||
Deposit Native | 21271867 | 55 days ago | IN | 1.35 ETH | 0.00144991 | ||||
Deposit Native | 21271852 | 55 days ago | IN | 0.1 ETH | 0.0016532 | ||||
Deposit Native | 21271506 | 55 days ago | IN | 0.99 ETH | 0.00150868 | ||||
Deposit Native | 21271494 | 55 days ago | IN | 0.01 ETH | 0.00124455 | ||||
Deposit Native | 21268201 | 56 days ago | IN | 0.01 ETH | 0.00076826 | ||||
Deposit Native | 21267880 | 56 days ago | IN | 1 ETH | 0.00147945 | ||||
Deposit Native | 21267867 | 56 days ago | IN | 2 ETH | 0.00204911 | ||||
Deposit Native | 21266923 | 56 days ago | IN | 0.00378805 ETH | 0.00175093 | ||||
Deposit Native | 21265276 | 56 days ago | IN | 0.014 ETH | 0.0014089 | ||||
Deposit Native | 21265260 | 56 days ago | IN | 0.00488 ETH | 0.00146343 | ||||
Deposit Native | 21265028 | 56 days ago | IN | 0.15 ETH | 0.00212452 | ||||
Deposit Native | 21261617 | 57 days ago | IN | 0.00211227 ETH | 0.00070176 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21281256 | 54 days ago | 0.1 ETH | ||||
21281178 | 54 days ago | 0.9 ETH | ||||
21280975 | 54 days ago | 0.025 ETH | ||||
21279703 | 54 days ago | 1.59 ETH | ||||
21278804 | 54 days ago | 0.01762744 ETH | ||||
21277942 | 54 days ago | 0.037 ETH | ||||
21277732 | 54 days ago | 0.05 ETH | ||||
21275616 | 55 days ago | 0.198 ETH | ||||
21274382 | 55 days ago | 0.073895 ETH | ||||
21274361 | 55 days ago | 1 ETH | ||||
21272321 | 55 days ago | 0.37 ETH | ||||
21271927 | 55 days ago | 0.5 ETH | ||||
21271867 | 55 days ago | 1.35 ETH | ||||
21271852 | 55 days ago | 0.1 ETH | ||||
21271506 | 55 days ago | 0.99 ETH | ||||
21271494 | 55 days ago | 0.01 ETH | ||||
21268201 | 56 days ago | 0.01 ETH | ||||
21267880 | 56 days ago | 1 ETH | ||||
21267867 | 56 days ago | 2 ETH | ||||
21266923 | 56 days ago | 0.00378805 ETH | ||||
21265276 | 56 days ago | 0.014 ETH | ||||
21265260 | 56 days ago | 0.00488 ETH | ||||
21265028 | 56 days ago | 0.15 ETH | ||||
21261617 | 57 days ago | 0.00211227 ETH | ||||
21261563 | 57 days ago | 0.025 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Deposit
Compiler Version
v0.8.26+commit.8a97fa7a
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {SafeERC20, IERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import {ECDSA} from "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import {Pausable} from "@openzeppelin/contracts/utils/Pausable.sol"; import {MessageHashUtils} from "@openzeppelin/contracts/utils/cryptography/MessageHashUtils.sol"; import {IWETH} from "./interfaces/IWETH.sol"; contract Deposit is Ownable, Pausable { using ECDSA for bytes32; using MessageHashUtils for bytes32; using SafeERC20 for IERC20; struct SwapData { address router; IERC20 tokenIn; uint256 amountIn; bytes data; } /// @notice Address of the authorized signer address public signer; /// @notice Address of the receiver for deposited funds address public depositReceiver; /// @notice Mapping to track deposited amounts for each project and user mapping(uint256 projectId => mapping(address depositToken => mapping(address => uint256))) public depositedAmount; /// @notice Mapping to track used nonces mapping(uint256 => bool) public nonces; /// @notice Mapping to track whitelisted routers mapping(address => bool) public routersWhitelist; /// @notice Address of the wrapped native currency (e.g. WETH) address public immutable wNative; /* ========== CONSTRUCTOR ========== */ /// @notice Initializes the contract with admin, signer, and deposit receiver addresses /// @param admin The address of the contract administrator /// @param _signer The address of the authorized signer /// @param _depositReceiver The address of the receiver for deposited funds /// @param _wNative The address of the wrapped native currency (e.g. WETH) constructor( address admin, address _signer, address _depositReceiver, address _wNative ) Ownable(admin) { signer = _signer; depositReceiver = _depositReceiver; wNative = _wNative; emit DepositReceiverChanged(address(0), _depositReceiver); } /* ========== INTERNAL FUNCTIONS ========== */ /// @notice Verifies the deposit signature and updates the deposited amount /// @param signature The signature to verify /// @param projectId The ID of the project to deposit to /// @param depositToken The token being deposited /// @param amount The amount of tokens to deposit /// @param deadline The deadline for the deposit signature function _beforeDeposit( bytes calldata signature, uint256 projectId, IERC20 depositToken, uint256 amount, uint256 deadline, uint256 nonce, address to, bytes calldata data ) internal { require(!nonces[nonce], "BlastUP: this nonce is already used"); require( block.timestamp <= deadline, "BlastUP: the deadline for this signature has passed" ); address signer_ = keccak256( abi.encodePacked( msg.sender, projectId, depositToken, amount, address(this), block.chainid, deadline, nonce, data ) ).toEthSignedMessageHash().recover(signature); require(signer_ == signer, "BlastUP: signature verification failed"); depositedAmount[projectId][address(depositToken)][to] += amount; nonces[nonce] = true; emit Deposited(to, projectId, depositToken, amount, depositReceiver, nonce, data); } /* ========== FUNCTIONS ========== */ /// @notice Pauses the contract, disabling certain functions function pause() external onlyOwner { _pause(); } /// @notice Unpauses the contract, enabling certain functions function unpause() external onlyOwner { _unpause(); } /// @notice Sets a new signer address /// @param _signer The new signer address function setSigner(address _signer) external onlyOwner { signer = _signer; } /// @notice Sets a new deposit receiver address /// @param _depositReceiver The new deposit receiver address function setDepositReceiver(address _depositReceiver) external onlyOwner { emit DepositReceiverChanged(depositReceiver, _depositReceiver); depositReceiver = _depositReceiver; } /// @notice Adds a router to the whitelist /// @param router The router address to add function addRouter(address router) external onlyOwner { routersWhitelist[router] = true; } /// @notice Removes a router from the whitelist /// @param router The router address to remove function removeRouter(address router) public onlyOwner { routersWhitelist[router] = false; } /// @notice Swaps exact amount of tokenIn to tokenOut, expecting to receive at least `neededAmountOut`. /// After swap, `neededAmountOut` is transferred to `receiver` and leftover is sent back to `msg.sender`. /// @param router The router address to use for the swap /// @param data The data for the swap /// @param receiver The address to receive the swapped tokens /// @param tokenIn The token to swap from /// @param amountIn The amount of tokenIn to swap /// @param tokenOut The token to swap to /// @param neededAmountOut The amount of tokenOut to receive function _swap( address router, bytes calldata data, address receiver, IERC20 tokenIn, uint256 amountIn, IERC20 tokenOut, uint256 neededAmountOut ) internal { // Swap tokenIn to depositToken require(routersWhitelist[router], "BlastUP: router is not whitelisted"); tokenIn.forceApprove(router, amountIn); (bool success, ) = router.call(data); require(success, "BlastUP: swap failed"); uint256 amountOut = tokenOut.balanceOf(address(this)); require(amountOut >= neededAmountOut, "BlastUP: amount out lt amount"); // Send the remaining amount back to the sender if (amountOut > neededAmountOut) tokenOut.safeTransfer(msg.sender, amountOut - neededAmountOut); tokenOut.safeTransfer(receiver, neededAmountOut); } /// @notice Wraps native currency to wNative /// @param amount The amount of native currency to wrap function _wrapNative(uint256 amount) internal { (bool success, ) = payable(wNative).call{value: amount}(""); require(success, "BlastUP: failed to wrap native"); } /// @notice Deposits tokens to the specified project /// @param signature The signature to verify /// @param projectId The ID of the project to deposit to /// @param depositToken The token being deposited /// @param amount The amount of tokens to deposit /// @param deadline The deadline for the deposit signature /// @param nonce The unique nonce for the deposit /// @param data Additional data for the deposit function deposit( bytes calldata signature, uint256 projectId, IERC20 depositToken, uint256 amount, uint256 deadline, uint256 nonce, address to, bytes calldata data ) external whenNotPaused { _beforeDeposit(signature, projectId, depositToken, amount, deadline, nonce, to, data); depositToken.safeTransferFrom(msg.sender, depositReceiver, amount); } /// @notice Deposits tokens to the specified project with an additional token swap /// @param signature The signature to verify /// @param projectId The ID of the project to deposit to /// @param depositToken The token being deposited /// @param amount The amount of tokens to deposit /// @param deadline The deadline for the deposit signature /// @param swapData The data for the token swap /// @param nonce The unique nonce for the deposit /// @param data Additional data for the deposit function depositWithSwap( bytes calldata signature, uint256 projectId, IERC20 depositToken, uint256 amount, uint256 deadline, SwapData calldata swapData, uint256 nonce, address to, bytes calldata data ) external whenNotPaused { _beforeDeposit(signature, projectId, depositToken, amount, deadline, nonce, to, data); swapData.tokenIn.safeTransferFrom(msg.sender, address(this), swapData.amountIn); _swap( swapData.router, swapData.data, depositReceiver, swapData.tokenIn, swapData.amountIn, depositToken, amount ); } /// @notice Deposits native currency to the specified project /// @param signature The signature to verify /// @param projectId The ID of the project to deposit to /// @param deadline The deadline for the deposit signature /// @param nonce The unique nonce for the deposit /// @param data Additional data for the deposit function depositNative( bytes calldata signature, uint256 projectId, uint256 deadline, uint256 nonce, address to, bytes calldata data ) external payable whenNotPaused { _beforeDeposit(signature, projectId, IERC20(wNative), msg.value, deadline, nonce, to, data); _wrapNative(msg.value); IERC20(wNative).safeTransfer(depositReceiver, msg.value); } /// @notice Deposits native currency to the specified project /// @param signature The signature to verify /// @param projectId The ID of the project to deposit to /// @param depositToken The token being deposited /// @param amount The amount of tokens to deposit which is expected to be received after swap. /// @param deadline The deadline for the deposit signature /// @param router Router to use for the swap /// @param routerData Data to use for the swap /// @param nonce The unique nonce for the deposit /// @param data Additional data for the deposit function depositNativeWithSwap( bytes calldata signature, uint256 projectId, IERC20 depositToken, uint256 amount, uint256 deadline, address router, bytes calldata routerData, uint256 nonce, address to, bytes calldata data ) external payable whenNotPaused { _beforeDeposit(signature, projectId, depositToken, amount, deadline, nonce, to, data); _wrapNative(msg.value); _swap( router, routerData, depositReceiver, IERC20(wNative), msg.value, depositToken, amount ); } /// @notice Withdraws funds accidentally sent to the contract /// @param token The address of the token to withdraw function withdrawFunds(address token) external onlyOwner { if (token == address(0)) { (bool success, ) = payable(msg.sender).call{ value: address(this).balance }(""); require(success, "BlastUP: failed to send ETH"); } else { IERC20(token).safeTransfer( msg.sender, IERC20(token).balanceOf(address(this)) ); } } /// @notice Fallback function to prevent accidental ETH transfers receive() external payable { revert("BlastUP: you can not send eth to this contract"); } /* ========== EVENTS ========== */ /// @notice Emitted when tokens are deposited to a project /// @param buyer The address of the buyer /// @param indexedProjectId The ID of the project /// @param depositToken The token being deposited /// @param amount The amount of tokens deposited /// @param depositReceiver The address of the deposit receiver /// @param nonce The unique nonce for the deposit /// @param data Additional data for the deposit event Deposited( address indexed buyer, uint256 indexed indexedProjectId, IERC20 depositToken, uint256 amount, address depositReceiver, uint256 nonce, bytes data ); /// @notice Emitted when the deposit receiver address is changed /// @param oldDepositReceiver The old deposit receiver address /// @param newDepositReceiver The new deposit receiver address event DepositReceiverChanged( address oldDepositReceiver, address newDepositReceiver ); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is set to the address provided by the deployer. This can * later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.20; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS } /** * @dev The signature derives the `address(0)`. */ error ECDSAInvalidSignature(); /** * @dev The signature has an invalid length. */ error ECDSAInvalidSignatureLength(uint256 length); /** * @dev The signature has an S value that is in the upper half order. */ error ECDSAInvalidSignatureS(bytes32 s); /** * @dev Returns the address that signed a hashed message (`hash`) with `signature` or an error. This will not * return address(0) without also returning an error description. Errors are documented using an enum (error type) * and a bytes32 providing additional information about the error. * * If no error is returned, then the address can be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError, bytes32) { if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. /// @solidity memory-safe-assembly assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else { return (address(0), RecoverError.InvalidSignatureLength, bytes32(signature.length)); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM precompile allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {MessageHashUtils-toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, signature); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] */ function tryRecover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address, RecoverError, bytes32) { unchecked { bytes32 s = vs & bytes32(0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff); // We do not check for an overflow here since the shift operation results in 0 or 1. uint8 v = uint8((uint256(vs) >> 255) + 27); return tryRecover(hash, v, r, s); } } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. */ function recover(bytes32 hash, bytes32 r, bytes32 vs) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, r, vs); _throwError(error, errorArg); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError, bytes32) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS, s); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature, bytes32(0)); } return (signer, RecoverError.NoError, bytes32(0)); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover(bytes32 hash, uint8 v, bytes32 r, bytes32 s) internal pure returns (address) { (address recovered, RecoverError error, bytes32 errorArg) = tryRecover(hash, v, r, s); _throwError(error, errorArg); return recovered; } /** * @dev Optionally reverts with the corresponding custom error according to the `error` argument provided. */ function _throwError(RecoverError error, bytes32 errorArg) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert ECDSAInvalidSignature(); } else if (error == RecoverError.InvalidSignatureLength) { revert ECDSAInvalidSignatureLength(uint256(errorArg)); } else if (error == RecoverError.InvalidSignatureS) { revert ECDSAInvalidSignatureS(errorArg); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Pausable.sol) pragma solidity ^0.8.20; import {Context} from "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { bool private _paused; /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); /** * @dev The operation failed because the contract is paused. */ error EnforcedPause(); /** * @dev The operation failed because the contract is not paused. */ error ExpectedPause(); /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { if (paused()) { revert EnforcedPause(); } } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { if (!paused()) { revert ExpectedPause(); } } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/cryptography/MessageHashUtils.sol) pragma solidity ^0.8.20; import {Strings} from "../Strings.sol"; /** * @dev Signature message hash utilities for producing digests to be consumed by {ECDSA} recovery or signing. * * The library provides methods for generating a hash of a message that conforms to the * https://eips.ethereum.org/EIPS/eip-191[EIP 191] and https://eips.ethereum.org/EIPS/eip-712[EIP 712] * specifications. */ library MessageHashUtils { /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing a bytes32 `messageHash` with * `"\x19Ethereum Signed Message:\n32"` and hashing the result. It corresponds with the * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method. * * NOTE: The `messageHash` parameter is intended to be the result of hashing a raw message with * keccak256, although any bytes32 value can be safely used because the final digest will * be re-hashed. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes32 messageHash) internal pure returns (bytes32 digest) { /// @solidity memory-safe-assembly assembly { mstore(0x00, "\x19Ethereum Signed Message:\n32") // 32 is the bytes-length of messageHash mstore(0x1c, messageHash) // 0x1c (28) is the length of the prefix digest := keccak256(0x00, 0x3c) // 0x3c is the length of the prefix (0x1c) + messageHash (0x20) } } /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x45` (`personal_sign` messages). * * The digest is calculated by prefixing an arbitrary `message` with * `"\x19Ethereum Signed Message:\n" + len(message)` and hashing the result. It corresponds with the * hash signed when using the https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] JSON-RPC method. * * See {ECDSA-recover}. */ function toEthSignedMessageHash(bytes memory message) internal pure returns (bytes32) { return keccak256(bytes.concat("\x19Ethereum Signed Message:\n", bytes(Strings.toString(message.length)), message)); } /** * @dev Returns the keccak256 digest of an EIP-191 signed data with version * `0x00` (data with intended validator). * * The digest is calculated by prefixing an arbitrary `data` with `"\x19\x00"` and the intended * `validator` address. Then hashing the result. * * See {ECDSA-recover}. */ function toDataWithIntendedValidatorHash(address validator, bytes memory data) internal pure returns (bytes32) { return keccak256(abi.encodePacked(hex"19_00", validator, data)); } /** * @dev Returns the keccak256 digest of an EIP-712 typed data (EIP-191 version `0x01`). * * The digest is calculated from a `domainSeparator` and a `structHash`, by prefixing them with * `\x19\x01` and hashing the result. It corresponds to the hash signed by the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] JSON-RPC method as part of EIP-712. * * See {ECDSA-recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32 digest) { /// @solidity memory-safe-assembly assembly { let ptr := mload(0x40) mstore(ptr, hex"19_01") mstore(add(ptr, 0x02), domainSeparator) mstore(add(ptr, 0x22), structHash) digest := keccak256(ptr, 0x42) } } }
//SPDX-License-Identifier: MIT pragma solidity ^0.8.25; interface IWETH { function deposit() external payable; function withdraw(uint256) external; function approve(address, uint256) external returns (bool); function transfer(address, uint256) external returns (bool); function transferFrom(address, address, uint256) external returns (bool); function balanceOf(address) external view returns (uint256); }
// 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets a `value` amount of tokens as the allowance of `spender` over the * caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// 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) (utils/Strings.sol) pragma solidity ^0.8.20; import {Math} from "./math/Math.sol"; import {SignedMath} from "./math/SignedMath.sol"; /** * @dev String operations. */ library Strings { bytes16 private constant HEX_DIGITS = "0123456789abcdef"; uint8 private constant ADDRESS_LENGTH = 20; /** * @dev The `value` string doesn't fit in the specified `length`. */ error StringsInsufficientHexLength(uint256 value, uint256 length); /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { unchecked { uint256 length = Math.log10(value) + 1; string memory buffer = new string(length); uint256 ptr; /// @solidity memory-safe-assembly assembly { ptr := add(buffer, add(32, length)) } while (true) { ptr--; /// @solidity memory-safe-assembly assembly { mstore8(ptr, byte(mod(value, 10), HEX_DIGITS)) } value /= 10; if (value == 0) break; } return buffer; } } /** * @dev Converts a `int256` to its ASCII `string` decimal representation. */ function toStringSigned(int256 value) internal pure returns (string memory) { return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value))); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { unchecked { return toHexString(value, Math.log256(value) + 1); } } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { uint256 localValue = value; bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = HEX_DIGITS[localValue & 0xf]; localValue >>= 4; } if (localValue != 0) { revert StringsInsufficientHexLength(value, length); } return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal * representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH); } /** * @dev Returns true if the two strings are equal. */ function equal(string memory a, string memory b) internal pure returns (bool) { return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol) pragma solidity ^0.8.20; /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @dev Muldiv operation overflow. */ error MathOverflowedMulDiv(); enum Rounding { Floor, // Toward negative infinity Ceil, // Toward positive infinity Trunc, // Toward zero Expand // Away from zero } /** * @dev Returns the addition of two unsigned integers, with an overflow flag. */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the largest of two numbers. */ function max(uint256 a, uint256 b) internal pure returns (uint256) { return a > b ? a : b; } /** * @dev Returns the smallest of two numbers. */ function min(uint256 a, uint256 b) internal pure returns (uint256) { return a < b ? a : b; } /** * @dev Returns the average of two numbers. The result is rounded towards * zero. */ function average(uint256 a, uint256 b) internal pure returns (uint256) { // (a + b) / 2 can overflow. return (a & b) + (a ^ b) / 2; } /** * @dev Returns the ceiling of the division of two numbers. * * This differs from standard division with `/` in that it rounds towards infinity instead * of rounding towards zero. */ function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) { if (b == 0) { // Guarantee the same behavior as in a regular Solidity division. return a / b; } // (a + b - 1) / b can overflow on addition, so we distribute. return a == 0 ? 0 : (a - 1) / b + 1; } /** * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or * denominator == 0. * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by * Uniswap Labs also under MIT license. */ function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) { unchecked { // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2^256 + prod0. uint256 prod0 = x * y; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(x, y, not(0)) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division. if (prod1 == 0) { // Solidity will revert if denominator == 0, unlike the div opcode on its own. // The surrounding unchecked block does not change this fact. // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic. return prod0 / denominator; } // Make sure the result is less than 2^256. Also prevents denominator == 0. if (denominator <= prod1) { revert MathOverflowedMulDiv(); } /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0]. uint256 remainder; assembly { // Compute remainder using mulmod. remainder := mulmod(x, y, denominator) // Subtract 256 bit number from 512 bit number. prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator and compute largest power of two divisor of denominator. // Always >= 1. See https://cs.stackexchange.com/q/138556/92363. uint256 twos = denominator & (0 - denominator); assembly { // Divide denominator by twos. denominator := div(denominator, twos) // Divide [prod1 prod0] by twos. prod0 := div(prod0, twos) // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one. twos := add(div(sub(0, twos), twos), 1) } // Shift in bits from prod1 into prod0. prod0 |= prod1 * twos; // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for // four bits. That is, denominator * inv = 1 mod 2^4. uint256 inverse = (3 * denominator) ^ 2; // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also // works in modular arithmetic, doubling the correct bits in each step. inverse *= 2 - denominator * inverse; // inverse mod 2^8 inverse *= 2 - denominator * inverse; // inverse mod 2^16 inverse *= 2 - denominator * inverse; // inverse mod 2^32 inverse *= 2 - denominator * inverse; // inverse mod 2^64 inverse *= 2 - denominator * inverse; // inverse mod 2^128 inverse *= 2 - denominator * inverse; // inverse mod 2^256 // Because the division is now exact we can divide by multiplying with the modular inverse of denominator. // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inverse; return result; } } /** * @notice Calculates x * y / denominator with full precision, following the selected rounding direction. */ function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) { uint256 result = mulDiv(x, y, denominator); if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) { result += 1; } return result; } /** * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded * towards zero. * * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11). */ function sqrt(uint256 a) internal pure returns (uint256) { if (a == 0) { return 0; } // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target. // // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`. // // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)` // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))` // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)` // // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit. uint256 result = 1 << (log2(a) >> 1); // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128, // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision // into the expected uint128 result. unchecked { result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; result = (result + a / result) >> 1; return min(result, a / result); } } /** * @notice Calculates sqrt(a), following the selected rounding direction. */ function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = sqrt(a); return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0); } } /** * @dev Return the log in base 2 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log2(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 128; } if (value >> 64 > 0) { value >>= 64; result += 64; } if (value >> 32 > 0) { value >>= 32; result += 32; } if (value >> 16 > 0) { value >>= 16; result += 16; } if (value >> 8 > 0) { value >>= 8; result += 8; } if (value >> 4 > 0) { value >>= 4; result += 4; } if (value >> 2 > 0) { value >>= 2; result += 2; } if (value >> 1 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 2, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log2(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log2(value); return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0); } } /** * @dev Return the log in base 10 of a positive value rounded towards zero. * Returns 0 if given 0. */ function log10(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >= 10 ** 64) { value /= 10 ** 64; result += 64; } if (value >= 10 ** 32) { value /= 10 ** 32; result += 32; } if (value >= 10 ** 16) { value /= 10 ** 16; result += 16; } if (value >= 10 ** 8) { value /= 10 ** 8; result += 8; } if (value >= 10 ** 4) { value /= 10 ** 4; result += 4; } if (value >= 10 ** 2) { value /= 10 ** 2; result += 2; } if (value >= 10 ** 1) { result += 1; } } return result; } /** * @dev Return the log in base 10, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log10(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log10(value); return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0); } } /** * @dev Return the log in base 256 of a positive value rounded towards zero. * Returns 0 if given 0. * * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string. */ function log256(uint256 value) internal pure returns (uint256) { uint256 result = 0; unchecked { if (value >> 128 > 0) { value >>= 128; result += 16; } if (value >> 64 > 0) { value >>= 64; result += 8; } if (value >> 32 > 0) { value >>= 32; result += 4; } if (value >> 16 > 0) { value >>= 16; result += 2; } if (value >> 8 > 0) { result += 1; } } return result; } /** * @dev Return the log in base 256, following the selected rounding direction, of a positive value. * Returns 0 if given 0. */ function log256(uint256 value, Rounding rounding) internal pure returns (uint256) { unchecked { uint256 result = log256(value); return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0); } } /** * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers. */ function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) { return uint8(rounding) % 2 == 1; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol) pragma solidity ^0.8.20; /** * @dev Standard signed math utilities missing in the Solidity language. */ library SignedMath { /** * @dev Returns the largest of two signed numbers. */ function max(int256 a, int256 b) internal pure returns (int256) { return a > b ? a : b; } /** * @dev Returns the smallest of two signed numbers. */ function min(int256 a, int256 b) internal pure returns (int256) { return a < b ? a : b; } /** * @dev Returns the average of two signed numbers without overflow. * The result is rounded towards zero. */ function average(int256 a, int256 b) internal pure returns (int256) { // Formula from the book "Hacker's Delight" int256 x = (a & b) + ((a ^ b) >> 1); return x + (int256(uint256(x) >> 255) & (a ^ b)); } /** * @dev Returns the absolute unsigned value of a signed value. */ function abs(int256 n) internal pure returns (uint256) { unchecked { // must be unchecked in order to support `n = type(int256).min` return uint256(n >= 0 ? n : -n); } } }
{ "remappings": [ "@openzeppelin/=lib/openzeppelin/", "@openzeppelin-upgradeable/=lib/openzeppelin-contracts-upgradeable/", "@blastup-token/=lib/blastup-token/src/", "@openzeppelin-contracts/=lib/blastup-token/lib/openzeppelin-contracts/", "@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/", "@openzeppelin/contracts/=lib/openzeppelin/contracts/", "blastup-token/=lib/blastup-token/", "ds-test/=lib/openzeppelin-contracts-upgradeable/lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/openzeppelin-contracts-upgradeable/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/", "openzeppelin-contracts/=lib/blastup-token/lib/openzeppelin-contracts/", "openzeppelin/=lib/openzeppelin/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "viaIR": true, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"admin","type":"address"},{"internalType":"address","name":"_signer","type":"address"},{"internalType":"address","name":"_depositReceiver","type":"address"},{"internalType":"address","name":"_wNative","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"ECDSAInvalidSignature","type":"error"},{"inputs":[{"internalType":"uint256","name":"length","type":"uint256"}],"name":"ECDSAInvalidSignatureLength","type":"error"},{"inputs":[{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"ECDSAInvalidSignatureS","type":"error"},{"inputs":[],"name":"EnforcedPause","type":"error"},{"inputs":[],"name":"ExpectedPause","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldDepositReceiver","type":"address"},{"indexed":false,"internalType":"address","name":"newDepositReceiver","type":"address"}],"name":"DepositReceiverChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"buyer","type":"address"},{"indexed":true,"internalType":"uint256","name":"indexedProjectId","type":"uint256"},{"indexed":false,"internalType":"contract IERC20","name":"depositToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"depositReceiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"nonce","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"router","type":"address"}],"name":"addRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"projectId","type":"uint256"},{"internalType":"contract IERC20","name":"depositToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"projectId","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"depositNative","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"projectId","type":"uint256"},{"internalType":"contract IERC20","name":"depositToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"address","name":"router","type":"address"},{"internalType":"bytes","name":"routerData","type":"bytes"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"depositNativeWithSwap","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"depositReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint256","name":"projectId","type":"uint256"},{"internalType":"contract IERC20","name":"depositToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"components":[{"internalType":"address","name":"router","type":"address"},{"internalType":"contract IERC20","name":"tokenIn","type":"address"},{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"internalType":"struct Deposit.SwapData","name":"swapData","type":"tuple"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"depositWithSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"projectId","type":"uint256"},{"internalType":"address","name":"depositToken","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"depositedAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"nonces","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"router","type":"address"}],"name":"removeRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"routersWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_depositReceiver","type":"address"}],"name":"setDepositReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSigner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"wNative","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a03461016957601f6116fe38819003918201601f19168301916001600160401b0383118484101761016e578084926080946040528339810103126101695761004781610184565b61005360208301610184565b9061006c606061006560408601610184565b9401610184565b6001600160a01b03909116908115610153577f509dca55ba36904df4e96f2765b393d972c377105a6191ae174f9ffd7312f4a693604093600054938551948160018060a01b0382167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a36001600160a81b031916176000908155600180546001600160a01b039384166001600160a01b0319918216179091556002805494909316931683179091556080929092529082526020820152a1604051611565908161019982396080518181816104a10152818161089901528181610abc0152610f190152f35b631e4fbdf760e01b600052600060045260246000fd5b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036101695756fe60806040526004361015610075575b361561001957600080fd5b60405162461bcd60e51b815260206004820152602e60248201527f426c61737455503a20796f752063616e206e6f742073656e642065746820746f60448201526d081d1a1a5cc818dbdb9d1c9858dd60921b6064820152608490fd5b60003560e01c806311dd1a0f146109db578063141a468c146109aa578063238ac9331461098157806324ca984e1461093c5780632b5d5e76146108c85780632d68efc9146108835780632fd6c02b1461081d5780633f4ba83a146107ac5780635c975abb1461078657806368742da61461067e5780636ae0b1541461063c5780636c19e783146105f9578063712192a7146105ba578063715018a6146105615780638456cb59146104ff578063865e1f1c1461042e57806386d280b9146102ee5780638da5cb5b146102c5578063b951f85214610218578063f2fde38b1461018f5763fc8c08510361000e573461018a57600036600319011261018a576002546040516001600160a01b039091168152602090f35b600080fd5b3461018a57602036600319011261018a576101a8610b2a565b6101b0611252565b6001600160a01b0316801561020257600080546001600160a01b03198116831782556001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09080a3005b631e4fbdf760e01b600052600060045260246000fd5b3461018a5761010036600319011261018a576004356001600160401b03811161018a57610249903690600401610ae7565b610251610b14565b60c4359260643592906001600160a01b038516850361018a5760e435916001600160401b03831161018a576102c3956102916102af943690600401610ae7565b93909261029c610bd6565b878760a435936084359360243591610bf6565b6002546001600160a01b03169033906112b7565b005b3461018a57600036600319011261018a576000546040516001600160a01b039091168152602090f35b3461018a5761012036600319011261018a576004356001600160401b03811161018a5761031f903690600401610ae7565b90610328610b14565b6064359160a435936001600160401b03851161018a5784360391608060031984011261018a5760e435916001600160a01b038316830361018a5761010435926001600160401b03841161018a576103866103a4943690600401610ae7565b939092610391610bd6565b888860c435936084359360243591610bf6565b60248401936103b285610bc2565b916103c660448301358094309033906112b7565b6004820135916001600160a01b038316830361018a576064810135916022190182121561018a5701946004860135956001600160401b03871161018a5760240195803603871361018a576102c39661042860018060a01b036002541693610bc2565b93610f98565b60c036600319011261018a576004356001600160401b03811161018a57610459903690600401610ae7565b906084356001600160a01b038116810361018a5760a435906001600160401b03821161018a576102c3936104946104e0933690600401610ae7565b92909161049f610bd6565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316956064359160443591349189916024359190610bf6565b6104e934610f0e565b60025434916001600160a01b039091169061127b565b3461018a57600036600319011261018a57610518611252565b610520610bd6565b6000805460ff60a01b1916600160a01b1790556040513381527f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25890602090a1005b3461018a57600036600319011261018a5761057a611252565b600080546001600160a01b0319811682556001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b3461018a57602036600319011261018a576001600160a01b036105db610b2a565b166000526005602052602060ff604060002054166040519015158152f35b3461018a57602036600319011261018a57610612610b2a565b61061a611252565b600180546001600160a01b0319166001600160a01b0392909216919091179055005b3461018a57602036600319011261018a57610655610b2a565b61065d611252565b6001600160a01b03166000908152600560205260409020805460ff19169055005b3461018a57602036600319011261018a57610697610b2a565b61069f611252565b6001600160a01b03168061070c5750600080808047335af16106bf610b92565b50156106c757005b60405162461bcd60e51b815260206004820152601b60248201527f426c61737455503a206661696c656420746f2073656e642045544800000000006044820152606490fd5b6040516370a0823160e01b815230600482015290602082602481845afa90811561077a57600091610744575b6102c39250339061127b565b90506020823d602011610772575b8161075f60209383610b40565b8101031261018a576102c3915190610738565b3d9150610752565b6040513d6000823e3d90fd5b3461018a57600036600319011261018a57602060ff60005460a01c166040519015158152f35b3461018a57600036600319011261018a576107c5611252565b60005460ff8160a01c161561080c5760ff60a01b19166000556040513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90602090a1005b638dfc202b60e01b60005260046000fd5b3461018a57606036600319011261018a576024356001600160a01b038116810361018a57610849610b14565b60043560009081526003602090815260408083206001600160a01b0395861684528252808320949093168252928352819020549051908152f35b3461018a57600036600319011261018a576040517f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168152602090f35b3461018a57602036600319011261018a576108e1610b2a565b6108e9611252565b600254604080516001600160a01b03808416825290931660208401819052927f509dca55ba36904df4e96f2765b393d972c377105a6191ae174f9ffd7312f4a69190a16001600160a01b03191617600255005b3461018a57602036600319011261018a57610955610b2a565b61095d611252565b6001600160a01b03166000908152600560205260409020805460ff19166001179055005b3461018a57600036600319011261018a576001546040516001600160a01b039091168152602090f35b3461018a57602036600319011261018a576004356000526004602052602060ff604060002054166040519015158152f35b61014036600319011261018a576004356001600160401b03811161018a57610a07903690600401610ae7565b610a0f610b14565b6064359160a4356001600160a01b038116810361018a5760c4356001600160401b03811161018a57610a45903690600401610ae7565b6101043596919390916001600160a01b038816880361018a5761012435916001600160401b03831161018a576102c398610a86610aa4943690600401610ae7565b939092610a91610bd6565b8a8a60e435936084359360243591610bf6565b610aad34610f0e565b60025434936001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081169492169291610f98565b9181601f8401121561018a578235916001600160401b03831161018a576020838186019501011161018a57565b604435906001600160a01b038216820361018a57565b600435906001600160a01b038216820361018a57565b90601f801991011681019081106001600160401b03821117610b6157604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b038111610b6157601f01601f191660200190565b3d15610bbd573d90610ba382610b77565b91610bb16040519384610b40565b82523d6000602084013e565b606090565b356001600160a01b038116810361018a5790565b60ff60005460a01c16610be557565b63d93c066560e01b60005260046000fd5b9091989794969293959687600052600460205260ff60406000205416610ebd57804211610e5c5760405160208101913360601b83528b603483015260018060a01b038716966bffffffffffffffffffffffff199060601b1660548301528860688301523060601b608883015246609c83015260bc8201528860dc820152898760fc830137610c9860fc828c81016000838201520301601f198101835282610b40565b5190207f19457468657265756d205369676e6564204d6573736167653a0a333200000000600052601c52603c600020610cd083610b77565b90610cde6040519283610b40565b838252368484011161018a576000602085610d0d96610d04968387013784010152611381565b909291926113bd565b6001546001600160a01b03908116911603610e085760008781526003602090815260408083206001600160a01b03868116855290835281842090851684529091529020805485810194908510610df2577fd8760d80fbcadf7ffc7e6ee47cff0919bac24f1c56dd115aa1b752d817205f849660c0958993558060005260046020526040600020600160ff1982541617905560018060a01b0360025416604051978896875260208701526040860152606085015260a060808501528160a08501528484013760008287018401526001600160a01b031694601f01601f19168101030190a3565b634e487b7160e01b600052601160045260246000fd5b60405162461bcd60e51b815260206004820152602660248201527f426c61737455503a207369676e617475726520766572696669636174696f6e2060448201526519985a5b195960d21b6064820152608490fd5b60405162461bcd60e51b815260206004820152603360248201527f426c61737455503a2074686520646561646c696e6520666f72207468697320736044820152721a59db985d1d5c99481a185cc81c185cdcd959606a1b6064820152608490fd5b60405162461bcd60e51b815260206004820152602360248201527f426c61737455503a2074686973206e6f6e636520697320616c726561647920756044820152621cd95960ea1b6064820152608490fd5b6000908190819081907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03165af1610f4b610b92565b5015610f5357565b60405162461bcd60e51b815260206004820152601e60248201527f426c61737455503a206661696c656420746f2077726170206e617469766500006044820152606490fd5b91909396959694929460018060a01b0383169485600052600560205260ff60406000205416156112025760405163095ea7b360e01b602082019081526001600160a01b03861660248301526044808301979097529581526000968796879491929190611005606484610b40565b82516001600160a01b038316918791829182855af190611023610b92565b826111d0575b50816111c5575b5015611180575b505050826040519384928337810182815203925af1611054610b92565b5015611144576040516370a0823160e01b8152306004820152926020846024816001600160a01b0385165afa93841561077a5760009461110d575b508284106110c8578284116110ab575b6110a9935061127b565b565b828403938411610df2576110c36110a994338361127b565b61109f565b60405162461bcd60e51b815260206004820152601d60248201527f426c61737455503a20616d6f756e74206f7574206c7420616d6f756e740000006044820152606490fd5b90936020823d60201161113c575b8161112860209383610b40565b81010312611139575051923861108f565b80fd5b3d915061111b565b60405162461bcd60e51b8152602060048201526014602482015273109b185cdd15540e881cddd85c0819985a5b195960621b6044820152606490fd5b6111b86111bd936040519063095ea7b360e01b60208301526024820152866044820152604481526111b2606482610b40565b82611313565b611313565b388080611037565b90503b151538611030565b805191925081159182156111e8575b50509038611029565b6111fb92506020809183010191016112fb565b38806111df565b60405162461bcd60e51b815260206004820152602260248201527f426c61737455503a20726f75746572206973206e6f742077686974656c697374604482015261195960f21b6064820152608490fd5b6000546001600160a01b0316330361126657565b63118cdaa760e01b6000523360045260246000fd5b60405163a9059cbb60e01b60208201526001600160a01b039290921660248301526044808301939093529181526110a9916111b8606483610b40565b6040516323b872dd60e01b60208201526001600160a01b0392831660248201529290911660448301526064808301939093529181526110a9916111b8608483610b40565b9081602091031261018a5751801515810361018a5790565b60008061133c9260018060a01b03169360208151910182865af1611335610b92565b90836114ce565b8051908115159182611366575b50506113525750565b635274afe760e01b60005260045260246000fd5b61137992506020809183010191016112fb565b153880611349565b81519190604183036113b2576113ab92506020820151906060604084015193015160001a90611445565b9192909190565b505060009160029190565b919091600481101561142f57806113d357509050565b6000600182036113ee5763f645eedf60e01b60005260046000fd5b506002810361140c578263fce698f760e01b60005260045260246000fd5b909160036000921461141c575050565b6335e2f38360e21b825260045260249150fd5b634e487b7160e01b600052602160045260246000fd5b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084116114c2579160209360809260ff60009560405194855216868401526040830152606082015282805260015afa1561077a576000516001600160a01b038116156114b65790600090600090565b50600090600190600090565b50505060009160039190565b906114f457508051156114e357805190602001fd5b630a12f52160e11b60005260046000fd5b81511580611526575b611505575090565b639996b31560e01b60009081526001600160a01b0391909116600452602490fd5b50803b156114fd56fea2646970667358221220e30d2b2ebaf27099b8dbe10d2ba503119cd13769d2e90bd53a9eb70b75e8c45064736f6c634300081a00330000000000000000000000000141a079703d3c4b8f89a0268c1e4901492f14c200000000000000000000000017724a359ed709e6a28c0f5287a2af4923d1d885000000000000000000000000754110a4ec50baa60be56b5393b746ec3d30c01e000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode
0x60806040526004361015610075575b361561001957600080fd5b60405162461bcd60e51b815260206004820152602e60248201527f426c61737455503a20796f752063616e206e6f742073656e642065746820746f60448201526d081d1a1a5cc818dbdb9d1c9858dd60921b6064820152608490fd5b60003560e01c806311dd1a0f146109db578063141a468c146109aa578063238ac9331461098157806324ca984e1461093c5780632b5d5e76146108c85780632d68efc9146108835780632fd6c02b1461081d5780633f4ba83a146107ac5780635c975abb1461078657806368742da61461067e5780636ae0b1541461063c5780636c19e783146105f9578063712192a7146105ba578063715018a6146105615780638456cb59146104ff578063865e1f1c1461042e57806386d280b9146102ee5780638da5cb5b146102c5578063b951f85214610218578063f2fde38b1461018f5763fc8c08510361000e573461018a57600036600319011261018a576002546040516001600160a01b039091168152602090f35b600080fd5b3461018a57602036600319011261018a576101a8610b2a565b6101b0611252565b6001600160a01b0316801561020257600080546001600160a01b03198116831782556001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09080a3005b631e4fbdf760e01b600052600060045260246000fd5b3461018a5761010036600319011261018a576004356001600160401b03811161018a57610249903690600401610ae7565b610251610b14565b60c4359260643592906001600160a01b038516850361018a5760e435916001600160401b03831161018a576102c3956102916102af943690600401610ae7565b93909261029c610bd6565b878760a435936084359360243591610bf6565b6002546001600160a01b03169033906112b7565b005b3461018a57600036600319011261018a576000546040516001600160a01b039091168152602090f35b3461018a5761012036600319011261018a576004356001600160401b03811161018a5761031f903690600401610ae7565b90610328610b14565b6064359160a435936001600160401b03851161018a5784360391608060031984011261018a5760e435916001600160a01b038316830361018a5761010435926001600160401b03841161018a576103866103a4943690600401610ae7565b939092610391610bd6565b888860c435936084359360243591610bf6565b60248401936103b285610bc2565b916103c660448301358094309033906112b7565b6004820135916001600160a01b038316830361018a576064810135916022190182121561018a5701946004860135956001600160401b03871161018a5760240195803603871361018a576102c39661042860018060a01b036002541693610bc2565b93610f98565b60c036600319011261018a576004356001600160401b03811161018a57610459903690600401610ae7565b906084356001600160a01b038116810361018a5760a435906001600160401b03821161018a576102c3936104946104e0933690600401610ae7565b92909161049f610bd6565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316956064359160443591349189916024359190610bf6565b6104e934610f0e565b60025434916001600160a01b039091169061127b565b3461018a57600036600319011261018a57610518611252565b610520610bd6565b6000805460ff60a01b1916600160a01b1790556040513381527f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25890602090a1005b3461018a57600036600319011261018a5761057a611252565b600080546001600160a01b0319811682556001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a3005b3461018a57602036600319011261018a576001600160a01b036105db610b2a565b166000526005602052602060ff604060002054166040519015158152f35b3461018a57602036600319011261018a57610612610b2a565b61061a611252565b600180546001600160a01b0319166001600160a01b0392909216919091179055005b3461018a57602036600319011261018a57610655610b2a565b61065d611252565b6001600160a01b03166000908152600560205260409020805460ff19169055005b3461018a57602036600319011261018a57610697610b2a565b61069f611252565b6001600160a01b03168061070c5750600080808047335af16106bf610b92565b50156106c757005b60405162461bcd60e51b815260206004820152601b60248201527f426c61737455503a206661696c656420746f2073656e642045544800000000006044820152606490fd5b6040516370a0823160e01b815230600482015290602082602481845afa90811561077a57600091610744575b6102c39250339061127b565b90506020823d602011610772575b8161075f60209383610b40565b8101031261018a576102c3915190610738565b3d9150610752565b6040513d6000823e3d90fd5b3461018a57600036600319011261018a57602060ff60005460a01c166040519015158152f35b3461018a57600036600319011261018a576107c5611252565b60005460ff8160a01c161561080c5760ff60a01b19166000556040513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90602090a1005b638dfc202b60e01b60005260046000fd5b3461018a57606036600319011261018a576024356001600160a01b038116810361018a57610849610b14565b60043560009081526003602090815260408083206001600160a01b0395861684528252808320949093168252928352819020549051908152f35b3461018a57600036600319011261018a576040517f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b03168152602090f35b3461018a57602036600319011261018a576108e1610b2a565b6108e9611252565b600254604080516001600160a01b03808416825290931660208401819052927f509dca55ba36904df4e96f2765b393d972c377105a6191ae174f9ffd7312f4a69190a16001600160a01b03191617600255005b3461018a57602036600319011261018a57610955610b2a565b61095d611252565b6001600160a01b03166000908152600560205260409020805460ff19166001179055005b3461018a57600036600319011261018a576001546040516001600160a01b039091168152602090f35b3461018a57602036600319011261018a576004356000526004602052602060ff604060002054166040519015158152f35b61014036600319011261018a576004356001600160401b03811161018a57610a07903690600401610ae7565b610a0f610b14565b6064359160a4356001600160a01b038116810361018a5760c4356001600160401b03811161018a57610a45903690600401610ae7565b6101043596919390916001600160a01b038816880361018a5761012435916001600160401b03831161018a576102c398610a86610aa4943690600401610ae7565b939092610a91610bd6565b8a8a60e435936084359360243591610bf6565b610aad34610f0e565b60025434936001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281169492169291610f98565b9181601f8401121561018a578235916001600160401b03831161018a576020838186019501011161018a57565b604435906001600160a01b038216820361018a57565b600435906001600160a01b038216820361018a57565b90601f801991011681019081106001600160401b03821117610b6157604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b038111610b6157601f01601f191660200190565b3d15610bbd573d90610ba382610b77565b91610bb16040519384610b40565b82523d6000602084013e565b606090565b356001600160a01b038116810361018a5790565b60ff60005460a01c16610be557565b63d93c066560e01b60005260046000fd5b9091989794969293959687600052600460205260ff60406000205416610ebd57804211610e5c5760405160208101913360601b83528b603483015260018060a01b038716966bffffffffffffffffffffffff199060601b1660548301528860688301523060601b608883015246609c83015260bc8201528860dc820152898760fc830137610c9860fc828c81016000838201520301601f198101835282610b40565b5190207f19457468657265756d205369676e6564204d6573736167653a0a333200000000600052601c52603c600020610cd083610b77565b90610cde6040519283610b40565b838252368484011161018a576000602085610d0d96610d04968387013784010152611381565b909291926113bd565b6001546001600160a01b03908116911603610e085760008781526003602090815260408083206001600160a01b03868116855290835281842090851684529091529020805485810194908510610df2577fd8760d80fbcadf7ffc7e6ee47cff0919bac24f1c56dd115aa1b752d817205f849660c0958993558060005260046020526040600020600160ff1982541617905560018060a01b0360025416604051978896875260208701526040860152606085015260a060808501528160a08501528484013760008287018401526001600160a01b031694601f01601f19168101030190a3565b634e487b7160e01b600052601160045260246000fd5b60405162461bcd60e51b815260206004820152602660248201527f426c61737455503a207369676e617475726520766572696669636174696f6e2060448201526519985a5b195960d21b6064820152608490fd5b60405162461bcd60e51b815260206004820152603360248201527f426c61737455503a2074686520646561646c696e6520666f72207468697320736044820152721a59db985d1d5c99481a185cc81c185cdcd959606a1b6064820152608490fd5b60405162461bcd60e51b815260206004820152602360248201527f426c61737455503a2074686973206e6f6e636520697320616c726561647920756044820152621cd95960ea1b6064820152608490fd5b6000908190819081907f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b03165af1610f4b610b92565b5015610f5357565b60405162461bcd60e51b815260206004820152601e60248201527f426c61737455503a206661696c656420746f2077726170206e617469766500006044820152606490fd5b91909396959694929460018060a01b0383169485600052600560205260ff60406000205416156112025760405163095ea7b360e01b602082019081526001600160a01b03861660248301526044808301979097529581526000968796879491929190611005606484610b40565b82516001600160a01b038316918791829182855af190611023610b92565b826111d0575b50816111c5575b5015611180575b505050826040519384928337810182815203925af1611054610b92565b5015611144576040516370a0823160e01b8152306004820152926020846024816001600160a01b0385165afa93841561077a5760009461110d575b508284106110c8578284116110ab575b6110a9935061127b565b565b828403938411610df2576110c36110a994338361127b565b61109f565b60405162461bcd60e51b815260206004820152601d60248201527f426c61737455503a20616d6f756e74206f7574206c7420616d6f756e740000006044820152606490fd5b90936020823d60201161113c575b8161112860209383610b40565b81010312611139575051923861108f565b80fd5b3d915061111b565b60405162461bcd60e51b8152602060048201526014602482015273109b185cdd15540e881cddd85c0819985a5b195960621b6044820152606490fd5b6111b86111bd936040519063095ea7b360e01b60208301526024820152866044820152604481526111b2606482610b40565b82611313565b611313565b388080611037565b90503b151538611030565b805191925081159182156111e8575b50509038611029565b6111fb92506020809183010191016112fb565b38806111df565b60405162461bcd60e51b815260206004820152602260248201527f426c61737455503a20726f75746572206973206e6f742077686974656c697374604482015261195960f21b6064820152608490fd5b6000546001600160a01b0316330361126657565b63118cdaa760e01b6000523360045260246000fd5b60405163a9059cbb60e01b60208201526001600160a01b039290921660248301526044808301939093529181526110a9916111b8606483610b40565b6040516323b872dd60e01b60208201526001600160a01b0392831660248201529290911660448301526064808301939093529181526110a9916111b8608483610b40565b9081602091031261018a5751801515810361018a5790565b60008061133c9260018060a01b03169360208151910182865af1611335610b92565b90836114ce565b8051908115159182611366575b50506113525750565b635274afe760e01b60005260045260246000fd5b61137992506020809183010191016112fb565b153880611349565b81519190604183036113b2576113ab92506020820151906060604084015193015160001a90611445565b9192909190565b505060009160029190565b919091600481101561142f57806113d357509050565b6000600182036113ee5763f645eedf60e01b60005260046000fd5b506002810361140c578263fce698f760e01b60005260045260246000fd5b909160036000921461141c575050565b6335e2f38360e21b825260045260249150fd5b634e487b7160e01b600052602160045260246000fd5b91907f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a084116114c2579160209360809260ff60009560405194855216868401526040830152606082015282805260015afa1561077a576000516001600160a01b038116156114b65790600090600090565b50600090600190600090565b50505060009160039190565b906114f457508051156114e357805190602001fd5b630a12f52160e11b60005260046000fd5b81511580611526575b611505575090565b639996b31560e01b60009081526001600160a01b0391909116600452602490fd5b50803b156114fd56fea2646970667358221220e30d2b2ebaf27099b8dbe10d2ba503119cd13769d2e90bd53a9eb70b75e8c45064736f6c634300081a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000141a079703d3c4b8f89a0268c1e4901492f14c200000000000000000000000017724a359ed709e6a28c0f5287a2af4923d1d885000000000000000000000000754110a4ec50baa60be56b5393b746ec3d30c01e000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
-----Decoded View---------------
Arg [0] : admin (address): 0x0141A079703d3C4b8f89A0268c1E4901492f14C2
Arg [1] : _signer (address): 0x17724a359ED709e6a28C0f5287a2Af4923D1d885
Arg [2] : _depositReceiver (address): 0x754110a4eC50BAa60be56B5393B746EC3d30c01E
Arg [3] : _wNative (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000141a079703d3c4b8f89a0268c1e4901492f14c2
Arg [1] : 00000000000000000000000017724a359ed709e6a28c0f5287a2af4923d1d885
Arg [2] : 000000000000000000000000754110a4ec50baa60be56b5393b746ec3d30c01e
Arg [3] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
BASE | 100.00% | $3,252.15 | 0.00008511 | $0.276784 |
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.