ETH Price: $2,724.39 (+1.70%)

Contract

0xEDdcBFebB20935b1Fa1d432368C0110755c51334
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Easy Commit62038802018-08-24 7:46:022371 days ago1535096762IN
0xEDdcBFeb...755c51334
0 ETH0.000147272.6
Easy Commit62038632018-08-24 7:40:402371 days ago1535096440IN
0xEDdcBFeb...755c51334
0 ETH0.000097032.4
Change Manager62038522018-08-24 7:38:202371 days ago1535096300IN
0xEDdcBFeb...755c51334
0 ETH0.000086853
Easy Commit62038162018-08-24 7:30:162371 days ago1535095816IN
0xEDdcBFeb...755c51334
0 ETH0.000086723.6
Easy Commit62027692018-08-24 3:14:322371 days ago1535080472IN
0xEDdcBFeb...755c51334
0 ETH0.000048162.1
Easy Commit61985052018-08-23 9:41:402372 days ago1535017300IN
0xEDdcBFeb...755c51334
0 ETH0.0022719341
Issue61984882018-08-23 9:37:222372 days ago1535017042IN
0xEDdcBFeb...755c51334
0 ETH0.0028040741

Advanced mode:
Parent Transaction Hash Block
From
To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
USDBToken

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-08-24
*/

pragma solidity ^ 0.4.24;


/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * See https://github.com/ethereum/EIPs/issues/179
 */
contract ERC20Basic {
  function totalSupply() public view returns (uint256);
  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);
}


/**
 * @title ERC20 interface
 * @dev see https://github.com/ethereum/EIPs/issues/20
 */
contract ERC20 is ERC20Basic {
  function allowance(address owner, address spender)
    public view 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
  );
}

/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
  address public owner;


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


  /**
   * @dev The Ownable constructor sets the original `owner` of the contract to the sender
   * account.
   */
  constructor() public {
    owner = msg.sender;
  }

  /**
   * @dev Throws if called by any account other than the owner.
   */
  modifier onlyOwner() {
    require(msg.sender == owner);
    _;
  }

  /**
   * @dev Allows the current owner to relinquish control of the contract.
   * @notice Renouncing to ownership will leave the contract without an owner.
   * It will not be possible to call the functions with the `onlyOwner`
   * modifier anymore.
   */
  function renounceOwnership() public onlyOwner {
    emit OwnershipRenounced(owner);
    owner = address(0);
  }

  /**
   * @dev Allows the current owner to transfer control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function transferOwnership(address _newOwner) public onlyOwner {
    _transferOwnership(_newOwner);
  }

  /**
   * @dev Transfers control of the contract to a newOwner.
   * @param _newOwner The address to transfer ownership to.
   */
  function _transferOwnership(address _newOwner) internal {
    require(_newOwner != address(0));
    emit OwnershipTransferred(owner, _newOwner);
    owner = _newOwner;
  }
}

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
  event Pause();
  event Unpause();

  bool public paused = false;


  /**
   * @dev Modifier to make a function callable only when the contract is not paused.
   */
  modifier whenNotPaused() {
    require(!paused);
    _;
  }

  /**
   * @dev Modifier to make a function callable only when the contract is paused.
   */
  modifier whenPaused() {
    require(paused);
    _;
  }

  /**
   * @dev called by the owner to pause, triggers stopped state
   */
  function pause() onlyOwner whenNotPaused public {
    paused = true;
    emit Pause();
  }

  /**
   * @dev called by the owner to unpause, returns to normal state
   */
  function unpause() onlyOwner whenPaused public {
    paused = false;
    emit Unpause();
  }
}


/**
 * @title Basic token
 * @dev Basic version of StandardToken, with no allowances.
 */
contract BasicToken is ERC20Basic {
  using SafeMath for uint256;

  mapping(address => uint256) balances;

  uint256 totalSupply_;

  /**
  * @dev Total number of tokens in existence
  */
  function totalSupply() public view returns (uint256) {
    return totalSupply_;
  }

  /**
  * @dev Transfer token for a specified address
  * @param _to The address to transfer to.
  * @param _value The amount to be transferred.
  */
  function transfer(address _to, uint256 _value) public returns (bool) {
    require(_to != address(0));
    require(_value <= balances[msg.sender]);

    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    emit Transfer(msg.sender, _to, _value);
    return true;
  }

  /**
  * @dev Gets the balance of the specified address.
  * @param _owner The address to query the the balance of.
  * @return An uint256 representing the amount owned by the passed address.
  */
  function balanceOf(address _owner) public view returns (uint256) {
    return balances[_owner];
  }

}


/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://github.com/ethereum/EIPs/issues/20
 * Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 */
contract StandardToken is ERC20, BasicToken {

  mapping (address => mapping (address => uint256)) internal allowed;


  /**
   * @dev Transfer tokens from one address to another
   * @param _from address The address which you want to send tokens from
   * @param _to address The address which you want to transfer to
   * @param _value uint256 the amount of tokens to be transferred
   */
  function transferFrom(
    address _from,
    address _to,
    uint256 _value
  )
    public
    returns (bool)
  {
    require(_to != address(0));
    require(_value <= balances[_from]);
    require(_value <= allowed[_from][msg.sender]);

    balances[_from] = balances[_from].sub(_value);
    balances[_to] = balances[_to].add(_value);
    allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
    emit Transfer(_from, _to, _value);
    return true;
  }

  /**
   * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
   * Beware that changing an allowance with this method brings the risk that someone may use both the old
   * and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
   * race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
   * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
   * @param _spender The address which will spend the funds.
   * @param _value The amount of tokens to be spent.
   */
  function approve(address _spender, uint256 _value) public returns (bool) {
    allowed[msg.sender][_spender] = _value;
    emit Approval(msg.sender, _spender, _value);
    return true;
  }

  /**
   * @dev Function to check the amount of tokens that an owner allowed to a spender.
   * @param _owner address The address which owns the funds.
   * @param _spender address The address which will spend the funds.
   * @return A uint256 specifying the amount of tokens still available for the spender.
   */
  function allowance(
    address _owner,
    address _spender
   )
    public
    view
    returns (uint256)
  {
    return allowed[_owner][_spender];
  }

  /**
   * @dev Increase the amount of tokens that an owner allowed to a spender.
   * approve should be called when allowed[_spender] == 0. To increment
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _addedValue The amount of tokens to increase the allowance by.
   */
  function increaseApproval(
    address _spender,
    uint256 _addedValue
  )
    public
    returns (bool)
  {
    allowed[msg.sender][_spender] = (
      allowed[msg.sender][_spender].add(_addedValue));
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

  /**
   * @dev Decrease the amount of tokens that an owner allowed to a spender.
   * approve should be called when allowed[_spender] == 0. To decrement
   * allowed value is better to use this function to avoid 2 calls (and wait until
   * the first transaction is mined)
   * From MonolithDAO Token.sol
   * @param _spender The address which will spend the funds.
   * @param _subtractedValue The amount of tokens to decrease the allowance by.
   */
  function decreaseApproval(
    address _spender,
    uint256 _subtractedValue
  )
    public
    returns (bool)
  {
    uint256 oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}
/**
 * @title Pausable token
 * @dev StandardToken modified with pausable transfers.
 **/
contract PausableToken is StandardToken, Pausable {

  function transfer(
    address _to,
    uint256 _value
  )
    public
    whenNotPaused
    returns (bool)
  {
    return super.transfer(_to, _value);
  }

  function transferFrom(
    address _from,
    address _to,
    uint256 _value
  )
    public
    whenNotPaused
    returns (bool)
  {
    return super.transferFrom(_from, _to, _value);
  }

  function approve(
    address _spender,
    uint256 _value
  )
    public
    whenNotPaused
    returns (bool)
  {
    return super.approve(_spender, _value);
  }

  function increaseApproval(
    address _spender,
    uint _addedValue
  )
    public
    whenNotPaused
    returns (bool success)
  {
    return super.increaseApproval(_spender, _addedValue);
  }

  function decreaseApproval(
    address _spender,
    uint _subtractedValue
  )
    public
    whenNotPaused
    returns (bool success)
  {
    return super.decreaseApproval(_spender, _subtractedValue);
  }
}

/**
 * @title SafeMath
 * @dev Math operations with safety checks that throw on error
 */
library SafeMath {

  /**
  * @dev Multiplies two numbers, throws on overflow.
  */
  function mul(uint256 a, uint256 b) internal pure returns (uint256 c) {
    // Gas optimization: this is cheaper than asserting 'a' not being zero, but the
    // benefit is lost if 'b' is also tested.
    // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
    if (a == 0) {
      return 0;
    }

    c = a * b;
    assert(c / a == b);
    return c;
  }

  /**
  * @dev Integer division of two numbers, truncating the quotient.
  */
  function div(uint256 a, uint256 b) internal pure returns (uint256) {
    // assert(b > 0); // Solidity automatically throws when dividing by 0
    // uint256 c = a / b;
    // assert(a == b * c + a % b); // There is no case in which this doesn't hold
    return a / b;
  }

  /**
  * @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
  */
  function sub(uint256 a, uint256 b) internal pure returns (uint256) {
    assert(b <= a);
    return a - b;
  }

  /**
  * @dev Adds two numbers, throws on overflow.
  */
  function add(uint256 a, uint256 b) internal pure returns (uint256 c) {
    c = a + b;
    assert(c >= a);
    return c;
  }
}


/**
 * @title Burnable Token
 * @dev Token that can be irreversibly burned (destroyed).
 */
contract BurnableToken is BasicToken {

  event Burn(address indexed burner, uint256 value);

  /**
   * @dev Burns a specific amount of tokens.
   * @param _value The amount of token to be burned.
   */
  function burn(uint256 _value) public {
    _burn(msg.sender, _value);
  }

  function _burn(address _who, uint256 _value) internal {
    require(_value <= balances[_who]);
    // no need to require value <= totalSupply, since that would imply the
    // sender's balance is greater than the totalSupply, which *should* be an assertion failure

    balances[_who] = balances[_who].sub(_value);
    totalSupply_ = totalSupply_.sub(_value);
    emit Burn(_who, _value);
    emit Transfer(_who, address(0), _value);
  }
}

contract USDBToken is PausableToken,BurnableToken {
    string public name;
    string public symbol;
    uint8 public decimals;

    constructor(uint _initialSupply, string _tokenname, string _tokensymbol, uint8 _tokendecimals) public {
        totalSupply_ = _initialSupply;
        name = _tokenname;
        symbol = _tokensymbol;
        decimals = _tokendecimals;
        balances[msg.sender] = totalSupply_;
    }

    function changeTokenName(string _tokenname, string _tokensymbol) public onlyOwner
    {
        name = _tokenname;
        symbol = _tokensymbol;
    }
    
    modifier onlyPayloadSize(uint size) {
        require(!(msg.data.length < size + 4));
        _;
    }

    address public manager = address(0);


    function changeManager(address newManager) public onlyOwner {
        manager = newManager;
    }


    modifier onlyOwnerOrManager() {
        require((msg.sender == owner) || (msg.sender == manager));
        _;
    }


    event Issue(address indexed _to, uint256 value);
 

    event Profit(uint256 value);

    function issue(uint256 amount) public onlyOwnerOrManager {
        require(totalSupply_ + amount > totalSupply_);
        require(balances[owner] + amount > balances[owner]);

        balances[owner] = balances[owner].add(amount);
        totalSupply_ = totalSupply_.add(amount);
        emit Issue(owner, amount);  
        emit Transfer(owner, address(0), amount);
    }
 

    
    function profit(uint256 amount) public onlyOwnerOrManager{
        require(amount <= balances[owner]);
        emit Profit(amount);
    }

    function easyCommit(uint256 _issue, uint256 _redeem, uint256 _profit) public returns(bool)
    {
        issue(_issue);
        burn(_redeem);
        profit(_profit);
        return true;
    }


    function transfer(address _to, uint256 _value) public onlyPayloadSize(2 * 32) returns(bool)
    {
        require(!isBlackListed[msg.sender]);
        return super.transfer(_to, _value);
    }

    function transferFrom(address _from, address _to, uint256 _value) public onlyPayloadSize(3 * 32) returns(bool)
    {
        require(!isBlackListed[_from]);
        return super.transferFrom(_from, _to, _value);
    }

    function getBlackListStatus(address _maker) public view returns(bool) {
        return isBlackListed[_maker];
    }

    mapping(address => bool) public isBlackListed;

    function addBlackList(address _evilUser) public onlyOwner {
        isBlackListed[_evilUser] = true;
        emit AddedBlackList(_evilUser);
    }

    function removeBlackList(address _clearedUser) public onlyOwner {
        isBlackListed[_clearedUser] = false;
        emit RemovedBlackList(_clearedUser);
    }

    function destroyBlackFunds(address _blackListedUser) public onlyOwner {
        require(isBlackListed[_blackListedUser]);
        uint dirtyFunds = balanceOf(_blackListedUser);
        balances[_blackListedUser] = 0;
        totalSupply_ = totalSupply_.sub(dirtyFunds);
        emit DestroyedBlackFunds(_blackListedUser, dirtyFunds);
    }

    event DestroyedBlackFunds(address _blackListedUser, uint _balance);

    event AddedBlackList(address _user);

    event RemovedBlackList(address _user);
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_evilUser","type":"address"}],"name":"addBlackList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"profit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenname","type":"string"},{"name":"_tokensymbol","type":"string"}],"name":"changeTokenName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"manager","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_maker","type":"address"}],"name":"getBlackListStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_issue","type":"uint256"},{"name":"_redeem","type":"uint256"},{"name":"_profit","type":"uint256"}],"name":"easyCommit","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","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":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newManager","type":"address"}],"name":"changeManager","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"issue","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isBlackListed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_clearedUser","type":"address"}],"name":"removeBlackList","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_blackListedUser","type":"address"}],"name":"destroyBlackFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_initialSupply","type":"uint256"},{"name":"_tokenname","type":"string"},{"name":"_tokensymbol","type":"string"},{"name":"_tokendecimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Issue","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"value","type":"uint256"}],"name":"Profit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_blackListedUser","type":"address"},{"indexed":false,"name":"_balance","type":"uint256"}],"name":"DestroyedBlackFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"}],"name":"AddedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_user","type":"address"}],"name":"RemovedBlackList","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]

60806040526003805460a060020a60ff02191690556006805461010060a860020a03191690553480156200003257600080fd5b50604051620016cd380380620016cd833981016040908152815160208084015192840151606085015160038054600160a060020a03191633179055600184905593850180519395909491019290916200009191600491860190620000d8565b508151620000a7906005906020850190620000d8565b506006805460ff191660ff92909216919091179055505060015433600090815260208190526040902055506200017d565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200011b57805160ff19168380011785556200014b565b828001600101855582156200014b579182015b828111156200014b5782518255916020019190600101906200012e565b50620001599291506200015d565b5090565b6200017a91905b8082111562000159576000815560010162000164565b90565b611540806200018d6000396000f3006080604052600436106101745763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610179578063095ea7b3146102035780630ecb93c01461023b5780631241ee7d1461025e57806318160ddd1461027657806323b872dd1461029d578063313ce567146102c75780633f4ba83a146102f257806342966c6814610307578063453920cb1461031f578063481c6a75146103b657806359bf1abe146103e75780635c975abb14610408578063661884631461041d5780636b7273121461044157806370a082311461045f578063715018a6146104805780638456cb59146104955780638da5cb5b146104aa57806395d89b41146104bf578063a3fbbaae146104d4578063a9059cbb146104f5578063cc872b6614610519578063d73dd62314610531578063dd62ed3e14610555578063e47d60601461057c578063e4997dc51461059d578063f2fde38b146105be578063f3bdc228146105df575b600080fd5b34801561018557600080fd5b5061018e610600565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101c85781810151838201526020016101b0565b50505050905090810190601f1680156101f55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020f57600080fd5b50610227600160a060020a036004351660243561068e565b604080519115158252519081900360200190f35b34801561024757600080fd5b5061025c600160a060020a03600435166106b9565b005b34801561026a57600080fd5b5061025c60043561072b565b34801561028257600080fd5b5061028b6107bb565b60408051918252519081900360200190f35b3480156102a957600080fd5b50610227600160a060020a03600435811690602435166044356107c2565b3480156102d357600080fd5b506102dc61080e565b6040805160ff9092168252519081900360200190f35b3480156102fe57600080fd5b5061025c610817565b34801561031357600080fd5b5061025c60043561088f565b34801561032b57600080fd5b506040805160206004803580820135601f810184900484028501840190955284845261025c94369492936024939284019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a99988101979196509182019450925082915084018382808284375094975061089c9650505050505050565b3480156103c257600080fd5b506103cb6108df565b60408051600160a060020a039092168252519081900360200190f35b3480156103f357600080fd5b50610227600160a060020a03600435166108f3565b34801561041457600080fd5b50610227610911565b34801561042957600080fd5b50610227600160a060020a0360043516602435610921565b34801561044d57600080fd5b50610227600435602435604435610945565b34801561046b57600080fd5b5061028b600160a060020a036004351661096c565b34801561048c57600080fd5b5061025c610987565b3480156104a157600080fd5b5061025c6109f5565b3480156104b657600080fd5b506103cb610a72565b3480156104cb57600080fd5b5061018e610a81565b3480156104e057600080fd5b5061025c600160a060020a0360043516610adc565b34801561050157600080fd5b50610227600160a060020a0360043516602435610b28565b34801561052557600080fd5b5061025c600435610b69565b34801561053d57600080fd5b50610227600160a060020a0360043516602435610ca7565b34801561056157600080fd5b5061028b600160a060020a0360043581169060243516610ccb565b34801561058857600080fd5b50610227600160a060020a0360043516610cf6565b3480156105a957600080fd5b5061025c600160a060020a0360043516610d0b565b3480156105ca57600080fd5b5061025c600160a060020a0360043516610d7a565b3480156105eb57600080fd5b5061025c600160a060020a0360043516610d9a565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106865780601f1061065b57610100808354040283529160200191610686565b820191906000526020600020905b81548152906001019060200180831161066957829003601f168201915b505050505081565b60035460009060a060020a900460ff16156106a857600080fd5b6106b28383610e5e565b9392505050565b600354600160a060020a031633146106d057600080fd5b600160a060020a038116600081815260076020908152604091829020805460ff19166001179055815192835290517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9281900390910190a150565b600354600160a060020a031633148061075357506006546101009004600160a060020a031633145b151561075e57600080fd5b600354600160a060020a031660009081526020819052604090205481111561078557600080fd5b6040805182815290517f357d905f1831209797df4d55d79c5c5bf1d9f7311c976afd05e13d881eab9bc89181900360200190a150565b6001545b90565b6000606060643610156107d457600080fd5b600160a060020a03851660009081526007602052604090205460ff16156107fa57600080fd5b610805858585610ec4565b95945050505050565b60065460ff1681565b600354600160a060020a0316331461082e57600080fd5b60035460a060020a900460ff16151561084657600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6108993382610ee9565b50565b600354600160a060020a031633146108b357600080fd5b81516108c690600490602085019061145c565b5080516108da90600590602084019061145c565b505050565b6006546101009004600160a060020a031681565b600160a060020a031660009081526007602052604090205460ff1690565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161561093b57600080fd5b6106b28383610fd8565b600061095084610b69565b6109598361088f565b6109628261072b565b5060019392505050565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a0316331461099e57600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600160a060020a03163314610a0c57600080fd5b60035460a060020a900460ff1615610a2357600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106865780601f1061065b57610100808354040283529160200191610686565b600354600160a060020a03163314610af357600080fd5b60068054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b600060406044361015610b3a57600080fd5b3360009081526007602052604090205460ff1615610b5757600080fd5b610b6184846110c8565b949350505050565b600354600160a060020a0316331480610b9157506006546101009004600160a060020a031633145b1515610b9c57600080fd5b60015481810111610bac57600080fd5b600354600160a060020a031660009081526020819052604090205481810111610bd457600080fd5b600354600160a060020a0316600090815260208190526040902054610bff908263ffffffff6110ec16565b600354600160a060020a0316600090815260208190526040902055600154610c2d908263ffffffff6110ec16565b600155600354604080518381529051600160a060020a03909216917fc65a3f767206d2fdcede0b094a4840e01c0dd0be1888b5ba800346eaa0123c169181900360200190a2600354604080518381529051600092600160a060020a0316916000805160206114f5833981519152919081900360200190a350565b60035460009060a060020a900460ff1615610cc157600080fd5b6106b283836110ff565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60076020526000908152604090205460ff1681565b600354600160a060020a03163314610d2257600080fd5b600160a060020a038116600081815260076020908152604091829020805460ff19169055815192835290517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9281900390910190a150565b600354600160a060020a03163314610d9157600080fd5b61089981611198565b600354600090600160a060020a03163314610db457600080fd5b600160a060020a03821660009081526007602052604090205460ff161515610ddb57600080fd5b610de48261096c565b600160a060020a038316600090815260208190526040812055600154909150610e13908263ffffffff61121616565b60015560408051600160a060020a03841681526020810183905281517f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c6929181900390910190a15050565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60035460009060a060020a900460ff1615610ede57600080fd5b610b61848484611228565b600160a060020a038216600090815260208190526040902054811115610f0e57600080fd5b600160a060020a038216600090815260208190526040902054610f37908263ffffffff61121616565b600160a060020a038316600090815260208190526040902055600154610f63908263ffffffff61121616565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206114f58339815191529181900360200190a35050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561102d57336000908152600260209081526040808320600160a060020a0388168452909152812055611062565b61103d818463ffffffff61121616565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60035460009060a060020a900460ff16156110e257600080fd5b6106b2838361138d565b818101828110156110f957fe5b92915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054611133908363ffffffff6110ec16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03811615156111ad57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008282111561122257fe5b50900390565b6000600160a060020a038316151561123f57600080fd5b600160a060020a03841660009081526020819052604090205482111561126457600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561129457600080fd5b600160a060020a0384166000908152602081905260409020546112bd908363ffffffff61121616565b600160a060020a0380861660009081526020819052604080822093909355908516815220546112f2908363ffffffff6110ec16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054611334908363ffffffff61121616565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391926000805160206114f5833981519152929181900390910190a35060019392505050565b6000600160a060020a03831615156113a457600080fd5b336000908152602081905260409020548211156113c057600080fd5b336000908152602081905260409020546113e0908363ffffffff61121616565b3360009081526020819052604080822092909255600160a060020a03851681522054611412908363ffffffff6110ec16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206114f58339815191529281900390910190a350600192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061149d57805160ff19168380011785556114ca565b828001600101855582156114ca579182015b828111156114ca5782518255916020019190600101906114af565b506114d69291506114da565b5090565b6107bf91905b808211156114d657600081556001016114e05600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820238b961c0a18e8a35ded3643ad449e43638acafc6ecaf3d880d3ad5a43c0c1ba00290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000026506f6b6572736f6f6e205553442042696c6c696f6e206368697020546f6b656e2874657374290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a5553444228746573742900000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101745763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde038114610179578063095ea7b3146102035780630ecb93c01461023b5780631241ee7d1461025e57806318160ddd1461027657806323b872dd1461029d578063313ce567146102c75780633f4ba83a146102f257806342966c6814610307578063453920cb1461031f578063481c6a75146103b657806359bf1abe146103e75780635c975abb14610408578063661884631461041d5780636b7273121461044157806370a082311461045f578063715018a6146104805780638456cb59146104955780638da5cb5b146104aa57806395d89b41146104bf578063a3fbbaae146104d4578063a9059cbb146104f5578063cc872b6614610519578063d73dd62314610531578063dd62ed3e14610555578063e47d60601461057c578063e4997dc51461059d578063f2fde38b146105be578063f3bdc228146105df575b600080fd5b34801561018557600080fd5b5061018e610600565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101c85781810151838201526020016101b0565b50505050905090810190601f1680156101f55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561020f57600080fd5b50610227600160a060020a036004351660243561068e565b604080519115158252519081900360200190f35b34801561024757600080fd5b5061025c600160a060020a03600435166106b9565b005b34801561026a57600080fd5b5061025c60043561072b565b34801561028257600080fd5b5061028b6107bb565b60408051918252519081900360200190f35b3480156102a957600080fd5b50610227600160a060020a03600435811690602435166044356107c2565b3480156102d357600080fd5b506102dc61080e565b6040805160ff9092168252519081900360200190f35b3480156102fe57600080fd5b5061025c610817565b34801561031357600080fd5b5061025c60043561088f565b34801561032b57600080fd5b506040805160206004803580820135601f810184900484028501840190955284845261025c94369492936024939284019190819084018382808284375050604080516020601f89358b018035918201839004830284018301909452808352979a99988101979196509182019450925082915084018382808284375094975061089c9650505050505050565b3480156103c257600080fd5b506103cb6108df565b60408051600160a060020a039092168252519081900360200190f35b3480156103f357600080fd5b50610227600160a060020a03600435166108f3565b34801561041457600080fd5b50610227610911565b34801561042957600080fd5b50610227600160a060020a0360043516602435610921565b34801561044d57600080fd5b50610227600435602435604435610945565b34801561046b57600080fd5b5061028b600160a060020a036004351661096c565b34801561048c57600080fd5b5061025c610987565b3480156104a157600080fd5b5061025c6109f5565b3480156104b657600080fd5b506103cb610a72565b3480156104cb57600080fd5b5061018e610a81565b3480156104e057600080fd5b5061025c600160a060020a0360043516610adc565b34801561050157600080fd5b50610227600160a060020a0360043516602435610b28565b34801561052557600080fd5b5061025c600435610b69565b34801561053d57600080fd5b50610227600160a060020a0360043516602435610ca7565b34801561056157600080fd5b5061028b600160a060020a0360043581169060243516610ccb565b34801561058857600080fd5b50610227600160a060020a0360043516610cf6565b3480156105a957600080fd5b5061025c600160a060020a0360043516610d0b565b3480156105ca57600080fd5b5061025c600160a060020a0360043516610d7a565b3480156105eb57600080fd5b5061025c600160a060020a0360043516610d9a565b6004805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106865780601f1061065b57610100808354040283529160200191610686565b820191906000526020600020905b81548152906001019060200180831161066957829003601f168201915b505050505081565b60035460009060a060020a900460ff16156106a857600080fd5b6106b28383610e5e565b9392505050565b600354600160a060020a031633146106d057600080fd5b600160a060020a038116600081815260076020908152604091829020805460ff19166001179055815192835290517f42e160154868087d6bfdc0ca23d96a1c1cfa32f1b72ba9ba27b69b98a0d819dc9281900390910190a150565b600354600160a060020a031633148061075357506006546101009004600160a060020a031633145b151561075e57600080fd5b600354600160a060020a031660009081526020819052604090205481111561078557600080fd5b6040805182815290517f357d905f1831209797df4d55d79c5c5bf1d9f7311c976afd05e13d881eab9bc89181900360200190a150565b6001545b90565b6000606060643610156107d457600080fd5b600160a060020a03851660009081526007602052604090205460ff16156107fa57600080fd5b610805858585610ec4565b95945050505050565b60065460ff1681565b600354600160a060020a0316331461082e57600080fd5b60035460a060020a900460ff16151561084657600080fd5b6003805474ff0000000000000000000000000000000000000000191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b6108993382610ee9565b50565b600354600160a060020a031633146108b357600080fd5b81516108c690600490602085019061145c565b5080516108da90600590602084019061145c565b505050565b6006546101009004600160a060020a031681565b600160a060020a031660009081526007602052604090205460ff1690565b60035460a060020a900460ff1681565b60035460009060a060020a900460ff161561093b57600080fd5b6106b28383610fd8565b600061095084610b69565b6109598361088f565b6109628261072b565b5060019392505050565b600160a060020a031660009081526020819052604090205490565b600354600160a060020a0316331461099e57600080fd5b600354604051600160a060020a03909116907ff8df31144d9c2f0f6b59d69b8b98abd5459d07f2742c4df920b25aae33c6482090600090a26003805473ffffffffffffffffffffffffffffffffffffffff19169055565b600354600160a060020a03163314610a0c57600080fd5b60035460a060020a900460ff1615610a2357600080fd5b6003805474ff0000000000000000000000000000000000000000191660a060020a1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b600354600160a060020a031681565b6005805460408051602060026001851615610100026000190190941693909304601f810184900484028201840190925281815292918301828280156106865780601f1061065b57610100808354040283529160200191610686565b600354600160a060020a03163314610af357600080fd5b60068054600160a060020a039092166101000274ffffffffffffffffffffffffffffffffffffffff0019909216919091179055565b600060406044361015610b3a57600080fd5b3360009081526007602052604090205460ff1615610b5757600080fd5b610b6184846110c8565b949350505050565b600354600160a060020a0316331480610b9157506006546101009004600160a060020a031633145b1515610b9c57600080fd5b60015481810111610bac57600080fd5b600354600160a060020a031660009081526020819052604090205481810111610bd457600080fd5b600354600160a060020a0316600090815260208190526040902054610bff908263ffffffff6110ec16565b600354600160a060020a0316600090815260208190526040902055600154610c2d908263ffffffff6110ec16565b600155600354604080518381529051600160a060020a03909216917fc65a3f767206d2fdcede0b094a4840e01c0dd0be1888b5ba800346eaa0123c169181900360200190a2600354604080518381529051600092600160a060020a0316916000805160206114f5833981519152919081900360200190a350565b60035460009060a060020a900460ff1615610cc157600080fd5b6106b283836110ff565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b60076020526000908152604090205460ff1681565b600354600160a060020a03163314610d2257600080fd5b600160a060020a038116600081815260076020908152604091829020805460ff19169055815192835290517fd7e9ec6e6ecd65492dce6bf513cd6867560d49544421d0783ddf06e76c24470c9281900390910190a150565b600354600160a060020a03163314610d9157600080fd5b61089981611198565b600354600090600160a060020a03163314610db457600080fd5b600160a060020a03821660009081526007602052604090205460ff161515610ddb57600080fd5b610de48261096c565b600160a060020a038316600090815260208190526040812055600154909150610e13908263ffffffff61121616565b60015560408051600160a060020a03841681526020810183905281517f61e6e66b0d6339b2980aecc6ccc0039736791f0ccde9ed512e789a7fbdd698c6929181900390910190a15050565b336000818152600260209081526040808320600160a060020a038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a350600192915050565b60035460009060a060020a900460ff1615610ede57600080fd5b610b61848484611228565b600160a060020a038216600090815260208190526040902054811115610f0e57600080fd5b600160a060020a038216600090815260208190526040902054610f37908263ffffffff61121616565b600160a060020a038316600090815260208190526040902055600154610f63908263ffffffff61121616565b600155604080518281529051600160a060020a038416917fcc16f5dbb4873280815c1ee09dbd06736cffcc184412cf7a71a0fdb75d397ca5919081900360200190a2604080518281529051600091600160a060020a038516916000805160206114f58339815191529181900360200190a35050565b336000908152600260209081526040808320600160a060020a03861684529091528120548083111561102d57336000908152600260209081526040808320600160a060020a0388168452909152812055611062565b61103d818463ffffffff61121616565b336000908152600260209081526040808320600160a060020a03891684529091529020555b336000818152600260209081526040808320600160a060020a0389168085529083529281902054815190815290519293927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929181900390910190a35060019392505050565b60035460009060a060020a900460ff16156110e257600080fd5b6106b2838361138d565b818101828110156110f957fe5b92915050565b336000908152600260209081526040808320600160a060020a0386168452909152812054611133908363ffffffff6110ec16565b336000818152600260209081526040808320600160a060020a0389168085529083529281902085905580519485525191937f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a350600192915050565b600160a060020a03811615156111ad57600080fd5b600354604051600160a060020a038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a36003805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a0392909216919091179055565b60008282111561122257fe5b50900390565b6000600160a060020a038316151561123f57600080fd5b600160a060020a03841660009081526020819052604090205482111561126457600080fd5b600160a060020a038416600090815260026020908152604080832033845290915290205482111561129457600080fd5b600160a060020a0384166000908152602081905260409020546112bd908363ffffffff61121616565b600160a060020a0380861660009081526020819052604080822093909355908516815220546112f2908363ffffffff6110ec16565b600160a060020a03808516600090815260208181526040808320949094559187168152600282528281203382529091522054611334908363ffffffff61121616565b600160a060020a03808616600081815260026020908152604080832033845282529182902094909455805186815290519287169391926000805160206114f5833981519152929181900390910190a35060019392505050565b6000600160a060020a03831615156113a457600080fd5b336000908152602081905260409020548211156113c057600080fd5b336000908152602081905260409020546113e0908363ffffffff61121616565b3360009081526020819052604080822092909255600160a060020a03851681522054611412908363ffffffff6110ec16565b600160a060020a038416600081815260208181526040918290209390935580518581529051919233926000805160206114f58339815191529281900390910190a350600192915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061149d57805160ff19168380011785556114ca565b828001600101855582156114ca579182015b828111156114ca5782518255916020019190600101906114af565b506114d69291506114da565b5090565b6107bf91905b808211156114d657600081556001016114e05600ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3efa165627a7a72305820238b961c0a18e8a35ded3643ad449e43638acafc6ecaf3d880d3ad5a43c0c1ba0029

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000026506f6b6572736f6f6e205553442042696c6c696f6e206368697020546f6b656e2874657374290000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a5553444228746573742900000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initialSupply (uint256): 0
Arg [1] : _tokenname (string): Pokersoon USD Billion chip Token(test)
Arg [2] : _tokensymbol (string): USDB(test)
Arg [3] : _tokendecimals (uint8): 18

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000026
Arg [5] : 506f6b6572736f6f6e205553442042696c6c696f6e206368697020546f6b656e
Arg [6] : 2874657374290000000000000000000000000000000000000000000000000000
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 5553444228746573742900000000000000000000000000000000000000000000


Swarm Source

bzzr://238b961c0a18e8a35ded3643ad449e43638acafc6ecaf3d880d3ad5a43c0c1ba

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.