More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 382 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Transfer | 18171733 | 892 days ago | IN | 0 ETH | 0.00246425 | ||||
| Transfer | 16423682 | 1137 days ago | IN | 0 ETH | 0.00928986 | ||||
| Set Target | 16299824 | 1154 days ago | IN | 0 ETH | 0.00063934 | ||||
| Set Target | 16270017 | 1159 days ago | IN | 0 ETH | 0.00055851 | ||||
| Transfer | 15540183 | 1261 days ago | IN | 0 ETH | 0.00297842 | ||||
| Transfer | 15427797 | 1279 days ago | IN | 0 ETH | 0.00107254 | ||||
| Set DS Service | 15277915 | 1302 days ago | IN | 0 ETH | 0.00179865 | ||||
| Set DS Service | 14232193 | 1469 days ago | IN | 0 ETH | 0.00463859 | ||||
| Set DS Service | 14232166 | 1469 days ago | IN | 0 ETH | 0.0043145 | ||||
| Set DS Service | 11804680 | 1846 days ago | IN | 0 ETH | 0.00722512 | ||||
| Set Target | 11804600 | 1846 days ago | IN | 0 ETH | 0.0041314 | ||||
| Issue Tokens Cus... | 11687085 | 1865 days ago | IN | 0 ETH | 0.05647695 | ||||
| Issue Tokens Cus... | 11687085 | 1865 days ago | IN | 0 ETH | 0.05647695 | ||||
| Burn | 11618132 | 1875 days ago | IN | 0 ETH | 0.00854818 | ||||
| Burn | 11618132 | 1875 days ago | IN | 0 ETH | 0.00852547 | ||||
| Burn | 11618132 | 1875 days ago | IN | 0 ETH | 0.00852652 | ||||
| Burn | 11618132 | 1875 days ago | IN | 0 ETH | 0.00852652 | ||||
| Burn | 11618132 | 1875 days ago | IN | 0 ETH | 0.00831302 | ||||
| Burn | 11618132 | 1875 days ago | IN | 0 ETH | 0.00852652 | ||||
| Burn | 11618132 | 1875 days ago | IN | 0 ETH | 0.00852652 | ||||
| Burn | 11618132 | 1875 days ago | IN | 0 ETH | 0.00852756 | ||||
| Burn | 11618132 | 1875 days ago | IN | 0 ETH | 0.00852861 | ||||
| Burn | 11618132 | 1875 days ago | IN | 0 ETH | 0.00852756 | ||||
| Burn | 11618132 | 1875 days ago | IN | 0 ETH | 0.00831406 | ||||
| Burn | 11618132 | 1875 days ago | IN | 0 ETH | 0.00852756 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
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.
Contract Name:
Proxy
Compiler Version
v0.4.25+commit.59dbf8f1
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2018-10-09
*/
pragma solidity ^0.4.21;
contract Proxy{
address public owner;
address public target;
event ProxyTargetSet(address target);
constructor () public{
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(msg.sender == owner);
_;
}
function setTarget(address _target) public onlyOwner {
target = _target;
emit ProxyTargetSet(_target);
}
function () payable public {
address _impl = target;
require(_impl != address(0));
assembly {
let ptr := mload(0x40)
calldatacopy(ptr, 0, calldatasize)
let result := delegatecall(gas, _impl, ptr, calldatasize, 0, 0)
let size := returndatasize
returndatacopy(ptr, 0, size)
switch result
case 0 { revert(ptr, size) }
default { return(ptr, size) }
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"constant":false,"inputs":[{"name":"_target","type":"address"}],"name":"setTarget","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"target","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"}],"name":"ProxyTargetSet","type":"event"}]Contract Creation Code
608060405234801561001057600080fd5b5060008054600160a060020a031916331790556101be806100326000396000f3006080604052600436106100565763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663776d1a0181146100935780638da5cb5b146100b6578063d4b83992146100e7575b600154600160a060020a031680151561006e57600080fd5b60405136600082376000803683855af43d806000843e81801561008f578184f35b8184fd5b34801561009f57600080fd5b506100b4600160a060020a03600435166100fc565b005b3480156100c257600080fd5b506100cb610174565b60408051600160a060020a039092168252519081900360200190f35b3480156100f357600080fd5b506100cb610183565b600054600160a060020a0316331461011357600080fd5b60018054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff19909116811790915560408051918252517ff1b1e874978309afba903baec19abf568b0337fcedc05dde58cfea25ec25b94d9181900360200190a150565b600054600160a060020a031681565b600154600160a060020a0316815600a165627a7a723058209232f298b0561889b5c88f1ae7d6826613b5c8cd6cef6f491985f1ef42bef14b0029
Deployed Bytecode
0x6080604052600436106100565763ffffffff7c0100000000000000000000000000000000000000000000000000000000600035041663776d1a0181146100935780638da5cb5b146100b6578063d4b83992146100e7575b600154600160a060020a031680151561006e57600080fd5b60405136600082376000803683855af43d806000843e81801561008f578184f35b8184fd5b34801561009f57600080fd5b506100b4600160a060020a03600435166100fc565b005b3480156100c257600080fd5b506100cb610174565b60408051600160a060020a039092168252519081900360200190f35b3480156100f357600080fd5b506100cb610183565b600054600160a060020a0316331461011357600080fd5b60018054600160a060020a03831673ffffffffffffffffffffffffffffffffffffffff19909116811790915560408051918252517ff1b1e874978309afba903baec19abf568b0337fcedc05dde58cfea25ec25b94d9181900360200190a150565b600054600160a060020a031681565b600154600160a060020a0316815600a165627a7a723058209232f298b0561889b5c88f1ae7d6826613b5c8cd6cef6f491985f1ef42bef14b0029
Swarm Source
bzzr://9232f298b0561889b5c88f1ae7d6826613b5c8cd6cef6f491985f1ef42bef14b
Loading...
Loading
Loading...
Loading
OVERVIEW
Invest in the 22nd Batch of 500 Startups companies through 22X Fund. 500 Startups is a global venture capital seed fund with a well-known accelerator program headquartered in Silicon Valley.Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.