More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 250 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exec Transaction | 18044106 | 540 days ago | IN | 0 ETH | 0.00683714 | ||||
Exec Transaction | 15631849 | 879 days ago | IN | 0 ETH | 0.00376647 | ||||
Exec Transaction | 14959502 | 985 days ago | IN | 0 ETH | 0.00565529 | ||||
Exec Transaction | 14959477 | 985 days ago | IN | 0 ETH | 0.00596268 | ||||
Exec Transaction | 14959473 | 985 days ago | IN | 0 ETH | 0.00972116 | ||||
Exec Transaction | 14759106 | 1018 days ago | IN | 0 ETH | 0.01749435 | ||||
Exec Transaction | 14758708 | 1018 days ago | IN | 0 ETH | 0.01178312 | ||||
Exec Transaction | 14757834 | 1018 days ago | IN | 0 ETH | 0.01029197 | ||||
Exec Transaction | 14750819 | 1019 days ago | IN | 0 ETH | 0.00633816 | ||||
Exec Transaction | 14750778 | 1019 days ago | IN | 0 ETH | 0.00801786 | ||||
Exec Transaction | 14742400 | 1021 days ago | IN | 0 ETH | 0.00328619 | ||||
Exec Transaction | 14576986 | 1047 days ago | IN | 0 ETH | 0.00364487 | ||||
Exec Transaction | 14576976 | 1047 days ago | IN | 0 ETH | 0.0027857 | ||||
Transfer | 14486881 | 1061 days ago | IN | 0.59004534 ETH | 0.00078166 | ||||
Transfer | 14456134 | 1066 days ago | IN | 0.07757614 ETH | 0.00227234 | ||||
Exec Transaction | 14204729 | 1105 days ago | IN | 0 ETH | 0.01432958 | ||||
Exec Transaction | 14204691 | 1105 days ago | IN | 0 ETH | 0.0055453 | ||||
Exec Transaction | 14167108 | 1110 days ago | IN | 0 ETH | 0.00800576 | ||||
Exec Transaction | 14154222 | 1112 days ago | IN | 0 ETH | 0.00610336 | ||||
Exec Transaction | 14154190 | 1112 days ago | IN | 0 ETH | 0.00850703 | ||||
Exec Transaction | 14154155 | 1112 days ago | IN | 0 ETH | 0.00548264 | ||||
Exec Transaction | 13762485 | 1173 days ago | IN | 0 ETH | 0.00595771 | ||||
Exec Transaction | 13747044 | 1176 days ago | IN | 0 ETH | 0.0092998 | ||||
Exec Transaction | 13746905 | 1176 days ago | IN | 0 ETH | 0.00918616 | ||||
Exec Transaction | 13746848 | 1176 days ago | IN | 0 ETH | 0.00678862 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
14959473 | 985 days ago | 0.5770629 ETH | ||||
14759106 | 1018 days ago | 0.5 ETH | ||||
13747044 | 1176 days ago | 0.1 ETH | ||||
12317334 | 1398 days ago | 3.5 ETH | ||||
11419001 | 1537 days ago | 2 ETH | ||||
11308727 | 1554 days ago | 0.14 ETH | ||||
11289770 | 1557 days ago | 0.01 ETH | ||||
11289328 | 1557 days ago | 0.05 ETH | ||||
11201822 | 1570 days ago | 0.1 ETH | ||||
10562076 | 1669 days ago | 0.00435255 ETH | ||||
10562076 | 1669 days ago | 1 ETH | ||||
10554944 | 1670 days ago | 0.00518958 ETH | ||||
10554944 | 1670 days ago | 4 ETH | ||||
10554940 | 1670 days ago | 0.0065405 ETH | ||||
10554936 | 1670 days ago | 0.00653938 ETH | ||||
10554931 | 1670 days ago | 0.00649719 ETH | ||||
10554926 | 1670 days ago | 0.00605894 ETH | ||||
10554919 | 1670 days ago | 0.00605894 ETH | ||||
10551143 | 1670 days ago | 0.00239948 ETH | ||||
10551143 | 1670 days ago | 1.5 ETH | ||||
10550019 | 1670 days ago | 0.00279012 ETH | ||||
10550019 | 1670 days ago | 1.0784 ETH | ||||
10549977 | 1670 days ago | 0.00422456 ETH | ||||
10549959 | 1670 days ago | 0.00355174 ETH | ||||
10549935 | 1670 days ago | 0.00365344 ETH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
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
Contract Source Code (Solidity)
/** *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
- No Contract Security Audit Submitted- Submit Audit Here
[{"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
Loading...
Loading
Loading...
Loading
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.