ETH Price: $3,074.84 (-5.42%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve198248642024-05-08 10:51:59270 days ago1715165519IN
Memecoin: Delegate
0 ETH0.000105124.80475473
Approve198248492024-05-08 10:48:59270 days ago1715165339IN
Memecoin: Delegate
0 ETH0.000093634.27974934
Approve198244822024-05-08 9:34:59270 days ago1715160899IN
Memecoin: Delegate
0 ETH0.000087534.0008721
Approve198244482024-05-08 9:28:11270 days ago1715160491IN
Memecoin: Delegate
0 ETH0.000181978.31721781
Approve198244432024-05-08 9:27:11270 days ago1715160431IN
Memecoin: Delegate
0 ETH0.000091864.19861797
Approve198244252024-05-08 9:23:35270 days ago1715160215IN
Memecoin: Delegate
0 ETH0.000089254.07963092
Approve198243782024-05-08 9:13:59270 days ago1715159639IN
Memecoin: Delegate
0 ETH0.000110465.04871473
Add Authorized A...194149072024-03-11 22:43:47327 days ago1710197027IN
Memecoin: Delegate
0 ETH0.0013677356.13282703
Transfer Ownersh...194131842024-03-11 16:56:47327 days ago1710176207IN
Memecoin: Delegate
0 ETH0.0025431488.90576722
Add Authorized A...194105612024-03-11 8:08:11328 days ago1710144491IN
Memecoin: Delegate
0 ETH0.0045010259.89792154
Add Authorized A...194105602024-03-11 8:07:59328 days ago1710144479IN
Memecoin: Delegate
0 ETH0.0053242657.71876644

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
MemecoinDelegate

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
Yes with 200 runs

Other Settings:
shanghai EvmVersion
File 1 of 10 : MemecoinDelegate.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.20;

import {AuthorizableV08} from "@0x/contracts-utils/contracts/src/v08/AuthorizableV08.sol";
import {IERC20} from "@openzeppelin5/contracts/token/ERC20/IERC20.sol";

import {IMemecoinDelegate} from "./interfaces/IMemecoinDelegate.sol";

contract MemecoinDelegate is AuthorizableV08, IMemecoinDelegate {
    address public immutable memecoin;

    constructor(address _memecoin) {
        memecoin = _memecoin;
    }

    function transferFrom(address from, address to, uint256 amount) external onlyAuthorized returns (bool) {
        return IERC20(memecoin).transferFrom(from, to, amount);
    }

    function allowance(address user) external view returns (uint256) {
        return IERC20(memecoin).allowance(user, address(this));
    }

    function isAuthorized(address addr) external view returns (bool) {
        return authorized[addr];
    }
}

File 2 of 10 : AuthorizableV08.sol
// SPDX-License-Identifier: Apache-2.0
/*

  Copyright 2020 ZeroEx Intl.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

*/

pragma solidity ^0.8;

import "./interfaces/IAuthorizableV08.sol";
import "./errors/LibRichErrorsV08.sol";
import "./errors/LibAuthorizableRichErrorsV08.sol";
import "./OwnableV08.sol";

contract AuthorizableV08 is OwnableV08, IAuthorizableV08 {
    /// @dev Only authorized addresses can invoke functions with this modifier.
    modifier onlyAuthorized() {
        _assertSenderIsAuthorized();
        _;
    }

    // @dev Whether an address is authorized to call privileged functions.
    // @param 0 Address to query.
    // @return 0 Whether the address is authorized.
    mapping(address => bool) public override authorized;
    // @dev Whether an address is authorized to call privileged functions.
    // @param 0 Index of authorized address.
    // @return 0 Authorized address.
    address[] public override authorities;

    /// @dev Initializes the `owner` address.
    constructor() OwnableV08() {}

    /// @dev Authorizes an address.
    /// @param target Address to authorize.
    function addAuthorizedAddress(address target) external override onlyOwner {
        _addAuthorizedAddress(target);
    }

    /// @dev Removes authorizion of an address.
    /// @param target Address to remove authorization from.
    function removeAuthorizedAddress(address target) external override onlyOwner {
        if (!authorized[target]) {
            LibRichErrorsV08.rrevert(LibAuthorizableRichErrorsV08.TargetNotAuthorizedError(target));
        }
        for (uint256 i = 0; i < authorities.length; i++) {
            if (authorities[i] == target) {
                _removeAuthorizedAddressAtIndex(target, i);
                break;
            }
        }
    }

    /// @dev Removes authorizion of an address.
    /// @param target Address to remove authorization from.
    /// @param index Index of target in authorities array.
    function removeAuthorizedAddressAtIndex(address target, uint256 index) external override onlyOwner {
        _removeAuthorizedAddressAtIndex(target, index);
    }

    /// @dev Gets all authorized addresses.
    /// @return Array of authorized addresses.
    function getAuthorizedAddresses() external view override returns (address[] memory) {
        return authorities;
    }

    /// @dev Reverts if msg.sender is not authorized.
    function _assertSenderIsAuthorized() internal view {
        if (!authorized[msg.sender]) {
            LibRichErrorsV08.rrevert(LibAuthorizableRichErrorsV08.SenderNotAuthorizedError(msg.sender));
        }
    }

    /// @dev Authorizes an address.
    /// @param target Address to authorize.
    function _addAuthorizedAddress(address target) internal {
        // Ensure that the target is not the zero address.
        if (target == address(0)) {
            LibRichErrorsV08.rrevert(LibAuthorizableRichErrorsV08.ZeroCantBeAuthorizedError());
        }

        // Ensure that the target is not already authorized.
        if (authorized[target]) {
            LibRichErrorsV08.rrevert(LibAuthorizableRichErrorsV08.TargetAlreadyAuthorizedError(target));
        }

        authorized[target] = true;
        authorities.push(target);
        emit AuthorizedAddressAdded(target, msg.sender);
    }

    /// @dev Removes authorizion of an address.
    /// @param target Address to remove authorization from.
    /// @param index Index of target in authorities array.
    function _removeAuthorizedAddressAtIndex(address target, uint256 index) internal {
        if (!authorized[target]) {
            LibRichErrorsV08.rrevert(LibAuthorizableRichErrorsV08.TargetNotAuthorizedError(target));
        }
        if (index >= authorities.length) {
            LibRichErrorsV08.rrevert(LibAuthorizableRichErrorsV08.IndexOutOfBoundsError(index, authorities.length));
        }
        if (authorities[index] != target) {
            LibRichErrorsV08.rrevert(
                LibAuthorizableRichErrorsV08.AuthorizedAddressMismatchError(authorities[index], target)
            );
        }

        delete authorized[target];
        authorities[index] = authorities[authorities.length - 1];
        authorities.pop();
        emit AuthorizedAddressRemoved(target, msg.sender);
    }
}

File 3 of 10 : LibAuthorizableRichErrorsV08.sol
// SPDX-License-Identifier: Apache-2.0
/*

  Copyright 2020 ZeroEx Intl.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

*/

pragma solidity ^0.8;

library LibAuthorizableRichErrorsV08 {
    // bytes4(keccak256("AuthorizedAddressMismatchError(address,address)"))
    bytes4 internal constant AUTHORIZED_ADDRESS_MISMATCH_ERROR_SELECTOR = 0x140a84db;

    // bytes4(keccak256("IndexOutOfBoundsError(uint256,uint256)"))
    bytes4 internal constant INDEX_OUT_OF_BOUNDS_ERROR_SELECTOR = 0xe9f83771;

    // bytes4(keccak256("SenderNotAuthorizedError(address)"))
    bytes4 internal constant SENDER_NOT_AUTHORIZED_ERROR_SELECTOR = 0xb65a25b9;

    // bytes4(keccak256("TargetAlreadyAuthorizedError(address)"))
    bytes4 internal constant TARGET_ALREADY_AUTHORIZED_ERROR_SELECTOR = 0xde16f1a0;

    // bytes4(keccak256("TargetNotAuthorizedError(address)"))
    bytes4 internal constant TARGET_NOT_AUTHORIZED_ERROR_SELECTOR = 0xeb5108a2;

    // bytes4(keccak256("ZeroCantBeAuthorizedError()"))
    bytes internal constant ZERO_CANT_BE_AUTHORIZED_ERROR_BYTES = hex"57654fe4";

    function AuthorizedAddressMismatchError(address authorized, address target) internal pure returns (bytes memory) {
        return abi.encodeWithSelector(AUTHORIZED_ADDRESS_MISMATCH_ERROR_SELECTOR, authorized, target);
    }

    function IndexOutOfBoundsError(uint256 index, uint256 length) internal pure returns (bytes memory) {
        return abi.encodeWithSelector(INDEX_OUT_OF_BOUNDS_ERROR_SELECTOR, index, length);
    }

    function SenderNotAuthorizedError(address sender) internal pure returns (bytes memory) {
        return abi.encodeWithSelector(SENDER_NOT_AUTHORIZED_ERROR_SELECTOR, sender);
    }

    function TargetAlreadyAuthorizedError(address target) internal pure returns (bytes memory) {
        return abi.encodeWithSelector(TARGET_ALREADY_AUTHORIZED_ERROR_SELECTOR, target);
    }

    function TargetNotAuthorizedError(address target) internal pure returns (bytes memory) {
        return abi.encodeWithSelector(TARGET_NOT_AUTHORIZED_ERROR_SELECTOR, target);
    }

    function ZeroCantBeAuthorizedError() internal pure returns (bytes memory) {
        return ZERO_CANT_BE_AUTHORIZED_ERROR_BYTES;
    }
}

File 4 of 10 : LibOwnableRichErrorsV08.sol
// SPDX-License-Identifier: Apache-2.0
/*

  Copyright 2020 ZeroEx Intl.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

*/
pragma solidity ^0.8;

library LibOwnableRichErrorsV08 {
    // bytes4(keccak256("OnlyOwnerError(address,address)"))
    bytes4 internal constant ONLY_OWNER_ERROR_SELECTOR = 0x1de45ad1;

    // bytes4(keccak256("TransferOwnerToZeroError()"))
    bytes internal constant TRANSFER_OWNER_TO_ZERO_ERROR_BYTES = hex"e69edc3e";

    function OnlyOwnerError(address sender, address owner) internal pure returns (bytes memory) {
        return abi.encodeWithSelector(ONLY_OWNER_ERROR_SELECTOR, sender, owner);
    }

    function TransferOwnerToZeroError() internal pure returns (bytes memory) {
        return TRANSFER_OWNER_TO_ZERO_ERROR_BYTES;
    }
}

File 5 of 10 : LibRichErrorsV08.sol
// SPDX-License-Identifier: Apache-2.0
/*

  Copyright 2020 ZeroEx Intl.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

*/

pragma solidity ^0.8;

library LibRichErrorsV08 {
    // bytes4(keccak256("Error(string)"))
    bytes4 internal constant STANDARD_ERROR_SELECTOR = 0x08c379a0;

    /// @dev ABI encode a standard, string revert error payload.
    ///      This is the same payload that would be included by a `revert(string)`
    ///      solidity statement. It has the function signature `Error(string)`.
    /// @param message The error string.
    /// @return The ABI encoded error.
    function StandardError(string memory message) internal pure returns (bytes memory) {
        return abi.encodeWithSelector(STANDARD_ERROR_SELECTOR, bytes(message));
    }

    /// @dev Reverts an encoded rich revert reason `errorData`.
    /// @param errorData ABI encoded error data.
    function rrevert(bytes memory errorData) internal pure {
        assembly ("memory-safe") {
            revert(add(errorData, 0x20), mload(errorData))
        }
    }
}

File 6 of 10 : IAuthorizableV08.sol
// SPDX-License-Identifier: Apache-2.0
/*

  Copyright 2020 ZeroEx Intl.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

*/

pragma solidity ^0.8;

import "./IOwnableV08.sol";

interface IAuthorizableV08 is IOwnableV08 {
    // Event logged when a new address is authorized.
    event AuthorizedAddressAdded(address indexed target, address indexed caller);

    // Event logged when a currently authorized address is unauthorized.
    event AuthorizedAddressRemoved(address indexed target, address indexed caller);

    /// @dev Authorizes an address.
    /// @param target Address to authorize.
    function addAuthorizedAddress(address target) external;

    /// @dev Removes authorizion of an address.
    /// @param target Address to remove authorization from.
    function removeAuthorizedAddress(address target) external;

    /// @dev Removes authorizion of an address.
    /// @param target Address to remove authorization from.
    /// @param index Index of target in authorities array.
    function removeAuthorizedAddressAtIndex(address target, uint256 index) external;

    /// @dev Gets all authorized addresses.
    /// @return authorizedAddresses Array of authorized addresses.
    function getAuthorizedAddresses() external view returns (address[] memory authorizedAddresses);

    /// @dev Whether an adderss is authorized to call privileged functions.
    /// @param addr Address to query.
    /// @return isAuthorized Whether the address is authorized.
    function authorized(address addr) external view returns (bool isAuthorized);

    /// @dev All addresseses authorized to call privileged functions.
    /// @param idx Index of authorized address.
    /// @return addr Authorized address.
    function authorities(uint256 idx) external view returns (address addr);
}

File 7 of 10 : IOwnableV08.sol
// SPDX-License-Identifier: Apache-2.0
/*

  Copyright 2020 ZeroEx Intl.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

*/

pragma solidity ^0.8;

interface IOwnableV08 {
    /// @dev Emitted by Ownable when ownership is transferred.
    /// @param previousOwner The previous owner of the contract.
    /// @param newOwner The new owner of the contract.
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /// @dev Transfers ownership of the contract to a new address.
    /// @param newOwner The address that will become the owner.
    function transferOwnership(address newOwner) external;

    /// @dev The owner of this contract.
    /// @return ownerAddress The owner address.
    function owner() external view returns (address ownerAddress);
}

File 8 of 10 : OwnableV08.sol
// SPDX-License-Identifier: Apache-2.0
/*

  Copyright 2019 ZeroEx Intl.

  Licensed under the Apache License, Version 2.0 (the "License");
  you may not use this file except in compliance with the License.
  You may obtain a copy of the License at

    http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.

*/

pragma solidity ^0.8;

import "./interfaces/IOwnableV08.sol";
import "./errors/LibRichErrorsV08.sol";
import "./errors/LibOwnableRichErrorsV08.sol";

contract OwnableV08 is IOwnableV08 {
    /// @dev The owner of this contract.
    /// @return 0 The owner address.
    address public override owner;

    constructor() {
        owner = msg.sender;
    }

    modifier onlyOwner() {
        _assertSenderIsOwner();
        _;
    }

    /// @dev Change the owner of this contract.
    /// @param newOwner New owner address.
    function transferOwnership(address newOwner) public override onlyOwner {
        if (newOwner == address(0)) {
            LibRichErrorsV08.rrevert(LibOwnableRichErrorsV08.TransferOwnerToZeroError());
        } else {
            owner = newOwner;
            emit OwnershipTransferred(msg.sender, newOwner);
        }
    }

    function _assertSenderIsOwner() internal view {
        if (msg.sender != owner) {
            LibRichErrorsV08.rrevert(LibOwnableRichErrorsV08.OnlyOwnerError(msg.sender, owner));
        }
    }
}

File 9 of 10 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.20;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 10 of 10 : IMemecoinDelegate.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.20;

interface IMemecoinDelegate {
    function memecoin() external view returns (address);
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
    function allowance(address user) external view returns (uint256);
    function isAuthorized(address addr) external view returns (bool);
}

Settings
{
  "evmVersion": "shanghai",
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_memecoin","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":true,"internalType":"address","name":"caller","type":"address"}],"name":"AuthorizedAddressAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"target","type":"address"},{"indexed":true,"internalType":"address","name":"caller","type":"address"}],"name":"AuthorizedAddressRemoved","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":[{"internalType":"address","name":"target","type":"address"}],"name":"addAuthorizedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"authorities","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"authorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAuthorizedAddresses","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"isAuthorized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"memecoin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"removeAuthorizedAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"removeAuthorizedAddressAtIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405234801561000f575f80fd5b50604051610be4380380610be483398101604081905261002e91610050565b5f80546001600160a01b031916331790556001600160a01b031660805261007d565b5f60208284031215610060575f80fd5b81516001600160a01b0381168114610076575f80fd5b9392505050565b608051610b426100a25f395f818160ba0152818161024901526102e20152610b425ff3fe608060405234801561000f575f80fd5b50600436106100b1575f3560e01c80638da5cb5b1161006e5780638da5cb5b146101785780639ad267441461018a578063b91816111461019d578063d39de6e9146101bf578063f2fde38b146101d4578063fe9fbb80146101e7575f80fd5b80631a37ea11146100b557806323b872dd146100f95780633e5beab91461011c57806342f1181e1461013d578063494503d4146101525780637071293914610165575b5f80fd5b6100dc7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020015b60405180910390f35b61010c61010736600461098b565b610212565b60405190151581526020016100f0565b61012f61012a3660046109c4565b6102bb565b6040519081526020016100f0565b61015061014b3660046109c4565b610353565b005b6100dc6101603660046109e4565b610367565b6101506101733660046109c4565b61038f565b5f546100dc906001600160a01b031681565b6101506101983660046109fb565b610429565b61010c6101ab3660046109c4565b60016020525f908152604090205460ff1681565b6101c761043b565b6040516100f09190610a23565b6101506101e23660046109c4565b61049b565b61010c6101f53660046109c4565b6001600160a01b03165f9081526001602052604090205460ff1690565b5f61021b61051f565b6040516323b872dd60e01b81526001600160a01b0385811660048301528481166024830152604482018490527f000000000000000000000000000000000000000000000000000000000000000016906323b872dd906064016020604051808303815f875af115801561028f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102b39190610a6f565b949350505050565b604051636eb1769f60e11b81526001600160a01b0382811660048301523060248301525f917f00000000000000000000000000000000000000000000000000000000000000009091169063dd62ed3e90604401602060405180830381865afa158015610329573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061034d9190610a8e565b92915050565b61035b610543565b6103648161056e565b50565b60028181548110610376575f80fd5b5f918252602090912001546001600160a01b0316905081565b610397610543565b6001600160a01b0381165f9081526001602052604090205460ff166103c7576103c76103c282610659565b6106b3565b5f5b60025481101561041357816001600160a01b0316600282815481106103f0576103f0610aa5565b5f918252602090912001546001600160a01b0316036104175761041382826106bb565b5050565b8061042181610acd565b9150506103c9565b610431610543565b61041382826106bb565b6060600280548060200260200160405190810160405280929190818152602001828054801561049157602002820191905f5260205f20905b81546001600160a01b03168152600190910190602001808311610473575b5050505050905090565b6104a3610543565b6001600160a01b0381166104d5576103646103c2604080518082019091526004815263734f6e1f60e11b602082015290565b5f80546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b335f9081526001602052604090205460ff16610541576105416103c23361086d565b565b5f546001600160a01b03163314610541575f54610541906103c29033906001600160a01b0316610893565b6001600160a01b0381166105a0576105a06103c260408051808201909152600481526315d953f960e21b602082015290565b6001600160a01b0381165f9081526001602052604090205460ff16156105cc576105cc6103c2826108f7565b6001600160a01b0381165f818152600160208190526040808320805460ff19168317905560028054928301815583527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace90910180546001600160a01b03191684179055513392917f3147867c59d17e8fa9d522465651d44aae0a9e38f902f3475b97e58072f0ed4c91a350565b6040516001600160a01b03821660248201526060906375a8845160e11b906044015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b805160208201fd5b6001600160a01b0382165f9081526001602052604090205460ff166106e6576106e66103c283610659565b6002548110610701576107016103c28260028054905061091d565b816001600160a01b03166002828154811061071e5761071e610aa5565b5f918252602090912001546001600160a01b03161461076a5761076a6103c26002838154811061075057610750610aa5565b5f918252602090912001546001600160a01b031684610942565b6001600160a01b0382165f908152600160208190526040909120805460ff1916905560028054909161079b91610ae5565b815481106107ab576107ab610aa5565b5f91825260209091200154600280546001600160a01b0390921691839081106107d6576107d6610aa5565b905f5260205f20015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550600280548061081257610812610af8565b5f8281526020812082015f1990810180546001600160a01b031916905590910190915560405133916001600160a01b038516917f1f32c1b084e2de0713b8fb16bd46bb9df710a3dbeae2f3ca93af46e016dcc6b09190a35050565b6040516001600160a01b038216602482015260609063b65a25b960e01b9060440161067b565b6040516001600160a01b03808416602483015282166044820152606090631de45ad160e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152905092915050565b6040516001600160a01b03821660248201526060906306f0b78d60e51b9060440161067b565b604051602481018390526044810182905260609063e9f8377160e01b906064016108bd565b6040516001600160a01b0380841660248301528216604482015260609063140a84db60e01b906064016108bd565b80356001600160a01b0381168114610986575f80fd5b919050565b5f805f6060848603121561099d575f80fd5b6109a684610970565b92506109b460208501610970565b9150604084013590509250925092565b5f602082840312156109d4575f80fd5b6109dd82610970565b9392505050565b5f602082840312156109f4575f80fd5b5035919050565b5f8060408385031215610a0c575f80fd5b610a1583610970565b946020939093013593505050565b602080825282518282018190525f9190848201906040850190845b81811015610a635783516001600160a01b031683529284019291840191600101610a3e565b50909695505050505050565b5f60208284031215610a7f575f80fd5b815180151581146109dd575f80fd5b5f60208284031215610a9e575f80fd5b5051919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f60018201610ade57610ade610ab9565b5060010190565b8181038181111561034d5761034d610ab9565b634e487b7160e01b5f52603160045260245ffdfea2646970667358221220606db200967c77c26051c513908175b3017f7ed28eb8c8e7ee9cfc1a34a4497064736f6c63430008150033000000000000000000000000b131f4a55907b10d1f0a50d8ab8fa09ec342cd74

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100b1575f3560e01c80638da5cb5b1161006e5780638da5cb5b146101785780639ad267441461018a578063b91816111461019d578063d39de6e9146101bf578063f2fde38b146101d4578063fe9fbb80146101e7575f80fd5b80631a37ea11146100b557806323b872dd146100f95780633e5beab91461011c57806342f1181e1461013d578063494503d4146101525780637071293914610165575b5f80fd5b6100dc7f000000000000000000000000b131f4a55907b10d1f0a50d8ab8fa09ec342cd7481565b6040516001600160a01b0390911681526020015b60405180910390f35b61010c61010736600461098b565b610212565b60405190151581526020016100f0565b61012f61012a3660046109c4565b6102bb565b6040519081526020016100f0565b61015061014b3660046109c4565b610353565b005b6100dc6101603660046109e4565b610367565b6101506101733660046109c4565b61038f565b5f546100dc906001600160a01b031681565b6101506101983660046109fb565b610429565b61010c6101ab3660046109c4565b60016020525f908152604090205460ff1681565b6101c761043b565b6040516100f09190610a23565b6101506101e23660046109c4565b61049b565b61010c6101f53660046109c4565b6001600160a01b03165f9081526001602052604090205460ff1690565b5f61021b61051f565b6040516323b872dd60e01b81526001600160a01b0385811660048301528481166024830152604482018490527f000000000000000000000000b131f4a55907b10d1f0a50d8ab8fa09ec342cd7416906323b872dd906064016020604051808303815f875af115801561028f573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906102b39190610a6f565b949350505050565b604051636eb1769f60e11b81526001600160a01b0382811660048301523060248301525f917f000000000000000000000000b131f4a55907b10d1f0a50d8ab8fa09ec342cd749091169063dd62ed3e90604401602060405180830381865afa158015610329573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061034d9190610a8e565b92915050565b61035b610543565b6103648161056e565b50565b60028181548110610376575f80fd5b5f918252602090912001546001600160a01b0316905081565b610397610543565b6001600160a01b0381165f9081526001602052604090205460ff166103c7576103c76103c282610659565b6106b3565b5f5b60025481101561041357816001600160a01b0316600282815481106103f0576103f0610aa5565b5f918252602090912001546001600160a01b0316036104175761041382826106bb565b5050565b8061042181610acd565b9150506103c9565b610431610543565b61041382826106bb565b6060600280548060200260200160405190810160405280929190818152602001828054801561049157602002820191905f5260205f20905b81546001600160a01b03168152600190910190602001808311610473575b5050505050905090565b6104a3610543565b6001600160a01b0381166104d5576103646103c2604080518082019091526004815263734f6e1f60e11b602082015290565b5f80546001600160a01b0319166001600160a01b0383169081178255604051909133917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a350565b335f9081526001602052604090205460ff16610541576105416103c23361086d565b565b5f546001600160a01b03163314610541575f54610541906103c29033906001600160a01b0316610893565b6001600160a01b0381166105a0576105a06103c260408051808201909152600481526315d953f960e21b602082015290565b6001600160a01b0381165f9081526001602052604090205460ff16156105cc576105cc6103c2826108f7565b6001600160a01b0381165f818152600160208190526040808320805460ff19168317905560028054928301815583527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace90910180546001600160a01b03191684179055513392917f3147867c59d17e8fa9d522465651d44aae0a9e38f902f3475b97e58072f0ed4c91a350565b6040516001600160a01b03821660248201526060906375a8845160e11b906044015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b03199093169290921790915292915050565b805160208201fd5b6001600160a01b0382165f9081526001602052604090205460ff166106e6576106e66103c283610659565b6002548110610701576107016103c28260028054905061091d565b816001600160a01b03166002828154811061071e5761071e610aa5565b5f918252602090912001546001600160a01b03161461076a5761076a6103c26002838154811061075057610750610aa5565b5f918252602090912001546001600160a01b031684610942565b6001600160a01b0382165f908152600160208190526040909120805460ff1916905560028054909161079b91610ae5565b815481106107ab576107ab610aa5565b5f91825260209091200154600280546001600160a01b0390921691839081106107d6576107d6610aa5565b905f5260205f20015f6101000a8154816001600160a01b0302191690836001600160a01b03160217905550600280548061081257610812610af8565b5f8281526020812082015f1990810180546001600160a01b031916905590910190915560405133916001600160a01b038516917f1f32c1b084e2de0713b8fb16bd46bb9df710a3dbeae2f3ca93af46e016dcc6b09190a35050565b6040516001600160a01b038216602482015260609063b65a25b960e01b9060440161067b565b6040516001600160a01b03808416602483015282166044820152606090631de45ad160e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152905092915050565b6040516001600160a01b03821660248201526060906306f0b78d60e51b9060440161067b565b604051602481018390526044810182905260609063e9f8377160e01b906064016108bd565b6040516001600160a01b0380841660248301528216604482015260609063140a84db60e01b906064016108bd565b80356001600160a01b0381168114610986575f80fd5b919050565b5f805f6060848603121561099d575f80fd5b6109a684610970565b92506109b460208501610970565b9150604084013590509250925092565b5f602082840312156109d4575f80fd5b6109dd82610970565b9392505050565b5f602082840312156109f4575f80fd5b5035919050565b5f8060408385031215610a0c575f80fd5b610a1583610970565b946020939093013593505050565b602080825282518282018190525f9190848201906040850190845b81811015610a635783516001600160a01b031683529284019291840191600101610a3e565b50909695505050505050565b5f60208284031215610a7f575f80fd5b815180151581146109dd575f80fd5b5f60208284031215610a9e575f80fd5b5051919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f60018201610ade57610ade610ab9565b5060010190565b8181038181111561034d5761034d610ab9565b634e487b7160e01b5f52603160045260245ffdfea2646970667358221220606db200967c77c26051c513908175b3017f7ed28eb8c8e7ee9cfc1a34a4497064736f6c63430008150033

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

000000000000000000000000b131f4a55907b10d1f0a50d8ab8fa09ec342cd74

-----Decoded View---------------
Arg [0] : _memecoin (address): 0xb131f4A55907B10d1F0A50d8ab8FA09EC342cd74

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000b131f4a55907b10d1f0a50d8ab8fa09ec342cd74


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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