ETH Price: $2,513.43 (+2.36%)

Contract

0xfD7Cb51943844C80Bd68d0070c03cF8A20da6fDB
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer156952142022-10-07 9:04:47696 days ago1665133487IN
0xfD7Cb519...A20da6fDB
0 ETH0.000151166.18375716
Transfer156934882022-10-07 3:18:35696 days ago1665112715IN
0xfD7Cb519...A20da6fDB
0 ETH0.000262165.51616611
Transfer155032592022-09-09 14:34:35724 days ago1662734075IN
0xfD7Cb519...A20da6fDB
0 ETH0.001227925.82284644
Transfer150083582022-06-22 15:46:57802 days ago1655912817IN
0xfD7Cb519...A20da6fDB
0 ETH0.002234842.69863333
Transfer123855772021-05-07 6:27:431214 days ago1620368863IN
0xfD7Cb519...A20da6fDB
0 ETH0.0016744632
Transfer114052482020-12-07 10:58:201365 days ago1607338700IN
0xfD7Cb519...A20da6fDB
0 ETH0.0024698947.00000145
Transfer108278542020-09-09 13:49:021454 days ago1599659342IN
0xfD7Cb519...A20da6fDB
0 ETH0.00767069146
Transfer104195152020-07-08 14:49:241516 days ago1594219764IN
0xfD7Cb519...A20da6fDB
0 ETH0.0024408165.00000123
Transfer99608262020-04-28 11:47:531588 days ago1588074473IN
0xfD7Cb519...A20da6fDB
0 ETH0.000162493.09280665
Transfer98613322020-04-13 2:22:141603 days ago1586744534IN
0xfD7Cb519...A20da6fDB
0 ETH0.000037531
Transfer97497772020-03-26 23:01:101620 days ago1585263670IN
0xfD7Cb519...A20da6fDB
0 ETH0.000052551
Transfer97142332020-03-21 9:38:501626 days ago1584783530IN
0xfD7Cb519...A20da6fDB
0 ETH0.000337859
Transfer96127242020-03-05 18:04:501641 days ago1583431490IN
0xfD7Cb519...A20da6fDB
0 ETH0.00004412.01
Transfer95789862020-02-29 13:45:071647 days ago1582983907IN
0xfD7Cb519...A20da6fDB
0 ETH0.000037531
Transfer94372212020-02-07 18:36:251668 days ago1581100585IN
0xfD7Cb519...A20da6fDB
0 ETH0.000262695
Transfer93559052020-01-26 6:39:491681 days ago1580020789IN
0xfD7Cb519...A20da6fDB
0 ETH0.000052521
Transfer93233972020-01-21 7:07:421686 days ago1579590462IN
0xfD7Cb519...A20da6fDB
0 ETH0.00013536
Transfer91889982019-12-31 3:26:431707 days ago1577762803IN
0xfD7Cb519...A20da6fDB
0 ETH0.000037531
Transfer91858442019-12-30 12:28:041708 days ago1577708884IN
0xfD7Cb519...A20da6fDB
0 ETH0.00007512
Transfer90599892019-12-06 10:15:041732 days ago1575627304IN
0xfD7Cb519...A20da6fDB
0 ETH0.000230099.5
Transfer89557312019-11-18 9:19:261750 days ago1574068766IN
0xfD7Cb519...A20da6fDB
0 ETH0.0005235110
Transfer88923612019-11-07 21:31:231760 days ago1573162283IN
0xfD7Cb519...A20da6fDB
0 ETH0.000112075
Transfer88923452019-11-07 21:27:131760 days ago1573162033IN
0xfD7Cb519...A20da6fDB
0 ETH0.000112075
Transfer88923172019-11-07 21:21:041760 days ago1573161664IN
0xfD7Cb519...A20da6fDB
0 ETH0.000112075
Transfer88922962019-11-07 21:18:141760 days ago1573161494IN
0xfD7Cb519...A20da6fDB
0 ETH0.000112075
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
AmbrToken

Compiler Version
v0.4.18+commit.9cf6e910

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2018-01-22
*/

pragma solidity ^0.4.18;


/**
 * @title ERC20Basic
 * @dev Simpler version of ERC20 interface
 * @dev 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 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) {
    if (a == 0) {
      return 0;
    }
    uint256 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 c;
  }

  /**
  * @dev Substracts 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) {
    uint256 c = a + b;
    assert(c >= a);
    return c;
  }
}

/**
 * @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]);

    // SafeMath.sub will throw if there is not enough balance.
    balances[msg.sender] = balances[msg.sender].sub(_value);
    balances[_to] = balances[_to].add(_value);
    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 balance) {
    return balances[_owner];
  }

}

/**
 * @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 Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * @dev https://github.com/ethereum/EIPs/issues/20
 * @dev 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);
    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;
    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, uint _addedValue) public returns (bool) {
    allowed[msg.sender][_spender] = allowed[msg.sender][_spender].add(_addedValue);
    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, uint _subtractedValue) public returns (bool) {
    uint oldValue = allowed[msg.sender][_spender];
    if (_subtractedValue > oldValue) {
      allowed[msg.sender][_spender] = 0;
    } else {
      allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
    }
    Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
    return true;
  }

}

contract AmbrToken is StandardToken {

  string public constant name = "AmbrToken"; // solium-disable-line uppercase
  string public constant symbol = "Ambr"; // solium-disable-line uppercase
  uint8 public constant decimals = 18; // solium-disable-line uppercase

  uint256 public constant INITIAL_SUPPLY = 630000000000 * (10 ** uint256(decimals));

  /**
   * @dev Constructor that gives msg.sender all of existing tokens.
   */
  function SimpleToken() public {
    totalSupply_ = INITIAL_SUPPLY;
    balances[msg.sender] = INITIAL_SUPPLY;
    Transfer(0x0, msg.sender, INITIAL_SUPPLY);
  }

}

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":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":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"SimpleToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"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":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","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"},{"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"}]

6060604052341561000f57600080fd5b61090b8061001e6000396000f3006060604052600436106100c45763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100c9578063095ea7b31461015357806318160ddd1461018957806323b872dd146101ae5780632ff2e9dc146101d6578063313ce567146101e95780633d72c71b14610212578063661884631461022757806370a082311461024957806395d89b4114610268578063a9059cbb1461027b578063d73dd6231461029d578063dd62ed3e146102bf575b600080fd5b34156100d457600080fd5b6100dc6102e4565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015610118578082015183820152602001610100565b50505050905090810190601f1680156101455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561015e57600080fd5b610175600160a060020a036004351660243561031b565b604051901515815260200160405180910390f35b341561019457600080fd5b61019c610387565b60405190815260200160405180910390f35b34156101b957600080fd5b610175600160a060020a036004358116906024351660443561038d565b34156101e157600080fd5b61019c61050d565b34156101f457600080fd5b6101fc61051e565b60405160ff909116815260200160405180910390f35b341561021d57600080fd5b610225610523565b005b341561023257600080fd5b610175600160a060020a036004351660243561058a565b341561025457600080fd5b61019c600160a060020a0360043516610684565b341561027357600080fd5b6100dc61069f565b341561028657600080fd5b610175600160a060020a03600435166024356106d6565b34156102a857600080fd5b610175600160a060020a03600435166024356107e8565b34156102ca57600080fd5b61019c600160a060020a036004358116906024351661088c565b60408051908101604052600981527f416d6272546f6b656e0000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60015490565b6000600160a060020a03831615156103a457600080fd5b600160a060020a0384166000908152602081905260409020548211156103c957600080fd5b600160a060020a03808516600090815260026020908152604080832033909416835292905220548211156103fc57600080fd5b600160a060020a038416600090815260208190526040902054610425908363ffffffff6108b716565b600160a060020a03808616600090815260208190526040808220939093559085168152205461045a908363ffffffff6108c916565b600160a060020a03808516600090815260208181526040808320949094558783168252600281528382203390931682529190915220546104a0908363ffffffff6108b716565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b6c07f3a3c9314b1b95e2f000000081565b601281565b6c07f3a3c9314b1b95e2f00000006001819055600160a060020a033316600081815260208190526040808220849055919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91905190815260200160405180910390a3565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156105e757600160a060020a03338116600090815260026020908152604080832093881683529290529081205561061e565b6105f7818463ffffffff6108b716565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60408051908101604052600481527f416d627200000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a03831615156106ed57600080fd5b600160a060020a03331660009081526020819052604090205482111561071257600080fd5b600160a060020a03331660009081526020819052604090205461073b908363ffffffff6108b716565b600160a060020a033381166000908152602081905260408082209390935590851681522054610770908363ffffffff6108c916565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610820908363ffffffff6108c916565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000828211156108c357fe5b50900390565b6000828201838110156108d857fe5b93925050505600a165627a7a7230582053dea09b53d481132298d8a68c5e039ddc2976f5ccb70629e0addc5a02b3b17b0029

Deployed Bytecode

0x6060604052600436106100c45763ffffffff7c010000000000000000000000000000000000000000000000000000000060003504166306fdde0381146100c9578063095ea7b31461015357806318160ddd1461018957806323b872dd146101ae5780632ff2e9dc146101d6578063313ce567146101e95780633d72c71b14610212578063661884631461022757806370a082311461024957806395d89b4114610268578063a9059cbb1461027b578063d73dd6231461029d578063dd62ed3e146102bf575b600080fd5b34156100d457600080fd5b6100dc6102e4565b60405160208082528190810183818151815260200191508051906020019080838360005b83811015610118578082015183820152602001610100565b50505050905090810190601f1680156101455780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b341561015e57600080fd5b610175600160a060020a036004351660243561031b565b604051901515815260200160405180910390f35b341561019457600080fd5b61019c610387565b60405190815260200160405180910390f35b34156101b957600080fd5b610175600160a060020a036004358116906024351660443561038d565b34156101e157600080fd5b61019c61050d565b34156101f457600080fd5b6101fc61051e565b60405160ff909116815260200160405180910390f35b341561021d57600080fd5b610225610523565b005b341561023257600080fd5b610175600160a060020a036004351660243561058a565b341561025457600080fd5b61019c600160a060020a0360043516610684565b341561027357600080fd5b6100dc61069f565b341561028657600080fd5b610175600160a060020a03600435166024356106d6565b34156102a857600080fd5b610175600160a060020a03600435166024356107e8565b34156102ca57600080fd5b61019c600160a060020a036004358116906024351661088c565b60408051908101604052600981527f416d6272546f6b656e0000000000000000000000000000000000000000000000602082015281565b600160a060020a03338116600081815260026020908152604080832094871680845294909152808220859055909291907f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259085905190815260200160405180910390a350600192915050565b60015490565b6000600160a060020a03831615156103a457600080fd5b600160a060020a0384166000908152602081905260409020548211156103c957600080fd5b600160a060020a03808516600090815260026020908152604080832033909416835292905220548211156103fc57600080fd5b600160a060020a038416600090815260208190526040902054610425908363ffffffff6108b716565b600160a060020a03808616600090815260208190526040808220939093559085168152205461045a908363ffffffff6108c916565b600160a060020a03808516600090815260208181526040808320949094558783168252600281528382203390931682529190915220546104a0908363ffffffff6108b716565b600160a060020a03808616600081815260026020908152604080832033861684529091529081902093909355908516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9085905190815260200160405180910390a35060019392505050565b6c07f3a3c9314b1b95e2f000000081565b601281565b6c07f3a3c9314b1b95e2f00000006001819055600160a060020a033316600081815260208190526040808220849055919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91905190815260200160405180910390a3565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054808311156105e757600160a060020a03338116600090815260026020908152604080832093881683529290529081205561061e565b6105f7818463ffffffff6108b716565b600160a060020a033381166000908152600260209081526040808320938916835292905220555b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020547f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925915190815260200160405180910390a35060019392505050565b600160a060020a031660009081526020819052604090205490565b60408051908101604052600481527f416d627200000000000000000000000000000000000000000000000000000000602082015281565b6000600160a060020a03831615156106ed57600080fd5b600160a060020a03331660009081526020819052604090205482111561071257600080fd5b600160a060020a03331660009081526020819052604090205461073b908363ffffffff6108b716565b600160a060020a033381166000908152602081905260408082209390935590851681522054610770908363ffffffff6108c916565b60008085600160a060020a0316600160a060020a031681526020019081526020016000208190555082600160a060020a031633600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405190815260200160405180910390a350600192915050565b600160a060020a033381166000908152600260209081526040808320938616835292905290812054610820908363ffffffff6108c916565b600160a060020a0333811660008181526002602090815260408083209489168084529490915290819020849055919290917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591905190815260200160405180910390a350600192915050565b600160a060020a03918216600090815260026020908152604080832093909416825291909152205490565b6000828211156108c357fe5b50900390565b6000828201838110156108d857fe5b93925050505600a165627a7a7230582053dea09b53d481132298d8a68c5e039ddc2976f5ccb70629e0addc5a02b3b17b0029

Swarm Source

bzzr://53dea09b53d481132298d8a68c5e039ddc2976f5ccb70629e0addc5a02b3b17b

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.