ETH Price: $2,127.64 (+7.35%)

Contract

0x1c6fD4Fe709D6d2E6B9b403EC4e873d3c1F136eC
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To

There are no matching entries

Please try again later

Advanced mode:
Parent Transaction Hash Method Block
From
To
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

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

Contract Name:
IntermediateWallet

Compiler Version
v0.4.24+commit.e67f0147

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2018-10-22
*/

pragma solidity ^0.4.18;

contract Ownable {

  address public owner;

  event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

  function Ownable() public {
    owner = msg.sender;
  }

  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }

  function transferOwnership(address newOwner) public onlyOwner {
    require(newOwner != address(0));
    OwnershipTransferred(owner, newOwner);
    owner = newOwner;
  }

}

contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) public view returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

contract IntermediateWallet is Ownable {

  address public wallet;

  function IntermediateWallet() public {
    wallet = 0x246a8bC2bC20826Ba19D8F7FC5799fF69A79388d;
  }

  function setWallet(address newWallet) public onlyOwner {
    wallet = newWallet;
  }

  function retrieveTokens(address to, address anotherToken) public onlyOwner {
    ERC20Basic alienToken = ERC20Basic(anotherToken);
    alienToken.transfer(to, alienToken.balanceOf(this));
  }

  function () payable public {
    wallet.transfer(msg.value);
  }

}

Contract Security Audit

Contract ABI

API
[{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"anotherToken","type":"address"}],"name":"retrieveTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newWallet","type":"address"}],"name":"setWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]

0x608060405234801561001057600080fd5b5060008054600160a060020a031990811633179091556001805490911673246a8bc2bc20826ba19d8f7fc5799ff69a79388d1790556103c6806100546000396000f30060806040526004361061006c5763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663521eb27381146100a85780636341ca0b146100d95780638da5cb5b14610102578063deaa59df14610117578063f2fde38b14610138575b600154604051600160a060020a03909116903480156108fc02916000818181858888f193505050501580156100a5573d6000803e3d6000fd5b50005b3480156100b457600080fd5b506100bd610159565b60408051600160a060020a039092168252519081900360200190f35b3480156100e557600080fd5b50610100600160a060020a0360043581169060243516610168565b005b34801561010e57600080fd5b506100bd6102b1565b34801561012357600080fd5b50610100600160a060020a03600435166102c0565b34801561014457600080fd5b50610100600160a060020a0360043516610306565b600154600160a060020a031681565b60008054600160a060020a0316331461018057600080fd5b50604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290518291600160a060020a0383169163a9059cbb91869184916370a082319160248083019260209291908290030181600087803b1580156101ee57600080fd5b505af1158015610202573d6000803e3d6000fd5b505050506040513d602081101561021857600080fd5b5051604080517c010000000000000000000000000000000000000000000000000000000063ffffffff8616028152600160a060020a03909316600484015260248301919091525160448083019260209291908290030181600087803b15801561028057600080fd5b505af1158015610294573d6000803e3d6000fd5b505050506040513d60208110156102aa57600080fd5b5050505050565b600054600160a060020a031681565b600054600160a060020a031633146102d757600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600054600160a060020a0316331461031d57600080fd5b600160a060020a038116151561033257600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a7230582016fe5f8b83484f94f9f8b263267f757fcad7435613bdfa787f83451b9990e1d10029

Deployed Bytecode

0x60806040526004361061006c5763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663521eb27381146100a85780636341ca0b146100d95780638da5cb5b14610102578063deaa59df14610117578063f2fde38b14610138575b600154604051600160a060020a03909116903480156108fc02916000818181858888f193505050501580156100a5573d6000803e3d6000fd5b50005b3480156100b457600080fd5b506100bd610159565b60408051600160a060020a039092168252519081900360200190f35b3480156100e557600080fd5b50610100600160a060020a0360043581169060243516610168565b005b34801561010e57600080fd5b506100bd6102b1565b34801561012357600080fd5b50610100600160a060020a03600435166102c0565b34801561014457600080fd5b50610100600160a060020a0360043516610306565b600154600160a060020a031681565b60008054600160a060020a0316331461018057600080fd5b50604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290518291600160a060020a0383169163a9059cbb91869184916370a082319160248083019260209291908290030181600087803b1580156101ee57600080fd5b505af1158015610202573d6000803e3d6000fd5b505050506040513d602081101561021857600080fd5b5051604080517c010000000000000000000000000000000000000000000000000000000063ffffffff8616028152600160a060020a03909316600484015260248301919091525160448083019260209291908290030181600087803b15801561028057600080fd5b505af1158015610294573d6000803e3d6000fd5b505050506040513d60208110156102aa57600080fd5b5050505050565b600054600160a060020a031681565b600054600160a060020a031633146102d757600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600054600160a060020a0316331461031d57600080fd5b600160a060020a038116151561033257600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a7230582016fe5f8b83484f94f9f8b263267f757fcad7435613bdfa787f83451b9990e1d10029

Swarm Source

bzzr://16fe5f8b83484f94f9f8b263267f757fcad7435613bdfa787f83451b9990e1d1

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading

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.