ETH Price: $3,822.74 (+5.78%)

Contract

0xD2F5852eB4b0c12c23a97914B2a9D954CF621781
 

Overview

ETH Balance

0.00045659371999917 ETH

Eth Value

$1.75 (@ $3,822.74/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction127975012021-07-10 4:24:361250 days ago1625891076IN
0xD2F5852e...4CF621781
0 ETH0.0012328519
Exec Transaction127974932021-07-10 4:22:341250 days ago1625890954IN
0xD2F5852e...4CF621781
0 ETH0.0015770418.4
Exec Transaction115389602020-12-27 23:58:041445 days ago1609113484IN
0xD2F5852e...4CF621781
0 ETH0.0058648669
Transfer115009512020-12-22 3:57:241450 days ago1608609444IN
0xD2F5852e...4CF621781
0.025 ETH0.0014727765
Exec Transaction104938802020-07-20 3:03:041605 days ago1595214184IN
0xD2F5852e...4CF621781
0 ETH0.0025799543
Transfer94886952020-02-15 16:15:561761 days ago1581783356IN
0xD2F5852e...4CF621781
1.54 ETH0.000090634
Exec Transaction94753722020-02-13 15:00:531763 days ago1581606053IN
0xD2F5852e...4CF621781
0 ETH0.0006165110
Transfer94753672020-02-13 14:59:501763 days ago1581605990IN
0xD2F5852e...4CF621781
2 ETH0.0002492311
Transfer94753642020-02-13 14:59:151763 days ago1581605955IN
0xD2F5852e...4CF621781
2 ETH0.0002265810
Exec Transaction86985862019-10-08 2:05:131891 days ago1570500313IN
0xD2F5852e...4CF621781
0 ETH0.000681859
Transfer71252962019-01-25 18:45:272147 days ago1548441927IN
0xD2F5852e...4CF621781
0.94105569 ETH0.0004220

Latest 9 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
127975012021-07-10 4:24:361250 days ago1625891076
0xD2F5852e...4CF621781
0.00073074 ETH
127975012021-07-10 4:24:361250 days ago1625891076
0xD2F5852e...4CF621781
0.0244 ETH
127974932021-07-10 4:22:341250 days ago1625890954
0xD2F5852e...4CF621781
0.00096244 ETH
104938802020-07-20 3:03:041605 days ago1595214184
0xD2F5852e...4CF621781
0.0024 ETH
104938802020-07-20 3:03:041605 days ago1595214184
0xD2F5852e...4CF621781
5.53573 ETH
94753722020-02-13 15:00:531763 days ago1581606053
0xD2F5852e...4CF621781
0.00074302 ETH
86985862019-10-08 2:05:131891 days ago1570500313
0xD2F5852e...4CF621781
0.00093289 ETH
86985862019-10-08 2:05:131891 days ago1570500313
0xD2F5852e...4CF621781
0.9347 ETH
71317192019-01-27 1:05:582146 days ago1548551158
0xD2F5852e...4CF621781
0.005 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x56772558...4258337d0
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
PayingProxy

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-10-31
*/

pragma solidity ^0.4.24;

contract SecuredTokenTransfer {

    /// @dev Transfers a token and returns if it was a success
    /// @param token Token that should be transferred
    /// @param receiver Receiver to whom the token should be transferred
    /// @param amount The amount of tokens that should be transferred
    function transferToken (
        address token, 
        address receiver,
        uint256 amount
    )
        internal
        returns (bool transferred)
    {
        bytes memory data = abi.encodeWithSignature("transfer(address,uint256)", receiver, amount);
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            let success := call(sub(gas, 10000), token, 0, add(data, 0x20), mload(data), 0, 0)
            let ptr := mload(0x40)
            returndatacopy(ptr, 0, returndatasize)
            switch returndatasize 
            case 0 { transferred := success }
            case 0x20 { transferred := iszero(or(iszero(success), iszero(mload(ptr)))) }
            default { transferred := 0 }
        }
    }
}

contract Proxy {

    // masterCopy always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.
    address masterCopy;

    /// @dev Constructor function sets address of master copy contract.
    /// @param _masterCopy Master copy address.
    constructor(address _masterCopy)
        public
    {
        require(_masterCopy != 0, "Invalid master copy address provided");
        masterCopy = _masterCopy;
    }

    /// @dev Fallback function forwards all transactions and returns all received return data.
    function ()
        external
        payable
    {
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            let masterCopy := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)
            calldatacopy(0, 0, calldatasize())
            let success := delegatecall(gas, masterCopy, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            if eq(success, 0) { revert(0, returndatasize()) }
            return(0, returndatasize())
        }
    }

    function implementation()
        public
        view
        returns (address)
    {
        return masterCopy;
    }

    function proxyType()
        public
        pure
        returns (uint256)
    {
        return 2;
    }
}

contract DelegateConstructorProxy is Proxy {

    /// @dev Constructor function sets address of master copy contract.
    /// @param _masterCopy Master copy address.
    /// @param initializer Data used for a delegate call to initialize the contract.
    constructor(address _masterCopy, bytes initializer) Proxy(_masterCopy)
        public
    {
        if (initializer.length > 0) {
            // solium-disable-next-line security/no-inline-assembly
            assembly {
                let masterCopy := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)
                let success := delegatecall(sub(gas, 10000), masterCopy, add(initializer, 0x20), mload(initializer), 0, 0)
                let ptr := mload(0x40)
                returndatacopy(ptr, 0, returndatasize)
                if eq(success, 0) { revert(ptr, returndatasize) }
            }
        }
    }
}

contract PayingProxy is DelegateConstructorProxy, SecuredTokenTransfer {

    /// @dev Constructor function sets address of master copy contract.
    /// @param _masterCopy Master copy address.
    /// @param initializer Data used for a delegate call to initialize the contract.
    /// @param funder Address that should be paid for the execution of this call
    /// @param paymentToken Token that should be used for the payment (0 is ETH)
    /// @param payment Value that should be paid
    constructor(address _masterCopy, bytes initializer, address funder, address paymentToken, uint256 payment) 
        DelegateConstructorProxy(_masterCopy, initializer)
        public
    {
        if (payment > 0) {
            if (paymentToken == address(0)) {
                 // solium-disable-next-line security/no-send
                require(funder.send(payment), "Could not pay safe creation with ether");
            } else {
                require(transferToken(paymentToken, funder, payment), "Could not pay safe creation with token");
            }
        } 
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"proxyType","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_masterCopy","type":"address"},{"name":"initializer","type":"bytes"},{"name":"funder","type":"address"},{"name":"paymentToken","type":"address"},{"name":"payment","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x60806040526004361061004c576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff1680634555d5c91461008b5780635c60da1b146100b6575b73ffffffffffffffffffffffffffffffffffffffff600054163660008037600080366000845af43d6000803e6000811415610086573d6000fd5b3d6000f35b34801561009757600080fd5b506100a061010d565b6040518082815260200191505060405180910390f35b3480156100c257600080fd5b506100cb610116565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b60006002905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050905600a165627a7a7230582007fffd557dfc8c4d2fdf56ba6381a6ce5b65b6260e1492d87f26c6d4f1d041080029

Swarm Source

bzzr://07fffd557dfc8c4d2fdf56ba6381a6ce5b65b6260e1492d87f26c6d4f1d04108

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.