ETH Price: $2,167.30 (+0.90%)

Contract

0xcf8FB6E2d90c6EfBa5F059EFD63B628893953d30
 

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
Withdraw Tokens79886852019-06-19 12:18:412471 days ago1560946721IN
0xcf8FB6E2...893953d30
0 ETH0.000315812
Withdraw Tokens79886562019-06-19 12:12:202471 days ago1560946340IN
0xcf8FB6E2...893953d30
0 ETH0.000045232

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer58573492018-06-26 12:03:252829 days ago1530014605  Contract Creation0 ETH
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 0xFF1428df...4704a03f7
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
PaymentReceiver

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-06-19
*/

pragma solidity ^0.4.19;

/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  uint256 public totalSupply;
  function balanceOf(address who) public constant returns (uint256);
  function transfer(address to, uint256 value) public returns (bool);
  event Transfer(address indexed from, address indexed to, uint256 value);
}

/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender) public constant returns (uint256);
  function transferFrom(address from, address to, uint256 value) public returns (bool);
  function approve(address spender, uint256 value) public returns (bool);
  event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract PaymentReceiver
{
 address private constant taxman = 0xB13D7Dab5505512924CB8E1bE970B849009d34Da;
 address private constant store = 0x23859DBF88D714125C65d1B41a8808cADB199D9E;
 address private constant pkt = 0x2604fa406be957e542beb89e6754fcde6815e83f;

  modifier onlyTaxman { require(msg.sender == taxman); _; }

  function withdrawTokens(uint256 value) external onlyTaxman
  {
    ERC20 token = ERC20(pkt);
    token.transfer(store, value);
  }
}

Contract Security Audit

Contract ABI

API
[{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"withdrawTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

0x608060405234801561001057600080fd5b506101fd806100206000396000f300608060405260043610610041576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063315a095d14610046575b600080fd5b34801561005257600080fd5b5061007160048036038101908080359060200190929190505050610073565b005b600073b13d7dab5505512924cb8e1be970b849009d34da73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156100c357600080fd5b732604fa406be957e542beb89e6754fcde6815e83f90508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb7323859dbf88d714125c65d1b41a8808cadb199d9e846040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561019157600080fd5b505af11580156101a5573d6000803e3d6000fd5b505050506040513d60208110156101bb57600080fd5b81019080805190602001909291905050505050505600a165627a7a7230582037e513c24d750a5c72fa6100074e3380fbddc8579af35a8deaf0485a136dba4a0029

Deployed Bytecode

0x608060405260043610610041576000357c0100000000000000000000000000000000000000000000000000000000900463ffffffff168063315a095d14610046575b600080fd5b34801561005257600080fd5b5061007160048036038101908080359060200190929190505050610073565b005b600073b13d7dab5505512924cb8e1be970b849009d34da73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161415156100c357600080fd5b732604fa406be957e542beb89e6754fcde6815e83f90508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb7323859dbf88d714125c65d1b41a8808cadb199d9e846040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561019157600080fd5b505af11580156101a5573d6000803e3d6000fd5b505050506040513d60208110156101bb57600080fd5b81019080805190602001909291905050505050505600a165627a7a7230582037e513c24d750a5c72fa6100074e3380fbddc8579af35a8deaf0485a136dba4a0029

Swarm Source

bzzr://37e513c24d750a5c72fa6100074e3380fbddc8579af35a8deaf0485a136dba4a

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
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.