Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 5 from a total of 5 transactions
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xA37ca68f...817781483 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-11-07 */ 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; 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
- No Contract Security Audit Submitted- Submit Audit Here
[{"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"}]
Deployed Bytecode
0x60806040526004361061006c5763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663521eb27381146100a85780636341ca0b146100d95780638da5cb5b14610102578063deaa59df14610117578063f2fde38b14610138575b600154604051600160a060020a03909116903480156108fc02916000818181858888f193505050501580156100a5573d6000803e3d6000fd5b50005b3480156100b457600080fd5b506100bd610159565b60408051600160a060020a039092168252519081900360200190f35b3480156100e557600080fd5b50610100600160a060020a0360043581169060243516610168565b005b34801561010e57600080fd5b506100bd61029c565b34801561012357600080fd5b50610100600160a060020a03600435166102ab565b34801561014457600080fd5b50610100600160a060020a03600435166102f1565b600154600160a060020a031681565b60008054600160a060020a0316331461018057600080fd5b50604080517f70a0823100000000000000000000000000000000000000000000000000000000815230600482015290518291600160a060020a0383169163a9059cbb91869184916370a082319160248083019260209291908290030181600087803b1580156101ee57600080fd5b505af1158015610202573d6000803e3d6000fd5b505050506040513d602081101561021857600080fd5b5051604080517c010000000000000000000000000000000000000000000000000000000063ffffffff8616028152600160a060020a039093166004840152602483019190915251604480830192600092919082900301818387803b15801561027f57600080fd5b505af1158015610293573d6000803e3d6000fd5b50505050505050565b600054600160a060020a031681565b600054600160a060020a031633146102c257600080fd5b6001805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b600054600160a060020a0316331461030857600080fd5b600160a060020a038116151561031d57600080fd5b60008054604051600160a060020a03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a36000805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555600a165627a7a723058208db47aceaed417e3775587e0e3fc5f8e6513161cc9bc6776733c96c0306a5c680029
Swarm Source
bzzr://8db47aceaed417e3775587e0e3fc5f8e6513161cc9bc6776733c96c0306a5c68
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.