ETH Price: $2,111.07 (-3.23%)

Contract

0x000000e92D78D90000007F0082006FDA09BD5f11
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Add Stake191791842024-02-07 22:06:47770 days ago1707343607IN
Alchemy: Multi Owner Modular Account Factory
0.1 ETH0.0032586840

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Method Block
From
To
0x60406080246367932026-03-11 21:04:597 days ago1773263099
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080245772492026-03-03 13:32:3516 days ago1772544755
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080244672642026-02-16 5:23:1131 days ago1771219391
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080244148282026-02-08 21:46:1138 days ago1770587171
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080244143222026-02-08 20:04:2338 days ago1770581063
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080242939372026-01-23 0:34:3555 days ago1769128475
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080242828172026-01-21 11:18:5957 days ago1768994339
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080242795672026-01-21 0:26:3557 days ago1768955195
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080242770632026-01-20 16:03:4758 days ago1768925027
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080242755882026-01-20 11:08:1158 days ago1768907291
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080242717602026-01-19 22:18:4758 days ago1768861127
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080242715262026-01-19 21:31:5958 days ago1768858319
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080242715162026-01-19 21:29:5958 days ago1768858199
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080242384402026-01-15 6:52:3563 days ago1768459955
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080242361102026-01-14 23:04:3563 days ago1768431875
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080242271792026-01-13 17:09:3564 days ago1768324175
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080237673322025-11-10 7:20:35129 days ago1762759235
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080234339992025-09-24 16:10:23176 days ago1758730223
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080234178732025-09-22 10:08:47178 days ago1758535727
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080233488262025-09-12 18:38:23187 days ago1757702303
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080232773262025-09-02 18:51:35197 days ago1756839095
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080232192972025-08-25 16:24:23206 days ago1756139063
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080231766612025-08-19 17:38:11211 days ago1755625091
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080231698122025-08-18 18:44:11212 days ago1755542651
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
0x60406080228473282025-07-04 17:24:47257 days ago1751649887
Alchemy: Multi Owner Modular Account Factory
 Contract Creation0 ETH
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MultiOwnerModularAccountFactory

Compiler Version
v0.8.22+commit.4fc1097e

Optimization Enabled:
Yes with 900 runs

Other Settings:
paris EvmVersion
// This file is part of Modular Account.
//
// Copyright 2024 Alchemy Insights, Inc.
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
// This program is free software: you can redistribute it and/or modify it under the terms of the GNU General
// Public License as published by the Free Software Foundation, either version 3 of the License, or (at your
// option) any later version.
//
// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
// more details.
//
// You should have received a copy of the GNU General Public License along with this program. If not, see
// <https://www.gnu.org/licenses/>.

pragma solidity ^0.8.22;

import {Ownable2Step} from "@openzeppelin/contracts/access/Ownable2Step.sol";
import {ERC1967Proxy} from "@openzeppelin/contracts/proxy/ERC1967/ERC1967Proxy.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {Create2} from "@openzeppelin/contracts/utils/Create2.sol";

import {FactoryHelpers} from "../helpers/FactoryHelpers.sol";
import {IEntryPoint} from "../interfaces/erc4337/IEntryPoint.sol";
import {IAccountInitializable} from "../interfaces/IAccountInitializable.sol";

/// @title Multi Owner Plugin Modular Account Factory
/// @author Alchemy
/// @notice Factory for upgradeable modular accounts with MultiOwnerPlugin installed.
/// @dev There is a reliance on the assumption that the plugin manifest will remain static, following ERC-6900. If
/// this assumption is broken then account deployments would be bricked.
contract MultiOwnerModularAccountFactory is Ownable2Step {
    IEntryPoint public immutable ENTRYPOINT;
    address public immutable MULTI_OWNER_PLUGIN;
    address public immutable IMPL;
    bytes32 internal immutable _MULTI_OWNER_PLUGIN_MANIFEST_HASH;
    uint256 internal constant _MAX_OWNERS_ON_CREATION = 100;

    error InvalidAction();
    error InvalidOwner();
    error OwnersArrayEmpty();
    error OwnersLimitExceeded();
    error TransferFailed();

    /// @notice Constructor for the factory
    constructor(
        address owner,
        address multiOwnerPlugin,
        address implementation,
        bytes32 multiOwnerPluginManifestHash,
        IEntryPoint entryPoint
    ) {
        _transferOwnership(owner);
        MULTI_OWNER_PLUGIN = multiOwnerPlugin;
        IMPL = implementation;
        _MULTI_OWNER_PLUGIN_MANIFEST_HASH = multiOwnerPluginManifestHash;
        ENTRYPOINT = entryPoint;
    }

    /// @notice Allow contract to receive native currency
    receive() external payable {}

    /// @notice Create a modular smart contract account
    /// @dev Account address depends on salt, impl addr, plugins and plugin init data
    /// @dev The owner array must be in strictly ascending order and not include the 0 address.
    /// @param salt salt for create2
    /// @param owners address array of the owners
    function createAccount(uint256 salt, address[] calldata owners) external returns (address addr) {
        if (!FactoryHelpers.isValidOwnerArray(owners)) {
            revert InvalidOwner();
        }

        bytes[] memory pluginInitBytes = new bytes[](1);
        pluginInitBytes[0] = abi.encode(owners);

        bytes32 combinedSalt = FactoryHelpers.getCombinedSalt(salt, pluginInitBytes[0]);
        addr = Create2.computeAddress(
            combinedSalt, keccak256(abi.encodePacked(type(ERC1967Proxy).creationCode, abi.encode(IMPL, "")))
        );

        // short circuit if exists
        if (addr.code.length == 0) {
            // not necessary to check return addr of this arg since next call fails if so
            new ERC1967Proxy{salt: combinedSalt}(IMPL, "");

            address[] memory plugins = new address[](1);
            plugins[0] = MULTI_OWNER_PLUGIN;

            bytes32[] memory manifestHashes = new bytes32[](1);
            manifestHashes[0] = _MULTI_OWNER_PLUGIN_MANIFEST_HASH;

            IAccountInitializable(addr).initialize(plugins, abi.encode(manifestHashes, pluginInitBytes));
        }
    }

    /// @notice Add stake to an entry point
    /// @dev only callable by owner
    /// @param unstakeDelay unstake delay for the stake
    /// @param amount amount of native currency to stake
    function addStake(uint32 unstakeDelay, uint256 amount) external payable onlyOwner {
        ENTRYPOINT.addStake{value: amount}(unstakeDelay);
    }

    /// @notice Start unlocking stake for an entry point
    /// @dev only callable by owner
    function unlockStake() external onlyOwner {
        ENTRYPOINT.unlockStake();
    }

    /// @notice Withdraw stake from an entry point
    /// @dev only callable by owner
    /// @param to address to send native currency to
    function withdrawStake(address payable to) external onlyOwner {
        ENTRYPOINT.withdrawStake(to);
    }

    /// @notice Withdraw funds from this contract
    /// @dev can withdraw stuck erc20s or native currency
    /// @param to address to send erc20s or native currency to
    /// @param token address of the token to withdraw, 0 address for native currency
    /// @param amount amount of the token to withdraw in case of rebasing tokens
    function withdraw(address payable to, address token, uint256 amount) external onlyOwner {
        if (token == address(0)) {
            (bool success,) = to.call{value: address(this).balance}("");
            if (!success) {
                revert TransferFailed();
            }
        } else {
            SafeERC20.safeTransfer(IERC20(token), to, amount);
        }
    }

    /// @notice Getter for counterfactual address based on input params
    /// @dev The owner array must be in strictly ascending order and not include the 0 address.
    /// @param salt salt for additional entropy for create2
    /// @param owners array of addresses of the owner
    /// @return address of counterfactual account
    function getAddress(uint256 salt, address[] calldata owners) external view returns (address) {
        // Array can't be empty.
        if (owners.length == 0) {
            revert OwnersArrayEmpty();
        }

        // This protects against counterfactuals being generated against an exceptionally large number of owners
        // that may exceed the block gas limit when actually creating the account.
        if (owners.length > _MAX_OWNERS_ON_CREATION) {
            revert OwnersLimitExceeded();
        }

        if (!FactoryHelpers.isValidOwnerArray(owners)) {
            revert InvalidOwner();
        }

        return Create2.computeAddress(
            FactoryHelpers.getCombinedSalt(salt, abi.encode(owners)),
            keccak256(abi.encodePacked(type(ERC1967Proxy).creationCode, abi.encode(IMPL, "")))
        );
    }

    /// @notice Overriding to disable renounce ownership in Ownable
    function renounceOwnership() public view override onlyOwner {
        revert InvalidAction();
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable2Step.sol)

pragma solidity ^0.8.0;

import "./Ownable.sol";

/**
 * @dev Contract module which provides access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership} and {acceptOwnership}.
 *
 * This module is used through inheritance. It will make available all functions
 * from parent (Ownable).
 */
abstract contract Ownable2Step is Ownable {
    address private _pendingOwner;

    event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Returns the address of the pending owner.
     */
    function pendingOwner() public view virtual returns (address) {
        return _pendingOwner;
    }

    /**
     * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one.
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual override onlyOwner {
        _pendingOwner = newOwner;
        emit OwnershipTransferStarted(owner(), newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner.
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual override {
        delete _pendingOwner;
        super._transferOwnership(newOwner);
    }

    /**
     * @dev The new owner accepts the ownership transfer.
     */
    function acceptOwnership() public virtual {
        address sender = _msgSender();
        require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner");
        _transferOwnership(sender);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (proxy/ERC1967/ERC1967Proxy.sol)

pragma solidity ^0.8.0;

import "../Proxy.sol";
import "./ERC1967Upgrade.sol";

/**
 * @dev This contract implements an upgradeable proxy. It is upgradeable because calls are delegated to an
 * implementation address that can be changed. This address is stored in storage in the location specified by
 * https://eips.ethereum.org/EIPS/eip-1967[EIP1967], so that it doesn't conflict with the storage layout of the
 * implementation behind the proxy.
 */
contract ERC1967Proxy is Proxy, ERC1967Upgrade {
    /**
     * @dev Initializes the upgradeable proxy with an initial implementation specified by `_logic`.
     *
     * If `_data` is nonempty, it's used as data in a delegate call to `_logic`. This will typically be an encoded
     * function call, and allows initializing the storage of the proxy like a Solidity constructor.
     */
    constructor(address _logic, bytes memory _data) payable {
        _upgradeToAndCall(_logic, _data, false);
    }

    /**
     * @dev Returns the current implementation address.
     */
    function _implementation() internal view virtual override returns (address impl) {
        return ERC1967Upgrade._getImplementation();
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @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 amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/IERC20Permit.sol";
import "../../../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 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.encodeWithSelector(token.transfer.selector, 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.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(IERC20 token, address spender, uint256 value) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    /**
     * @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);
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value));
    }

    /**
     * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value,
     * non-reverting calls are assumed to be successful.
     */
    function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value));
        }
    }

    /**
     * @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.encodeWithSelector(token.approve.selector, spender, value);

        if (!_callOptionalReturnBool(token, approvalCall)) {
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0));
            _callOptionalReturn(token, approvalCall);
        }
    }

    /**
     * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`.
     * Revert on invalid signature.
     */
    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @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, "SafeERC20: low-level call failed");
        require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
    }

    /**
     * @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.isContract(address(token));
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/Create2.sol)

pragma solidity ^0.8.0;

/**
 * @dev Helper to make usage of the `CREATE2` EVM opcode easier and safer.
 * `CREATE2` can be used to compute in advance the address where a smart
 * contract will be deployed, which allows for interesting new mechanisms known
 * as 'counterfactual interactions'.
 *
 * See the https://eips.ethereum.org/EIPS/eip-1014#motivation[EIP] for more
 * information.
 */
library Create2 {
    /**
     * @dev Deploys a contract using `CREATE2`. The address where the contract
     * will be deployed can be known in advance via {computeAddress}.
     *
     * The bytecode for a contract can be obtained from Solidity with
     * `type(contractName).creationCode`.
     *
     * Requirements:
     *
     * - `bytecode` must not be empty.
     * - `salt` must have not been used for `bytecode` already.
     * - the factory must have a balance of at least `amount`.
     * - if `amount` is non-zero, `bytecode` must have a `payable` constructor.
     */
    function deploy(uint256 amount, bytes32 salt, bytes memory bytecode) internal returns (address addr) {
        require(address(this).balance >= amount, "Create2: insufficient balance");
        require(bytecode.length != 0, "Create2: bytecode length is zero");
        /// @solidity memory-safe-assembly
        assembly {
            addr := create2(amount, add(bytecode, 0x20), mload(bytecode), salt)
        }
        require(addr != address(0), "Create2: Failed on deploy");
    }

    /**
     * @dev Returns the address where a contract will be stored if deployed via {deploy}. Any change in the
     * `bytecodeHash` or `salt` will result in a new destination address.
     */
    function computeAddress(bytes32 salt, bytes32 bytecodeHash) internal view returns (address) {
        return computeAddress(salt, bytecodeHash, address(this));
    }

    /**
     * @dev Returns the address where a contract will be stored if deployed via {deploy} from a contract located at
     * `deployer`. If `deployer` is this contract's address, returns the same value as {computeAddress}.
     */
    function computeAddress(bytes32 salt, bytes32 bytecodeHash, address deployer) internal pure returns (address addr) {
        /// @solidity memory-safe-assembly
        assembly {
            let ptr := mload(0x40) // Get free memory pointer

            // |                   | ↓ ptr ...  ↓ ptr + 0x0B (start) ...  ↓ ptr + 0x20 ...  ↓ ptr + 0x40 ...   |
            // |-------------------|---------------------------------------------------------------------------|
            // | bytecodeHash      |                                                        CCCCCCCCCCCCC...CC |
            // | salt              |                                      BBBBBBBBBBBBB...BB                   |
            // | deployer          | 000000...0000AAAAAAAAAAAAAAAAAAA...AA                                     |
            // | 0xFF              |            FF                                                             |
            // |-------------------|---------------------------------------------------------------------------|
            // | memory            | 000000...00FFAAAAAAAAAAAAAAAAAAA...AABBBBBBBBBBBBB...BBCCCCCCCCCCCCC...CC |
            // | keccak(start, 85) |            ↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑↑ |

            mstore(add(ptr, 0x40), bytecodeHash)
            mstore(add(ptr, 0x20), salt)
            mstore(ptr, deployer) // Right-aligned with 12 preceding garbage bytes
            let start := add(ptr, 0x0b) // The hashed data starts at the final garbage byte which we will set to 0xff
            mstore8(start, 0xff)
            addr := keccak256(start, 85)
        }
    }
}

// This file is part of Modular Account.
//
// Copyright 2024 Alchemy Insights, Inc.
//
// SPDX-License-Identifier: GPL-3.0-or-later
//
// This program is free software: you can redistribute it and/or modify it under the terms of the GNU General
// Public License as published by the Free Software Foundation, either version 3 of the License, or (at your
// option) any later version.
//
// This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the
// implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
// more details.
//
// You should have received a copy of the GNU General Public License along with this program. If not, see
// <https://www.gnu.org/licenses/>.

pragma solidity ^0.8.22;

library FactoryHelpers {
    /// @dev The owner array must be in strictly ascending order and not include the 0 address.
    /// @param owners encoded bytes array of owner addresses
    /// @return bool if the owners array is valid
    function isValidOwnerArray(address[] calldata owners) internal pure returns (bool) {
        address currentOwnerValue;
        for (uint256 i = 0; i < owners.length; ++i) {
            if (owners[i] <= currentOwnerValue) {
                return false;
            }
            currentOwnerValue = owners[i];
        }
        return true;
    }

    /// @notice Gets this factory's create2 salt based on the input params
    /// @param salt additional entropy for create2
    /// @param owners encoded bytes array of owner addresses
    /// @return combinedSalt of salt and owners
    function getCombinedSalt(uint256 salt, bytes memory owners) internal pure returns (bytes32) {
        return keccak256(abi.encode(salt, owners));
    }
}

// This work is marked with CC0 1.0 Universal.
//
// SPDX-License-Identifier: CC0-1.0
//
// To view a copy of this license, visit http://creativecommons.org/publicdomain/zero/1.0

pragma solidity ^0.8.22;

import {UserOperation} from "./UserOperation.sol";

/// @notice Interface for the ERC-4337 entry point
interface IEntryPoint {
    error FailedOp(uint256 i, string s);

    function depositTo(address) external payable;
    function addStake(uint32) external payable;
    function unlockStake() external;
    function withdrawStake(address payable) external;
    function handleOps(UserOperation[] calldata, address payable) external;
    function getNonce(address, uint192) external view returns (uint256);
    function getUserOpHash(UserOperation calldata) external view returns (bytes32);
}

// This work is marked with CC0 1.0 Universal.
//
// SPDX-License-Identifier: CC0-1.0
//
// To view a copy of this license, visit http://creativecommons.org/publicdomain/zero/1.0

pragma solidity ^0.8.22;

/// @title Account Initializable Interface
interface IAccountInitializable {
    /// @notice Initialize the account with a set of plugins.
    /// @dev No dependencies may be provided with this installation.
    /// @param plugins The plugins to install.
    /// @param pluginInitData The plugin init data for each plugin.
    function initialize(address[] calldata plugins, bytes calldata pluginInitData) external;
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../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.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @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 {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @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 {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (proxy/Proxy.sol)

pragma solidity ^0.8.0;

/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
 * be specified by overriding the virtual {_implementation} function.
 *
 * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
 * different contract through the {_delegate} function.
 *
 * The success and return data of the delegated call will be returned back to the caller of the proxy.
 */
abstract contract Proxy {
    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internal call site, it will return directly to the external caller.
     */
    function _delegate(address implementation) internal virtual {
        assembly {
            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas(), implementation, 0, calldatasize(), 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }

    /**
     * @dev This is a virtual function that should be overridden so it returns the address to which the fallback function
     * and {_fallback} should delegate.
     */
    function _implementation() internal view virtual returns (address);

    /**
     * @dev Delegates the current call to the address returned by `_implementation()`.
     *
     * This function does not return to its internal call site, it will return directly to the external caller.
     */
    function _fallback() internal virtual {
        _beforeFallback();
        _delegate(_implementation());
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
     * function in the contract matches the call data.
     */
    fallback() external payable virtual {
        _fallback();
    }

    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if call data
     * is empty.
     */
    receive() external payable virtual {
        _fallback();
    }

    /**
     * @dev Hook that is called before falling back to the implementation. Can happen as part of a manual `_fallback`
     * call, or as part of the Solidity `fallback` or `receive` functions.
     *
     * If overridden should call `super._beforeFallback()`.
     */
    function _beforeFallback() internal virtual {}
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (proxy/ERC1967/ERC1967Upgrade.sol)

pragma solidity ^0.8.2;

import "../beacon/IBeacon.sol";
import "../../interfaces/IERC1967.sol";
import "../../interfaces/draft-IERC1822.sol";
import "../../utils/Address.sol";
import "../../utils/StorageSlot.sol";

/**
 * @dev This abstract contract provides getters and event emitting update functions for
 * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] slots.
 *
 * _Available since v4.1._
 */
abstract contract ERC1967Upgrade is IERC1967 {
    // This is the keccak-256 hash of "eip1967.proxy.rollback" subtracted by 1
    bytes32 private constant _ROLLBACK_SLOT = 0x4910fdfa16fed3260ed0e7147f7cc6da11a60208b5b9406d12a635614ffd9143;

    /**
     * @dev Storage slot with the address of the current implementation.
     * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;

    /**
     * @dev Returns the current implementation address.
     */
    function _getImplementation() internal view returns (address) {
        return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 implementation slot.
     */
    function _setImplementation(address newImplementation) private {
        require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
        StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
    }

    /**
     * @dev Perform implementation upgrade
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeTo(address newImplementation) internal {
        _setImplementation(newImplementation);
        emit Upgraded(newImplementation);
    }

    /**
     * @dev Perform implementation upgrade with additional setup call.
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeToAndCall(address newImplementation, bytes memory data, bool forceCall) internal {
        _upgradeTo(newImplementation);
        if (data.length > 0 || forceCall) {
            Address.functionDelegateCall(newImplementation, data);
        }
    }

    /**
     * @dev Perform implementation upgrade with security checks for UUPS proxies, and additional setup call.
     *
     * Emits an {Upgraded} event.
     */
    function _upgradeToAndCallUUPS(address newImplementation, bytes memory data, bool forceCall) internal {
        // Upgrades from old implementations will perform a rollback test. This test requires the new
        // implementation to upgrade back to the old, non-ERC1822 compliant, implementation. Removing
        // this special case will break upgrade paths from old UUPS implementation to new ones.
        if (StorageSlot.getBooleanSlot(_ROLLBACK_SLOT).value) {
            _setImplementation(newImplementation);
        } else {
            try IERC1822Proxiable(newImplementation).proxiableUUID() returns (bytes32 slot) {
                require(slot == _IMPLEMENTATION_SLOT, "ERC1967Upgrade: unsupported proxiableUUID");
            } catch {
                revert("ERC1967Upgrade: new implementation is not UUPS");
            }
            _upgradeToAndCall(newImplementation, data, forceCall);
        }
    }

    /**
     * @dev Storage slot with the admin of the contract.
     * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
     * validated in the constructor.
     */
    bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;

    /**
     * @dev Returns the current admin.
     */
    function _getAdmin() internal view returns (address) {
        return StorageSlot.getAddressSlot(_ADMIN_SLOT).value;
    }

    /**
     * @dev Stores a new address in the EIP1967 admin slot.
     */
    function _setAdmin(address newAdmin) private {
        require(newAdmin != address(0), "ERC1967: new admin is the zero address");
        StorageSlot.getAddressSlot(_ADMIN_SLOT).value = newAdmin;
    }

    /**
     * @dev Changes the admin of the proxy.
     *
     * Emits an {AdminChanged} event.
     */
    function _changeAdmin(address newAdmin) internal {
        emit AdminChanged(_getAdmin(), newAdmin);
        _setAdmin(newAdmin);
    }

    /**
     * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
     * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.
     */
    bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;

    /**
     * @dev Returns the current beacon.
     */
    function _getBeacon() internal view returns (address) {
        return StorageSlot.getAddressSlot(_BEACON_SLOT).value;
    }

    /**
     * @dev Stores a new beacon in the EIP1967 beacon slot.
     */
    function _setBeacon(address newBeacon) private {
        require(Address.isContract(newBeacon), "ERC1967: new beacon is not a contract");
        require(
            Address.isContract(IBeacon(newBeacon).implementation()),
            "ERC1967: beacon implementation is not a contract"
        );
        StorageSlot.getAddressSlot(_BEACON_SLOT).value = newBeacon;
    }

    /**
     * @dev Perform beacon upgrade with additional setup call. Note: This upgrades the address of the beacon, it does
     * not upgrade the implementation contained in the beacon (see {UpgradeableBeacon-_setImplementation} for that).
     *
     * Emits a {BeaconUpgraded} event.
     */
    function _upgradeBeaconToAndCall(address newBeacon, bytes memory data, bool forceCall) internal {
        _setBeacon(newBeacon);
        emit BeaconUpgraded(newBeacon);
        if (data.length > 0 || forceCall) {
            Address.functionDelegateCall(IBeacon(newBeacon).implementation(), data);
        }
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @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 v4.9.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     *
     * Furthermore, `isContract` will also return true if the target contract within
     * the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
     * which only has an effect at the end of a transaction.
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://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.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) 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(errorMessage);
        }
    }
}

File 15 of 20 : UserOperation.sol
// This work is marked with CC0 1.0 Universal.
//
// SPDX-License-Identifier: CC0-1.0
//
// To view a copy of this license, visit http://creativecommons.org/publicdomain/zero/1.0

pragma solidity ^0.8.22;

/// @notice User Operation struct as defined in ERC-4337
struct UserOperation {
    address sender;
    uint256 nonce;
    bytes initCode;
    bytes callData;
    uint256 callGasLimit;
    uint256 verificationGasLimit;
    uint256 preVerificationGas;
    uint256 maxFeePerGas;
    uint256 maxPriorityFeePerGas;
    bytes paymasterAndData;
    bytes signature;
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @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;
    }
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (proxy/beacon/IBeacon.sol)

pragma solidity ^0.8.0;

/**
 * @dev This is the interface that {BeaconProxy} expects of its beacon.
 */
interface IBeacon {
    /**
     * @dev Must return an address that can be used as a delegate call target.
     *
     * {BeaconProxy} will check that this address is a contract.
     */
    function implementation() external view returns (address);
}

File 18 of 20 : IERC1967.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (interfaces/IERC1967.sol)

pragma solidity ^0.8.0;

/**
 * @dev ERC-1967: Proxy Storage Slots. This interface contains the events defined in the ERC.
 *
 * _Available since v4.8.3._
 */
interface IERC1967 {
    /**
     * @dev Emitted when the implementation is upgraded.
     */
    event Upgraded(address indexed implementation);

    /**
     * @dev Emitted when the admin account has changed.
     */
    event AdminChanged(address previousAdmin, address newAdmin);

    /**
     * @dev Emitted when the beacon is changed.
     */
    event BeaconUpgraded(address indexed beacon);
}

File 19 of 20 : draft-IERC1822.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (interfaces/draft-IERC1822.sol)

pragma solidity ^0.8.0;

/**
 * @dev ERC1822: Universal Upgradeable Proxy Standard (UUPS) documents a method for upgradeability through a simplified
 * proxy whose upgrades are fully controlled by the current implementation.
 */
interface IERC1822Proxiable {
    /**
     * @dev Returns the storage slot that the proxiable contract assumes is being used to store the implementation
     * address.
     *
     * IMPORTANT: A proxy pointing at a proxiable contract should not be considered proxiable itself, because this risks
     * bricking a proxy that upgrades to it, by delegating to itself until out of gas. Thus it is critical that this
     * function revert if invoked through a proxy.
     */
    function proxiableUUID() external view returns (bytes32);
}

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (utils/StorageSlot.sol)
// This file was procedurally generated from scripts/generate/templates/StorageSlot.js.

pragma solidity ^0.8.0;

/**
 * @dev Library for reading and writing primitive types to specific storage slots.
 *
 * Storage slots are often used to avoid storage conflict when dealing with upgradeable contracts.
 * This library helps with reading and writing to such slots without the need for inline assembly.
 *
 * The functions in this library return Slot structs that contain a `value` member that can be used to read or write.
 *
 * Example usage to set ERC1967 implementation slot:
 * ```solidity
 * contract ERC1967 {
 *     bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
 *
 *     function _getImplementation() internal view returns (address) {
 *         return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
 *     }
 *
 *     function _setImplementation(address newImplementation) internal {
 *         require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
 *         StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
 *     }
 * }
 * ```
 *
 * _Available since v4.1 for `address`, `bool`, `bytes32`, `uint256`._
 * _Available since v4.9 for `string`, `bytes`._
 */
library StorageSlot {
    struct AddressSlot {
        address value;
    }

    struct BooleanSlot {
        bool value;
    }

    struct Bytes32Slot {
        bytes32 value;
    }

    struct Uint256Slot {
        uint256 value;
    }

    struct StringSlot {
        string value;
    }

    struct BytesSlot {
        bytes value;
    }

    /**
     * @dev Returns an `AddressSlot` with member `value` located at `slot`.
     */
    function getAddressSlot(bytes32 slot) internal pure returns (AddressSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BooleanSlot` with member `value` located at `slot`.
     */
    function getBooleanSlot(bytes32 slot) internal pure returns (BooleanSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Bytes32Slot` with member `value` located at `slot`.
     */
    function getBytes32Slot(bytes32 slot) internal pure returns (Bytes32Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `Uint256Slot` with member `value` located at `slot`.
     */
    function getUint256Slot(bytes32 slot) internal pure returns (Uint256Slot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` with member `value` located at `slot`.
     */
    function getStringSlot(bytes32 slot) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `StringSlot` representation of the string storage pointer `store`.
     */
    function getStringSlot(string storage store) internal pure returns (StringSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` with member `value` located at `slot`.
     */
    function getBytesSlot(bytes32 slot) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := slot
        }
    }

    /**
     * @dev Returns an `BytesSlot` representation of the bytes storage pointer `store`.
     */
    function getBytesSlot(bytes storage store) internal pure returns (BytesSlot storage r) {
        /// @solidity memory-safe-assembly
        assembly {
            r.slot := store.slot
        }
    }
}

Settings
{
  "remappings": [
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "@eth-infinitism/account-abstraction/=lib/account-abstraction/contracts/",
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "@alchemy/light-account/=lib/light-account/",
    "account-abstraction/=lib/account-abstraction/contracts/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "light-account/=lib/light-account/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "openzeppelin/=lib/openzeppelin-contracts/contracts/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 900
  },
  "metadata": {
    "useLiteralContent": false,
    "bytecodeHash": "ipfs",
    "appendCBOR": true
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "paris",
  "viaIR": true,
  "libraries": {}
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"multiOwnerPlugin","type":"address"},{"internalType":"address","name":"implementation","type":"address"},{"internalType":"bytes32","name":"multiOwnerPluginManifestHash","type":"bytes32"},{"internalType":"contract IEntryPoint","name":"entryPoint","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"InvalidAction","type":"error"},{"inputs":[],"name":"InvalidOwner","type":"error"},{"inputs":[],"name":"OwnersArrayEmpty","type":"error"},{"inputs":[],"name":"OwnersLimitExceeded","type":"error"},{"inputs":[],"name":"TransferFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","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"},{"inputs":[],"name":"ENTRYPOINT","outputs":[{"internalType":"contract IEntryPoint","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IMPL","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MULTI_OWNER_PLUGIN","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"unstakeDelay","type":"uint32"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"addStake","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"salt","type":"uint256"},{"internalType":"address[]","name":"owners","type":"address[]"}],"name":"createAccount","outputs":[{"internalType":"address","name":"addr","type":"address"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"salt","type":"uint256"},{"internalType":"address[]","name":"owners","type":"address[]"}],"name":"getAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"},{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"to","type":"address"}],"name":"withdrawStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

610100346200010757601f6200171838819003918201601f19168301916001600160401b038311848410176200010c5780849260a09460405283398101031262000107576200004e8162000122565b906200005d6020820162000122565b6200006b6040830162000122565b90608060608401519301519360018060a01b038516850362000107576200009d90620000973362000137565b62000137565b60a05260c05260e05260805260405161159290816200018682396080518181816101040152818161023b015281816106940152610731015260a0518181816107f10152610ac6015260c051818181610338015281816109cd0152610d6a015260e05181610b060152f35b600080fd5b634e487b7160e01b600052604160045260246000fd5b51906001600160a01b03821682036200010757565b60018060a01b031990816001541660015560005460018060a01b038092168093821617600055167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a356fe60808060405260043610156200001f575b5036156200001d57600080fd5b005b600090813560e01c90816356973ee51462000d4957508063715018a61462000d025780637387673214620008f757806379ba5097146200081557806381785dfd14620007cf5780638da5cb5b14620007a7578063bb9fe6bf1462000709578063c23a5cea146200065f578063d9caed121462000455578063e189e3791462000288578063e30c3978146200025f578063e8eb3cc61462000219578063f2fde38b146200019c5763fbb1c3d4036200001057604036600319011262000187578060043563ffffffff81168091036200019957620000fa62000f5c565b6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690813b15620001955782906024604051809481937f0396cb6000000000000000000000000000000000000000000000000000000000835260048301528235905af180156200018a57620001745750f35b6200017f9062000dfa565b620001875780f35b80fd5b6040513d84823e3d90fd5b5050fd5b50fd5b5034620001875760203660031901126200018757620001ba62000de3565b620001c462000f5c565b6001600160a01b03809116908173ffffffffffffffffffffffffffffffffffffffff1960015416176001558254167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e227008380a380f35b5034620001875780600319360112620001875760206040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152f35b5034620001875780600319360112620001875760206001600160a01b0360015416604051908152f35b503462000187576200029a3662000d8e565b909181156200042b57606482116200040157620002b8828462000fdb565b15620003d757620002f9620002dd620003c69360405191829160209788840162000e4f565b0392620002f3601f199485810184528362000e2c565b62001040565b90620003af620003bc8561042c9360405190620003198387018362000e2c565b85825282820195620011318739604051620003858482019282620003787f0000000000000000000000000000000000000000000000000000000000000000866001600160a01b0360609216815260406020820152600060408201520190565b0390810183528262000e2c565b6040519586936200039f868601998a925192839162000ecc565b8401915180938684019062000ecc565b0103808452018262000e2c565b519020906200106e565b6001600160a01b0360405191168152f35b60046040517f49e27cff000000000000000000000000000000000000000000000000000000008152fd5b60046040517f7a64f3a6000000000000000000000000000000000000000000000000000000008152fd5b60046040517f0a5c1dfd000000000000000000000000000000000000000000000000000000008152fd5b50346200018757606036600319011262000187576200047362000de3565b602435906001600160a01b038083168093036200065a5783926200049662000f5c565b80620004e5575082809281924791165af1620004b162000f18565b5015620004bb5780f35b60046040517f90b8ec18000000000000000000000000000000000000000000000000000000008152fd5b9092506040519260208401927fa9059cbb000000000000000000000000000000000000000000000000000000008452166024840152604435604484015260448352608083019183831067ffffffffffffffff8411176200064457848091620005979585604052620005568662000e0f565b602086527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656460a0820152519082855af16200059062000f18565b916200108e565b80519081159182156200061a575b505015620005b05780f35b608460405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152fd5b8192509060209181010312620006405760200151801515810362000640573880620005a5565b5080fd5b634e487b7160e01b600052604160045260246000fd5b600080fd5b5034620001875760203660031901126200018757806200067e62000de3565b6200068862000f5c565b6001600160a01b0390817f00000000000000000000000000000000000000000000000000000000000000001691823b156200070457602484928360405195869485937fc23a5cea0000000000000000000000000000000000000000000000000000000085521660048401525af180156200018a57620001745750f35b505050fd5b503462000187578060031936011262000187576200072662000f5c565b806001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016803b15620001995781906004604051809481937fbb9fe6bf0000000000000000000000000000000000000000000000000000000083525af180156200018a5762000799575080f35b620007a49062000dfa565b80f35b503462000187578060031936011262000187576001600160a01b036020915416604051908152f35b5034620001875780600319360112620001875760206040516001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152f35b503462000187578060031936011262000187576001546001600160a01b0333818316036200088d5773ffffffffffffffffffffffffffffffffffffffff19809216600155825491339083161783553391167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b608460405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e657200000000000000000000000000000000000000000000006064820152fd5b50346200018757620009093662000d8e565b90929162000918828562000fdb565b15620003d757604051916200092d8362000e0f565b60018352835b6020811062000cf057506200096b620009969394956200095c6040519384926020840162000e4f565b03601f19810183528262000e2c565b620009768462000ea8565b52620009828362000ea8565b506200098e8362000ea8565b519062001040565b604051919061042c620009ad602082018562000e2c565b808452620011319362000a296020820183878239620003af62000a1f60207f0000000000000000000000000000000000000000000000000000000000000000956040518281019062000385816200095c8b856001600160a01b0360609216815260406020820152600060408201520190565b519020846200106e565b94853b1562000a47575b6020866001600160a01b0360405191168152f35b604051928084019184831067ffffffffffffffff84111762000cdc579184939162000a8e9385396001600160a01b0360609216815260406020820152600060408201520190565b039085f5156200018a5760405162000aa68162000e0f565b600181526020368183013762000abc8162000ea8565b6001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016905260405162000af68162000e0f565b60018152602081019060203683377f000000000000000000000000000000000000000000000000000000000000000062000b308262000ea8565b5260405193849160608301906040602085015251809152608083019390885b81811062000cc257505050601f19828403016040830152805180845260208401936020808360051b83010193019489915b83831062000c8e575050505062000ba1925003601f19810184528362000e2c565b6001600160a01b0383163b1562000c8a579083906040519283917fe69e24a800000000000000000000000000000000000000000000000000000000835260448301604060048501528251809152602060648501930190855b81811062000c6457505050828203600319016024840152829162000c1d9162000ef1565b0381836001600160a01b0387165af1801562000c59576020935062000c47575b8080808062000a33565b62000c529062000dfa565b3862000c3d565b6040513d85823e3d90fd5b82516001600160a01b031685528996508795506020948501949092019160010162000bf9565b8380fd5b9193600191939550602062000caf8192601f19868203018752895162000ef1565b9701930193019092879492959362000b80565b825186526020958601958895509092019160010162000b4f565b602489634e487b7160e01b81526041600452fd5b80606060208093870101520162000933565b5034620001875780600319360112620001875762000d1f62000f5c565b60046040517f4a7f394f000000000000000000000000000000000000000000000000000000008152fd5b90503462000640578160031936011262000640576020906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168152f35b60406003198201126200065a576004359160243567ffffffffffffffff928382116200065a57806023830112156200065a5781600401359384116200065a5760248460051b830101116200065a576024019190565b600435906001600160a01b03821682036200065a57565b67ffffffffffffffff81116200064457604052565b6040810190811067ffffffffffffffff8211176200064457604052565b90601f8019910116810190811067ffffffffffffffff8211176200064457604052565b90916040602092826020820160208352520192916000805b83821062000e7757505050505090565b909192939485356001600160a01b03811680910362000ea457815283019483019392916001019062000e67565b8280fd5b80511562000eb65760200190565b634e487b7160e01b600052603260045260246000fd5b60005b83811062000ee05750506000910152565b818101518382015260200162000ecf565b9060209162000f0c8151809281855285808601910162000ecc565b601f01601f1916010190565b3d1562000f57573d9067ffffffffffffffff821162000644576040519162000f4b601f8201601f19166020018462000e2c565b82523d6000602084013e565b606090565b6001600160a01b0360005416330362000f7157565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b919081101562000eb65760051b0190565b356001600160a01b03811681036200065a5790565b600090815b83831062000ff15750505050600190565b620010086200100284868562000fb5565b62000fc6565b6001600160a01b0391821691161115620010385760016200102f6200100284868562000fb5565b92019162000fe0565b505050600090565b90620010686200095c9160405192839160208301958652604080840152606083019062000ef1565b51902090565b605591600b9160405191604083015260208201523081520160ff81532090565b91929015620010f25750815115620010a4575090565b3b15620010ae5790565b606460405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152fd5b825190915015620011065750805190602001fd5b6200112c9060405191829162461bcd60e51b835260206004840152602483019062000ef1565b0390fdfe60406080815261042c908138038061001681610218565b93843982019181818403126102135780516001600160a01b038116808203610213576020838101516001600160401b0394919391858211610213570186601f820112156102135780519061007161006c83610253565b610218565b918083528583019886828401011161021357888661008f930161026e565b813b156101b9577f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b031916841790556000927fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b8480a28051158015906101b2575b61010b575b855160e790816103458239f35b855194606086019081118682101761019e578697849283926101889952602788527f416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c87890152660819985a5b195960ca1b8a8901525190845af4913d15610194573d9061017a61006c83610253565b91825281943d92013e610291565b508038808080806100fe565b5060609250610291565b634e487b7160e01b84526041600452602484fd5b50826100f9565b855162461bcd60e51b815260048101859052602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608490fd5b600080fd5b6040519190601f01601f191682016001600160401b0381118382101761023d57604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b03811161023d57601f01601f191660200190565b60005b8381106102815750506000910152565b8181015183820152602001610271565b919290156102f357508151156102a5575090565b3b156102ae5790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b8251909150156103065750805190602001fd5b6044604051809262461bcd60e51b825260206004830152610336815180928160248601526020868601910161026e565b601f01601f19168101030190fdfe60806040523615605f5773ffffffffffffffffffffffffffffffffffffffff7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc54166000808092368280378136915af43d82803e15605b573d90f35b3d90fd5b73ffffffffffffffffffffffffffffffffffffffff7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc54166000808092368280378136915af43d82803e15605b573d90f3fea26469706673582212208f3104255ee3c201238ea03e118ee6ec0a2cff51cbfbdc3af1727982a5a959a564736f6c63430008160033a2646970667358221220689623ad71df789b8adddf1a52b12266ccf238b21ea0652b810ac4637c61be3564736f6c63430008160033000000000000000000000000ddf32240b4ca3184de7ec8f0d5aba27dec8b7a5c000000000000000000000000ce0000007b008f50d762d155002600004cd6c6470000000000000000000000000046000000000151008789797b54fdb500e2a61e21d0f6cca8bef15ac65bf93ae5ae9ec383ea5010bf3e02b44d3c0abd2d2bd0fb0000000000000000000000005ff137d4b0fdcd49dca30c7cf57e578a026d2789

Deployed Bytecode

0x60808060405260043610156200001f575b5036156200001d57600080fd5b005b600090813560e01c90816356973ee51462000d4957508063715018a61462000d025780637387673214620008f757806379ba5097146200081557806381785dfd14620007cf5780638da5cb5b14620007a7578063bb9fe6bf1462000709578063c23a5cea146200065f578063d9caed121462000455578063e189e3791462000288578063e30c3978146200025f578063e8eb3cc61462000219578063f2fde38b146200019c5763fbb1c3d4036200001057604036600319011262000187578060043563ffffffff81168091036200019957620000fa62000f5c565b6001600160a01b037f0000000000000000000000005ff137d4b0fdcd49dca30c7cf57e578a026d27891690813b15620001955782906024604051809481937f0396cb6000000000000000000000000000000000000000000000000000000000835260048301528235905af180156200018a57620001745750f35b6200017f9062000dfa565b620001875780f35b80fd5b6040513d84823e3d90fd5b5050fd5b50fd5b5034620001875760203660031901126200018757620001ba62000de3565b620001c462000f5c565b6001600160a01b03809116908173ffffffffffffffffffffffffffffffffffffffff1960015416176001558254167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e227008380a380f35b5034620001875780600319360112620001875760206040516001600160a01b037f0000000000000000000000005ff137d4b0fdcd49dca30c7cf57e578a026d2789168152f35b5034620001875780600319360112620001875760206001600160a01b0360015416604051908152f35b503462000187576200029a3662000d8e565b909181156200042b57606482116200040157620002b8828462000fdb565b15620003d757620002f9620002dd620003c69360405191829160209788840162000e4f565b0392620002f3601f199485810184528362000e2c565b62001040565b90620003af620003bc8561042c9360405190620003198387018362000e2c565b85825282820195620011318739604051620003858482019282620003787f0000000000000000000000000046000000000151008789797b54fdb500e2a61e866001600160a01b0360609216815260406020820152600060408201520190565b0390810183528262000e2c565b6040519586936200039f868601998a925192839162000ecc565b8401915180938684019062000ecc565b0103808452018262000e2c565b519020906200106e565b6001600160a01b0360405191168152f35b60046040517f49e27cff000000000000000000000000000000000000000000000000000000008152fd5b60046040517f7a64f3a6000000000000000000000000000000000000000000000000000000008152fd5b60046040517f0a5c1dfd000000000000000000000000000000000000000000000000000000008152fd5b50346200018757606036600319011262000187576200047362000de3565b602435906001600160a01b038083168093036200065a5783926200049662000f5c565b80620004e5575082809281924791165af1620004b162000f18565b5015620004bb5780f35b60046040517f90b8ec18000000000000000000000000000000000000000000000000000000008152fd5b9092506040519260208401927fa9059cbb000000000000000000000000000000000000000000000000000000008452166024840152604435604484015260448352608083019183831067ffffffffffffffff8411176200064457848091620005979585604052620005568662000e0f565b602086527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c656460a0820152519082855af16200059062000f18565b916200108e565b80519081159182156200061a575b505015620005b05780f35b608460405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e60448201527f6f742073756363656564000000000000000000000000000000000000000000006064820152fd5b8192509060209181010312620006405760200151801515810362000640573880620005a5565b5080fd5b634e487b7160e01b600052604160045260246000fd5b600080fd5b5034620001875760203660031901126200018757806200067e62000de3565b6200068862000f5c565b6001600160a01b0390817f0000000000000000000000005ff137d4b0fdcd49dca30c7cf57e578a026d27891691823b156200070457602484928360405195869485937fc23a5cea0000000000000000000000000000000000000000000000000000000085521660048401525af180156200018a57620001745750f35b505050fd5b503462000187578060031936011262000187576200072662000f5c565b806001600160a01b037f0000000000000000000000005ff137d4b0fdcd49dca30c7cf57e578a026d278916803b15620001995781906004604051809481937fbb9fe6bf0000000000000000000000000000000000000000000000000000000083525af180156200018a5762000799575080f35b620007a49062000dfa565b80f35b503462000187578060031936011262000187576001600160a01b036020915416604051908152f35b5034620001875780600319360112620001875760206040516001600160a01b037f000000000000000000000000ce0000007b008f50d762d155002600004cd6c647168152f35b503462000187578060031936011262000187576001546001600160a01b0333818316036200088d5773ffffffffffffffffffffffffffffffffffffffff19809216600155825491339083161783553391167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b608460405162461bcd60e51b815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e657200000000000000000000000000000000000000000000006064820152fd5b50346200018757620009093662000d8e565b90929162000918828562000fdb565b15620003d757604051916200092d8362000e0f565b60018352835b6020811062000cf057506200096b620009969394956200095c6040519384926020840162000e4f565b03601f19810183528262000e2c565b620009768462000ea8565b52620009828362000ea8565b506200098e8362000ea8565b519062001040565b604051919061042c620009ad602082018562000e2c565b808452620011319362000a296020820183878239620003af62000a1f60207f0000000000000000000000000046000000000151008789797b54fdb500e2a61e956040518281019062000385816200095c8b856001600160a01b0360609216815260406020820152600060408201520190565b519020846200106e565b94853b1562000a47575b6020866001600160a01b0360405191168152f35b604051928084019184831067ffffffffffffffff84111762000cdc579184939162000a8e9385396001600160a01b0360609216815260406020820152600060408201520190565b039085f5156200018a5760405162000aa68162000e0f565b600181526020368183013762000abc8162000ea8565b6001600160a01b037f000000000000000000000000ce0000007b008f50d762d155002600004cd6c64716905260405162000af68162000e0f565b60018152602081019060203683377f21d0f6cca8bef15ac65bf93ae5ae9ec383ea5010bf3e02b44d3c0abd2d2bd0fb62000b308262000ea8565b5260405193849160608301906040602085015251809152608083019390885b81811062000cc257505050601f19828403016040830152805180845260208401936020808360051b83010193019489915b83831062000c8e575050505062000ba1925003601f19810184528362000e2c565b6001600160a01b0383163b1562000c8a579083906040519283917fe69e24a800000000000000000000000000000000000000000000000000000000835260448301604060048501528251809152602060648501930190855b81811062000c6457505050828203600319016024840152829162000c1d9162000ef1565b0381836001600160a01b0387165af1801562000c59576020935062000c47575b8080808062000a33565b62000c529062000dfa565b3862000c3d565b6040513d85823e3d90fd5b82516001600160a01b031685528996508795506020948501949092019160010162000bf9565b8380fd5b9193600191939550602062000caf8192601f19868203018752895162000ef1565b9701930193019092879492959362000b80565b825186526020958601958895509092019160010162000b4f565b602489634e487b7160e01b81526041600452fd5b80606060208093870101520162000933565b5034620001875780600319360112620001875762000d1f62000f5c565b60046040517f4a7f394f000000000000000000000000000000000000000000000000000000008152fd5b90503462000640578160031936011262000640576020906001600160a01b037f0000000000000000000000000046000000000151008789797b54fdb500e2a61e168152f35b60406003198201126200065a576004359160243567ffffffffffffffff928382116200065a57806023830112156200065a5781600401359384116200065a5760248460051b830101116200065a576024019190565b600435906001600160a01b03821682036200065a57565b67ffffffffffffffff81116200064457604052565b6040810190811067ffffffffffffffff8211176200064457604052565b90601f8019910116810190811067ffffffffffffffff8211176200064457604052565b90916040602092826020820160208352520192916000805b83821062000e7757505050505090565b909192939485356001600160a01b03811680910362000ea457815283019483019392916001019062000e67565b8280fd5b80511562000eb65760200190565b634e487b7160e01b600052603260045260246000fd5b60005b83811062000ee05750506000910152565b818101518382015260200162000ecf565b9060209162000f0c8151809281855285808601910162000ecc565b601f01601f1916010190565b3d1562000f57573d9067ffffffffffffffff821162000644576040519162000f4b601f8201601f19166020018462000e2c565b82523d6000602084013e565b606090565b6001600160a01b0360005416330362000f7157565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b919081101562000eb65760051b0190565b356001600160a01b03811681036200065a5790565b600090815b83831062000ff15750505050600190565b620010086200100284868562000fb5565b62000fc6565b6001600160a01b0391821691161115620010385760016200102f6200100284868562000fb5565b92019162000fe0565b505050600090565b90620010686200095c9160405192839160208301958652604080840152606083019062000ef1565b51902090565b605591600b9160405191604083015260208201523081520160ff81532090565b91929015620010f25750815115620010a4575090565b3b15620010ae5790565b606460405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152fd5b825190915015620011065750805190602001fd5b6200112c9060405191829162461bcd60e51b835260206004840152602483019062000ef1565b0390fdfe60406080815261042c908138038061001681610218565b93843982019181818403126102135780516001600160a01b038116808203610213576020838101516001600160401b0394919391858211610213570186601f820112156102135780519061007161006c83610253565b610218565b918083528583019886828401011161021357888661008f930161026e565b813b156101b9577f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc80546001600160a01b031916841790556000927fbc7cd75a20ee27fd9adebab32041f755214dbc6bffa90cc0225b39da2e5c2d3b8480a28051158015906101b2575b61010b575b855160e790816103458239f35b855194606086019081118682101761019e578697849283926101889952602788527f416464726573733a206c6f772d6c6576656c2064656c65676174652063616c6c87890152660819985a5b195960ca1b8a8901525190845af4913d15610194573d9061017a61006c83610253565b91825281943d92013e610291565b508038808080806100fe565b5060609250610291565b634e487b7160e01b84526041600452602484fd5b50826100f9565b855162461bcd60e51b815260048101859052602d60248201527f455243313936373a206e657720696d706c656d656e746174696f6e206973206e60448201526c1bdd08184818dbdb9d1c9858dd609a1b6064820152608490fd5b600080fd5b6040519190601f01601f191682016001600160401b0381118382101761023d57604052565b634e487b7160e01b600052604160045260246000fd5b6001600160401b03811161023d57601f01601f191660200190565b60005b8381106102815750506000910152565b8181015183820152602001610271565b919290156102f357508151156102a5575090565b3b156102ae5790565b60405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606490fd5b8251909150156103065750805190602001fd5b6044604051809262461bcd60e51b825260206004830152610336815180928160248601526020868601910161026e565b601f01601f19168101030190fdfe60806040523615605f5773ffffffffffffffffffffffffffffffffffffffff7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc54166000808092368280378136915af43d82803e15605b573d90f35b3d90fd5b73ffffffffffffffffffffffffffffffffffffffff7f360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc54166000808092368280378136915af43d82803e15605b573d90f3fea26469706673582212208f3104255ee3c201238ea03e118ee6ec0a2cff51cbfbdc3af1727982a5a959a564736f6c63430008160033a2646970667358221220689623ad71df789b8adddf1a52b12266ccf238b21ea0652b810ac4637c61be3564736f6c63430008160033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000ddf32240b4ca3184de7ec8f0d5aba27dec8b7a5c000000000000000000000000ce0000007b008f50d762d155002600004cd6c6470000000000000000000000000046000000000151008789797b54fdb500e2a61e21d0f6cca8bef15ac65bf93ae5ae9ec383ea5010bf3e02b44d3c0abd2d2bd0fb0000000000000000000000005ff137d4b0fdcd49dca30c7cf57e578a026d2789

-----Decoded View---------------
Arg [0] : owner (address): 0xDdF32240B4ca3184De7EC8f0D5Aba27dEc8B7A5C
Arg [1] : multiOwnerPlugin (address): 0xcE0000007B008F50d762D155002600004cD6c647
Arg [2] : implementation (address): 0x0046000000000151008789797b54fdb500E2a61e
Arg [3] : multiOwnerPluginManifestHash (bytes32): 0x21d0f6cca8bef15ac65bf93ae5ae9ec383ea5010bf3e02b44d3c0abd2d2bd0fb
Arg [4] : entryPoint (address): 0x5FF137D4b0FDCD49DcA30c7CF57E578a026d2789

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 000000000000000000000000ddf32240b4ca3184de7ec8f0d5aba27dec8b7a5c
Arg [1] : 000000000000000000000000ce0000007b008f50d762d155002600004cd6c647
Arg [2] : 0000000000000000000000000046000000000151008789797b54fdb500e2a61e
Arg [3] : 21d0f6cca8bef15ac65bf93ae5ae9ec383ea5010bf3e02b44d3c0abd2d2bd0fb
Arg [4] : 0000000000000000000000005ff137d4b0fdcd49dca30c7cf57e578a026d2789


Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.