ETH Price: $2,397.77 (-4.44%)

Contract

0x60d4a8F3947BfC3a836a2b311e9A4c8325f985f5
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
0x60806040153704132022-08-19 9:07:44747 days ago1660900064IN
 Create: FraxProxyFactory
0 ETH0.0013669512.23147046

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block From To
168407972023-03-16 13:47:35537 days ago1678974455
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
168407972023-03-16 13:47:35537 days ago1678974455
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
168407972023-03-16 13:47:35537 days ago1678974455
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
168407972023-03-16 13:47:35537 days ago1678974455
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
168404902023-03-16 12:45:35537 days ago1678970735
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
168403222023-03-16 12:11:11537 days ago1678968671
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
168403202023-03-16 12:10:47537 days ago1678968647
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
168403172023-03-16 12:10:11537 days ago1678968611
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
168402852023-03-16 12:03:23537 days ago1678968203
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
168402742023-03-16 12:01:11537 days ago1678968071
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
168402682023-03-16 11:59:59537 days ago1678967999
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
168402622023-03-16 11:58:47537 days ago1678967927
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
168402592023-03-16 11:58:11537 days ago1678967891
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
168344282023-03-15 16:17:35538 days ago1678897055
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
168344062023-03-15 16:13:11538 days ago1678896791
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
168247402023-03-14 7:35:47540 days ago1678779347
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
162125072022-12-18 15:35:11625 days ago1671377711
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
157318182022-10-12 11:45:23693 days ago1665575123
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
157318082022-10-12 11:43:23693 days ago1665575003
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
157318052022-10-12 11:42:47693 days ago1665574967
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
157317992022-10-12 11:41:35693 days ago1665574895
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
157317952022-10-12 11:40:47693 days ago1665574847
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
157317922022-10-12 11:40:11693 days ago1665574811
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
157317852022-10-12 11:38:35693 days ago1665574715
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
157317822022-10-12 11:37:59693 days ago1665574679
0x60d4a8F3...325f985f5
 Contract Creation0 ETH
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
FraxProxyFactory

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 1 : FraxProxyFactory.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;

// original code
// https://github.com/optionality/clone-factory/blob/master/contracts/CloneFactory.sol
contract FraxProxyFactory {
	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
{
  "evmVersion": "london",
  "libraries": {},
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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"}]

608060405234801561001057600080fd5b5061010e806100206000396000f3fe6080604052348015600f57600080fd5b506004361060285760003560e01c80638124b78e14602d575b600080fd5b603c603836600460aa565b6058565b6040516001600160a01b03909116815260200160405180910390f35b6000808260601b9050604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b81528160148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f0949350505050565b60006020828403121560bb57600080fd5b81356001600160a01b038116811460d157600080fd5b939250505056fea264697066735822122094c5f4612fe785f50e01fdfd1ae7cf3ef6b517b9ee6dc37657bceb546e77013464736f6c63430008070033

Deployed Bytecode

0x6080604052348015600f57600080fd5b506004361060285760003560e01c80638124b78e14602d575b600080fd5b603c603836600460aa565b6058565b6040516001600160a01b03909116815260200160405180910390f35b6000808260601b9050604051733d602d80600a3d3981f3363d3d373d3d3d363d7360601b81528160148201526e5af43d82803e903d91602b57fd5bf360881b60288201526037816000f0949350505050565b60006020828403121560bb57600080fd5b81356001600160a01b038116811460d157600080fd5b939250505056fea264697066735822122094c5f4612fe785f50e01fdfd1ae7cf3ef6b517b9ee6dc37657bceb546e77013464736f6c63430008070033

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  ]
[ 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.