HYPE Price: $27.56 (+10.74%)
 

Overview

HYPE Balance

HyperEVM LogoHyperEVM LogoHyperEVM Logo0 HYPE

HYPE Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Block
From
To
Transfer Ownersh...45370022025-05-30 19:29:00241 days ago1748633340IN
0x33e3fcA5...d77962210
0 HYPE0.000006210.21649028
Set Call Allowed45369712025-05-30 19:28:00241 days ago1748633280IN
0x33e3fcA5...d77962210
0 HYPE0.000010590.21649028
Set Call Allowed45369402025-05-30 19:27:00241 days ago1748633220IN
0x33e3fcA5...d77962210
0 HYPE0.000010590.21649028
Set Call Allowed45369092025-05-30 19:26:00241 days ago1748633160IN
0x33e3fcA5...d77962210
0 HYPE0.000010590.21649028

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Cross-Chain Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
RumpelGuard

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 100 runs

Other Settings:
cancun EvmVersion
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity =0.8.24;

import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol";

import {Enum} from "./interfaces/external/ISafe.sol";
import {IGuard} from "./interfaces/external/IGuard.sol";

/// @notice Rumpel Safe Guard with a blocklist for the Rumpel Wallet.
/// @dev Compatible with Safe v1.3.0-libs.0, the last Safe Ethereum mainnet release, so it can't use module execution hooks.
contract RumpelGuard is Ownable, IGuard {
    mapping(address => mapping(bytes4 => AllowListState)) public allowedCalls; // target => functionSelector => allowListState

    address public immutable signMessageLib;

    enum AllowListState {
        OFF,
        ON,
        PERMANENTLY_ON
    }

    event SetCallAllowed(address indexed target, bytes4 indexed functionSelector, AllowListState allowListState);

    error CallNotAllowed(address target, bytes4 functionSelector);
    error PermanentlyOn();

    constructor(address _signMessageLib) Ownable(msg.sender) {
        signMessageLib = _signMessageLib;
    }

    /// @notice Called by the Safe contract before a transaction is executed.
    /// @dev Safe user execution hook that blocks all calls by default, including delegatecalls, unless explicitly added to the allowlist.
    function checkTransaction(
        address to,
        uint256,
        bytes memory data,
        Enum.Operation operation,
        uint256,
        uint256,
        uint256,
        address,
        address payable,
        bytes memory,
        address
    ) external view {
        // Disallow calls with function selectors that will be padded with 0s.
        // Allow calls with data length 0 for ETH transfers.
        if (data.length > 0 && data.length < 4) {
            revert CallNotAllowed(to, bytes4(data));
        }

        bytes4 functionSelector = bytes4(data);

        // Only allow delegatecalls to the signMessageLib.
        if (operation == Enum.Operation.DelegateCall) {
            if (to == signMessageLib) {
                return;
            } else {
                revert CallNotAllowed(to, functionSelector);
            }
        }

        bool toSafe = msg.sender == to;

        if (toSafe) {
            // If this transaction is to a Safe itself, to e.g. update config, we check the zero address for allowed calls.
            if (allowedCalls[address(0)][functionSelector] == AllowListState.OFF) {
                revert CallNotAllowed(to, functionSelector);
            }
        } else if (data.length == 0) {
            // If this transaction is a simple ETH transfer, we check the zero address with the zero function selector to see if it's allowed.
            if (allowedCalls[address(0)][bytes4(0)] == AllowListState.OFF) {
                revert CallNotAllowed(address(0), bytes4(0));
            }
        } else {
            // For all other calls, we check the allowedCalls mapping normally.
            if (allowedCalls[to][functionSelector] == AllowListState.OFF) {
                revert CallNotAllowed(to, functionSelector);
            }
        }
    }

    /// @notice Called by the Safe contract after a transaction is executed.
    /// @dev No-op.
    function checkAfterExecution(bytes32, bool) external view {}

    function supportsInterface(bytes4 interfaceId) public view returns (bool) {
        return interfaceId == type(IGuard).interfaceId;
    }

    // Admin ----

    /// @notice Enable or disable Safes from calling a function.
    /// @dev Scoped to <address>.<selector>, so all calls to added address <> selector pairs are allowed.
    /// @dev Function arguments aren't checked, so any arguments are allowed for the enabled functions.
    /// @dev Calls can be enabled, disabled, or permanently enabled, that last of which guarantees the call can't be rugged.
    function setCallAllowed(address target, bytes4 functionSelector, AllowListState allowListState)
        external
        onlyOwner
    {
        if (allowedCalls[target][functionSelector] == AllowListState.PERMANENTLY_ON) {
            revert PermanentlyOn();
        }

        allowedCalls[target][functionSelector] = allowListState;
        emit SetCallAllowed(target, functionSelector, allowListState);
    }
}

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

pragma solidity ^0.8.20;

import {Context} from "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * The initial owner is set to the address provided by the deployer. This can
 * later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(newOwner);
    }

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

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity =0.8.24;

import {Enum} from "./ISafe.sol";

interface IGuard {
    function checkTransaction(
        address to,
        uint256 value,
        bytes memory data,
        Enum.Operation operation,
        uint256 safeTxGas,
        uint256 baseGas,
        uint256 gasPrice,
        address gasToken,
        address payable refundReceiver,
        bytes memory signatures,
        address msgSender
    ) external;

    function checkAfterExecution(bytes32 txHash, bool success) external;
}

// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity =0.8.24;

library Enum {
    enum Operation {
        Call,
        DelegateCall
    }
}

interface ISafe {
    function getTransactionHash(
        address to,
        uint256 value,
        bytes calldata data,
        Enum.Operation operation,
        uint256 safeTxGas,
        uint256 baseGas,
        uint256 gasPrice,
        address gasToken,
        address refundReceiver,
        uint256 _nonce
    ) external view returns (bytes32);

    function execTransaction(
        address to,
        uint256 value,
        bytes calldata data,
        Enum.Operation operation,
        uint256 safeTxGas,
        uint256 baseGas,
        uint256 gasPrice,
        address gasToken,
        address payable refundReceiver,
        bytes memory signatures
    ) external payable returns (bool success);

    function execTransactionFromModule(address to, uint256 value, bytes memory data, Enum.Operation operation)
        external
        returns (bool success);

    function setup(
        address[] calldata _owners,
        uint256 _threshold,
        address to,
        bytes calldata data,
        address fallbackHandler,
        address paymentToken,
        uint256 payment,
        address payable paymentReceiver
    ) external;

    function enableModule(address module) external;

    function disableModule(address prevModule, address module) external;

    function setGuard(address guard) external;

    function getGuard() external view returns (address);

    function getOwners() external view returns (address[] memory);

    function getThreshold() external view returns (uint256);

    function isModuleEnabled(address module) external view returns (bool);

    function nonce() external view returns (uint256);

    function execute(address to, uint256 value, bytes memory data, Enum.Operation operation, uint256 txGas)
        external
        returns (bool success);

    function domainSeparator() external view returns (bytes32);

    function signedMessages(bytes32 messageHash) external returns (uint256);

    function addOwnerWithThreshold(address owner, uint256 _threshold) external;

    function removeOwner(address prevOwner, address owner, uint256 _threshold) external;

    function swapOwner(address prevOwner, address oldOwner, address newOwner) external;

    // Fallback handler functions

    function isValidSignature(bytes32 _dataHash, bytes calldata _signature) external view returns (bytes4);

    function isValidSignature(bytes calldata _data, bytes calldata _signature) external view returns (bytes4);
}

Settings
{
  "evmVersion": "cancun",
  "libraries": {},
  "metadata": {
    "appendCBOR": true,
    "bytecodeHash": "ipfs",
    "useLiteralContent": false
  },
  "optimizer": {
    "enabled": true,
    "runs": 100
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "remappings": [
    "@openzeppelin/=lib/openzeppelin-contracts/",
    "solmate/=lib/solmate/src/",
    "forge-std/=lib/forge-std/src/",
    "safe-smart-account/=safe-smart-account/",
    "create3-factory/=lib/point-tokenization-vault/lib/create3-factory/",
    "ds-test/=lib/solmate/lib/ds-test/src/",
    "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/",
    "forge-safe/=lib/point-tokenization-vault/lib/forge-safe/",
    "openzeppelin-contracts-upgradeable/=lib/point-tokenization-vault/lib/openzeppelin-contracts-upgradeable/",
    "openzeppelin-contracts/=lib/openzeppelin-contracts/",
    "openzeppelin-foundry-upgrades/=lib/point-tokenization-vault/lib/openzeppelin-foundry-upgrades/src/",
    "point-tokenization-vault/=lib/point-tokenization-vault/contracts/",
    "solady/=lib/point-tokenization-vault/lib/solady/src/",
    "solidity-stringutils/=lib/point-tokenization-vault/lib/openzeppelin-foundry-upgrades/lib/solidity-stringutils/",
    "surl/=lib/point-tokenization-vault/lib/forge-safe/lib/surl/"
  ],
  "viaIR": false
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_signMessageLib","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"functionSelector","type":"bytes4"}],"name":"CallNotAllowed","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"PermanentlyOn","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":true,"internalType":"bytes4","name":"functionSelector","type":"bytes4"},{"indexed":false,"internalType":"enum RumpelGuard.AllowListState","name":"allowListState","type":"uint8"}],"name":"SetCallAllowed","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"bytes4","name":"","type":"bytes4"}],"name":"allowedCalls","outputs":[{"internalType":"enum RumpelGuard.AllowListState","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bool","name":"","type":"bool"}],"name":"checkAfterExecution","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"enum Enum.Operation","name":"operation","type":"uint8"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"address","name":"","type":"address"},{"internalType":"address payable","name":"","type":"address"},{"internalType":"bytes","name":"","type":"bytes"},{"internalType":"address","name":"","type":"address"}],"name":"checkTransaction","outputs":[],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes4","name":"functionSelector","type":"bytes4"},{"internalType":"enum RumpelGuard.AllowListState","name":"allowListState","type":"uint8"}],"name":"setCallAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signMessageLib","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405234801561000f575f80fd5b50604051610a38380380610a3883398101604081905261002e916100bd565b338061005357604051631e4fbdf760e01b81525f600482015260240160405180910390fd5b61005c8161006e565b506001600160a01b03166080526100ea565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b5f602082840312156100cd575f80fd5b81516001600160a01b03811681146100e3575f80fd5b9392505050565b60805161092f6101095f395f81816101580152610314015261092f5ff3fe608060405234801561000f575f80fd5b5060043610610081575f3560e01c806301ffc9a7146100855780635534fa0c146100be578063715018a6146100d357806375f0bb52146100db5780638da5cb5b146100ee5780639327136814610107578063b23ade8014610119578063dfe274a914610153578063f2fde38b1461017a575b5f80fd5b6100a96100933660046105c2565b6001600160e01b03191663736bd41d60e11b1490565b60405190151581526020015b60405180910390f35b6100d16100cc366004610601565b61018d565b005b6100d1610296565b6100d16100e93660046106f5565b6102a9565b5f546001600160a01b03165b6040516100b591906107d1565b6100d16101153660046107e5565b5050565b610146610127366004610817565b600160209081525f928352604080842090915290825290205460ff1681565b6040516100b5919061085e565b6100fa7f000000000000000000000000000000000000000000000000000000000000000081565b6100d1610188366004610884565b6104ee565b61019561052b565b60026001600160a01b0384165f9081526001602090815260408083206001600160e01b03198716845290915290205460ff1660028111156101d8576101d861084a565b036101f6576040516301a3c1f160e71b815260040160405180910390fd5b6001600160a01b0383165f9081526001602081815260408084206001600160e01b0319871685529091529091208054839260ff19909116908360028111156102405761024061084a565b0217905550816001600160e01b031916836001600160a01b03167f70785a9b51e0166fb561479b514223d6b27cc81df3c02b16292211b860842f7383604051610289919061085e565b60405180910390a3505050565b61029e61052b565b6102a75f610557565b565b5f89511180156102ba575060048951105b156102ed578a6102c98a61089f565b60405163805043f960e01b81526004016102e49291906108d6565b60405180910390fd5b5f6102f78a61089f565b9050600189600181111561030d5761030d61084a565b0361036e577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168c6001600160a01b03160361035157506104e1565b8b8160405163805043f960e01b81526004016102e49291906108d6565b336001600160a01b038d161480156103f3576001600160e01b031982165f9081527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb49602052604081205460ff1660028111156103cc576103cc61084a565b036103ee578c8260405163805043f960e01b81526004016102e49291906108d6565b6104de565b8a515f0361047b575f8080527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb496020527fe5d06582d467054dda5404b9e1ec93f72b608a4970ba970773776c69ca5664f75460ff1660028111156104595761045961084a565b036103ee5760405163805043f960e01b81526102e4905f9081906004016108d6565b6001600160a01b038d165f9081526001602090815260408083206001600160e01b03198616845290915281205460ff1660028111156104bc576104bc61084a565b036104de578c8260405163805043f960e01b81526004016102e49291906108d6565b50505b5050505050505050505050565b6104f661052b565b6001600160a01b03811661051f575f604051631e4fbdf760e01b81526004016102e491906107d1565b61052881610557565b50565b5f546001600160a01b031633146102a7573360405163118cdaa760e01b81526004016102e491906107d1565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160e01b0319811681146105bd575f80fd5b919050565b5f602082840312156105d2575f80fd5b6105db826105a6565b9392505050565b6001600160a01b0381168114610528575f80fd5b80356105bd816105e2565b5f805f60608486031215610613575f80fd5b833561061e816105e2565b925061062c602085016105a6565b915060408401356003811061063f575f80fd5b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011261066d575f80fd5b813567ffffffffffffffff808211156106885761068861064a565b604051601f8301601f19908116603f011681019082821181831017156106b0576106b061064a565b816040528381528660208588010111156106c8575f80fd5b836020870160208301375f602085830101528094505050505092915050565b8035600281106105bd575f80fd5b5f805f805f805f805f805f6101608c8e031215610710575f80fd5b6107198c6105f6565b9a5060208c0135995067ffffffffffffffff8060408e0135111561073b575f80fd5b61074b8e60408f01358f0161065e565b995061075960608e016106e7565b985060808d0135975060a08d0135965060c08d0135955061077c60e08e016105f6565b945061078b6101008e016105f6565b9350806101208e0135111561079e575f80fd5b506107b08d6101208e01358e0161065e565b91506107bf6101408d016105f6565b90509295989b509295989b9093969950565b6001600160a01b0391909116815260200190565b5f80604083850312156107f6575f80fd5b823591506020830135801515811461080c575f80fd5b809150509250929050565b5f8060408385031215610828575f80fd5b8235610833816105e2565b9150610841602084016105a6565b90509250929050565b634e487b7160e01b5f52602160045260245ffd5b602081016003831061087e57634e487b7160e01b5f52602160045260245ffd5b91905290565b5f60208284031215610894575f80fd5b81356105db816105e2565b805160208201516001600160e01b031980821692919060048310156108ce5780818460040360031b1b83161693505b505050919050565b6001600160a01b039290921682526001600160e01b03191660208201526040019056fea2646970667358221220b53ea60ece14ab9cc70a8b944a78b2da9414eb06fc9b940cd73640a9821d4a2a64736f6c6343000818003300000000000000000000000098ffbbf51bb33a056b08ddf711f289936aaff717

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610081575f3560e01c806301ffc9a7146100855780635534fa0c146100be578063715018a6146100d357806375f0bb52146100db5780638da5cb5b146100ee5780639327136814610107578063b23ade8014610119578063dfe274a914610153578063f2fde38b1461017a575b5f80fd5b6100a96100933660046105c2565b6001600160e01b03191663736bd41d60e11b1490565b60405190151581526020015b60405180910390f35b6100d16100cc366004610601565b61018d565b005b6100d1610296565b6100d16100e93660046106f5565b6102a9565b5f546001600160a01b03165b6040516100b591906107d1565b6100d16101153660046107e5565b5050565b610146610127366004610817565b600160209081525f928352604080842090915290825290205460ff1681565b6040516100b5919061085e565b6100fa7f00000000000000000000000098ffbbf51bb33a056b08ddf711f289936aaff71781565b6100d1610188366004610884565b6104ee565b61019561052b565b60026001600160a01b0384165f9081526001602090815260408083206001600160e01b03198716845290915290205460ff1660028111156101d8576101d861084a565b036101f6576040516301a3c1f160e71b815260040160405180910390fd5b6001600160a01b0383165f9081526001602081815260408084206001600160e01b0319871685529091529091208054839260ff19909116908360028111156102405761024061084a565b0217905550816001600160e01b031916836001600160a01b03167f70785a9b51e0166fb561479b514223d6b27cc81df3c02b16292211b860842f7383604051610289919061085e565b60405180910390a3505050565b61029e61052b565b6102a75f610557565b565b5f89511180156102ba575060048951105b156102ed578a6102c98a61089f565b60405163805043f960e01b81526004016102e49291906108d6565b60405180910390fd5b5f6102f78a61089f565b9050600189600181111561030d5761030d61084a565b0361036e577f00000000000000000000000098ffbbf51bb33a056b08ddf711f289936aaff7176001600160a01b03168c6001600160a01b03160361035157506104e1565b8b8160405163805043f960e01b81526004016102e49291906108d6565b336001600160a01b038d161480156103f3576001600160e01b031982165f9081527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb49602052604081205460ff1660028111156103cc576103cc61084a565b036103ee578c8260405163805043f960e01b81526004016102e49291906108d6565b6104de565b8a515f0361047b575f8080527fa6eef7e35abe7026729641147f7915573c7e97b47efa546f5f6e3230263bcb496020527fe5d06582d467054dda5404b9e1ec93f72b608a4970ba970773776c69ca5664f75460ff1660028111156104595761045961084a565b036103ee5760405163805043f960e01b81526102e4905f9081906004016108d6565b6001600160a01b038d165f9081526001602090815260408083206001600160e01b03198616845290915281205460ff1660028111156104bc576104bc61084a565b036104de578c8260405163805043f960e01b81526004016102e49291906108d6565b50505b5050505050505050505050565b6104f661052b565b6001600160a01b03811661051f575f604051631e4fbdf760e01b81526004016102e491906107d1565b61052881610557565b50565b5f546001600160a01b031633146102a7573360405163118cdaa760e01b81526004016102e491906107d1565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160e01b0319811681146105bd575f80fd5b919050565b5f602082840312156105d2575f80fd5b6105db826105a6565b9392505050565b6001600160a01b0381168114610528575f80fd5b80356105bd816105e2565b5f805f60608486031215610613575f80fd5b833561061e816105e2565b925061062c602085016105a6565b915060408401356003811061063f575f80fd5b809150509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f82601f83011261066d575f80fd5b813567ffffffffffffffff808211156106885761068861064a565b604051601f8301601f19908116603f011681019082821181831017156106b0576106b061064a565b816040528381528660208588010111156106c8575f80fd5b836020870160208301375f602085830101528094505050505092915050565b8035600281106105bd575f80fd5b5f805f805f805f805f805f6101608c8e031215610710575f80fd5b6107198c6105f6565b9a5060208c0135995067ffffffffffffffff8060408e0135111561073b575f80fd5b61074b8e60408f01358f0161065e565b995061075960608e016106e7565b985060808d0135975060a08d0135965060c08d0135955061077c60e08e016105f6565b945061078b6101008e016105f6565b9350806101208e0135111561079e575f80fd5b506107b08d6101208e01358e0161065e565b91506107bf6101408d016105f6565b90509295989b509295989b9093969950565b6001600160a01b0391909116815260200190565b5f80604083850312156107f6575f80fd5b823591506020830135801515811461080c575f80fd5b809150509250929050565b5f8060408385031215610828575f80fd5b8235610833816105e2565b9150610841602084016105a6565b90509250929050565b634e487b7160e01b5f52602160045260245ffd5b602081016003831061087e57634e487b7160e01b5f52602160045260245ffd5b91905290565b5f60208284031215610894575f80fd5b81356105db816105e2565b805160208201516001600160e01b031980821692919060048310156108ce5780818460040360031b1b83161693505b505050919050565b6001600160a01b039290921682526001600160e01b03191660208201526040019056fea2646970667358221220b53ea60ece14ab9cc70a8b944a78b2da9414eb06fc9b940cd73640a9821d4a2a64736f6c63430008180033

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

00000000000000000000000098ffbbf51bb33a056b08ddf711f289936aaff717

-----Decoded View---------------
Arg [0] : _signMessageLib (address): 0x98FFBBF51bb33A056B08ddf711f289936AafF717

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000098ffbbf51bb33a056b08ddf711f289936aaff717


Block Transaction Gas Used Reward
view all blocks ##produced##

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.