POL Price: $0.705179 (-0.10%)
Gas: 30 GWei
 

Overview

POL Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 POL

POL Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
623513622024-09-27 19:48:2671 days ago1727466506
Aura: Proxy Factory
 Contract Creation0 POL
605802232024-08-14 13:05:49116 days ago1723640749
Aura: Proxy Factory
 Contract Creation0 POL
597144742024-07-23 14:42:41138 days ago1721745761
Aura: Proxy Factory
 Contract Creation0 POL
597144742024-07-23 14:42:41138 days ago1721745761
Aura: Proxy Factory
 Contract Creation0 POL
597144742024-07-23 14:42:41138 days ago1721745761
Aura: Proxy Factory
 Contract Creation0 POL
569878872024-05-15 7:11:01207 days ago1715757061
Aura: Proxy Factory
 Contract Creation0 POL
569878872024-05-15 7:11:01207 days ago1715757061
Aura: Proxy Factory
 Contract Creation0 POL
569878872024-05-15 7:11:01207 days ago1715757061
Aura: Proxy Factory
 Contract Creation0 POL
515917222023-12-26 20:34:38347 days ago1703622878
Aura: Proxy Factory
 Contract Creation0 POL
515917222023-12-26 20:34:38347 days ago1703622878
Aura: Proxy Factory
 Contract Creation0 POL
515917222023-12-26 20:34:38347 days ago1703622878
Aura: Proxy Factory
 Contract Creation0 POL
515917222023-12-26 20:34:38347 days ago1703622878
Aura: Proxy Factory
 Contract Creation0 POL
499398712023-11-14 16:32:34390 days ago1699979554
Aura: Proxy Factory
 Contract Creation0 POL
483096422023-10-04 8:15:45431 days ago1696407345
Aura: Proxy Factory
 Contract Creation0 POL
483096422023-10-04 8:15:45431 days ago1696407345
Aura: Proxy Factory
 Contract Creation0 POL
478153122023-09-21 16:04:47444 days ago1695312287
Aura: Proxy Factory
 Contract Creation0 POL
478153122023-09-21 16:04:47444 days ago1695312287
Aura: Proxy Factory
 Contract Creation0 POL
475739632023-09-15 13:58:30450 days ago1694786310
Aura: Proxy Factory
 Contract Creation0 POL
464633412023-08-18 16:38:24478 days ago1692376704
Aura: Proxy Factory
 Contract Creation0 POL
463316552023-08-15 9:57:11481 days ago1692093431
Aura: Proxy Factory
 Contract Creation0 POL
463316552023-08-15 9:57:11481 days ago1692093431
Aura: Proxy Factory
 Contract Creation0 POL
458933852023-08-04 9:16:54492 days ago1691140614
Aura: Proxy Factory
 Contract Creation0 POL
458933852023-08-04 9:16:54492 days ago1691140614
Aura: Proxy Factory
 Contract Creation0 POL
455783842023-07-27 11:52:50500 days ago1690458770
Aura: Proxy Factory
 Contract Creation0 POL
455783842023-07-27 11:52:50500 days ago1690458770
Aura: Proxy Factory
 Contract Creation0 POL
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ProxyFactory

Compiler Version
v0.6.12+commit.27d51765

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : ProxyFactory.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.6.12;

/**
 * @title  ProxyFactory
 * @author Optionality
 * @notice Simply clones a smart contract at a given address
 * @dev    Original code https://github.com/optionality/clone-factory/blob/master/contracts/CloneFactory.sol
 */
contract ProxyFactory {
    function clone(address target) external returns (address result) {
        bytes20 targetBytes = bytes20(target);
        assembly {
            let clone := mload(0x40)
            mstore(
                clone,
                0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000
            )
            mstore(add(clone, 0x14), targetBytes)
            mstore(
                add(clone, 0x28),
                0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000
            )
            result := create(0, clone, 0x37)
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"clone","outputs":[{"internalType":"address","name":"result","type":"address"}],"stateMutability":"nonpayable","type":"function"}]

6080604052348015600f57600080fd5b5060f48061001e6000396000f3fe6080604052348015600f57600080fd5b506004361060285760003560e01c80638124b78e14602d575b600080fd5b605060048036036020811015604157600080fd5b50356001600160a01b0316606c565b604080516001600160a01b039092168252519081900360200190f35b6000808260601b9050604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b81528160148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f094935050505056fea2646970667358221220a86c7de40b938b6900d877c4cce71b9db7e7a7354e7889195950a42393ac1fa464736f6c634300060c0033

Deployed Bytecode

0x6080604052348015600f57600080fd5b506004361060285760003560e01c80638124b78e14602d575b600080fd5b605060048036036020811015604157600080fd5b50356001600160a01b0316606c565b604080516001600160a01b039092168252519081900360200190f35b6000808260601b9050604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b81528160148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f094935050505056fea2646970667358221220a86c7de40b938b6900d877c4cce71b9db7e7a7354e7889195950a42393ac1fa464736f6c634300060c0033

Block Transaction 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
[ 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.