ETH Price: $3,584.07 (+2.03%)
Gas: 53 Gwei

Contract

0x06A981Bd291C6BFaaB9954dDcEEb782dE805b4b3
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Transfer72123602019-02-12 20:24:461870 days ago1550003086IN
0x06A981Bd...dE805b4b3
0 ETH0.000258495
Transfer72123592019-02-12 20:23:551870 days ago1550003035IN
0x06A981Bd...dE805b4b3
0 ETH0.000258175
Transfer72123592019-02-12 20:23:551870 days ago1550003035IN
0x06A981Bd...dE805b4b3
0 ETH0.000258495
Transfer72123572019-02-12 20:23:431870 days ago1550003023IN
0x06A981Bd...dE805b4b3
0 ETH0.000258495
Set Governor Add...72121282019-02-12 19:04:451870 days ago1549998285IN
0x06A981Bd...dE805b4b3
0 ETH0.00016916
Set Factory Addr...72121132019-02-12 18:59:301870 days ago1549997970IN
0x06A981Bd...dE805b4b3
0 ETH0.000259276
Set Governor Add...72121112019-02-12 18:58:141870 days ago1549997894IN
0x06A981Bd...dE805b4b3
0 ETH0.00025916
0x6000356072120712019-02-12 18:42:171870 days ago1549996937IN
 Create: Vyper_contract
0 ETH0.009431548.77956989

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Vyper_contract

Compiler Version
vyper:0.1.0b8

Optimization Enabled:
N/A

Other Settings:
N/A

Contract Source Code (Vyper language format)

# @title Serenus Coin ERC20 contract
# @notice Implements https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
# @notice All mint/burn calls are acceptable only if the issuer is approved by the Factory contract
# @notice Source code found at https://github.com/serenuscoin
# @notice Use at your own risk
# @dev Compiled with Vyper 0.1.0b8

# @dev Contract interface to serenus issuer and governor
contract Issuer:
    def nonce() -> int128: constant

contract Governor:
    def nonce() -> int128: constant

# @dev Events issued by the contract
Transfer: event({_from: indexed(address), _to: indexed(address), _value: uint256(wei)})
Approval: event({_owner: indexed(address), _spender: indexed(address), _value: uint256(wei)})
OpenMinter: event({_newMinter: indexed(address)})
CloseMinter: event({_oldMinter: indexed(address)})

governor: Governor

factory_address: public(address)

minter_addresses: public(map(address, bool))
owner: public(address)
name: public(bytes[12])
symbol: public(bytes[3])
decimals: public(uint256)
commission: public(uint256)
balances: public(map(address, uint256(wei)))
allowances: map(address, map(address, uint256(wei)))
num_issued: uint256(wei)

@public
def __init__():
    self.owner = msg.sender
    self.name = "Serenus Coin"
    self.symbol = "SRS"
    self.decimals = 18
    self.commission = 10

@public
def changeOwner(_address: address):
    assert msg.sender == self.owner
    self.owner = _address

# @notice Burn tokens if the issuer is valid and the governor nonces match
# @params Seller address holding tokens
# @params Amount to be burnt from that address
@public
def burn(_seller: address, _amount: uint256(wei)):
    assert self.minter_addresses[msg.sender] == True
    assert self.governor.nonce() == Issuer(msg.sender).nonce()

    assert self.balances[_seller] >= _amount
    self.balances[_seller] -= _amount
    self.num_issued -= _amount
    log.Transfer(_seller, ZERO_ADDRESS, _amount)  # log transfer event.

# @notice Mint tokens if the issuer is valid and the governor nonces match
# @params Buyer address to send tokens
# @params Amount to be minted to that address
@public
def mint(_buyer: address, _amount: uint256(wei)):
    assert self.minter_addresses[msg.sender] == True
    assert self.governor.nonce() == Issuer(msg.sender).nonce()
    
    commissionAmount: uint256(wei) = (_amount * self.commission) / 10000

    self.balances[self.owner] += commissionAmount

    self.balances[_buyer] += _amount - commissionAmount

    self.num_issued += _amount

    log.Transfer(ZERO_ADDRESS, _buyer, _amount - commissionAmount )  # log transfer event.
    log.Transfer(ZERO_ADDRESS, self.owner, commissionAmount )  # log transfer event.

@public
def setGovernorAddress(_address: address):
    assert msg.sender == self.owner
    self.governor = _address

@public
def setFactoryAddress(_address: address):
    assert msg.sender == self.owner
    self.factory_address = _address
    
# @notice Set a new issuer as minter if created by the factory
@public
def setMinterAddress(_new_issuer: address):
    assert msg.sender == self.factory_address
    self.minter_addresses[_new_issuer] = True
    log.OpenMinter(_new_issuer)

# @notice Remove an issuer as minter if that issuer requests it
@public
def removeMinterAddress():
    assert self.minter_addresses[msg.sender] == True
    self.minter_addresses[msg.sender] = False
    log.CloseMinter(msg.sender)
    
@public
@constant
def totalSupply() -> uint256(wei):
    return self.num_issued

@public
@constant
def balanceOf(_owner : address) -> uint256(wei):
    return self.balances[_owner]

@public
def transfer(_to : address, _value : uint256(wei)) -> bool:
    _sender: address = msg.sender
    self.balances[_sender] -= _value
    self.balances[_to] += _value

    log.Transfer(_sender, _to, _value)
    return True

@public
def transferFrom(_from : address, _to : address, _value : uint256(wei)) -> bool:
    _sender: address = msg.sender
    self.balances[_from] -= _value
    self.balances[_to] += _value
    self.allowances[_from][_sender] -= _value

    log.Transfer(_from, _to, _value)
    return True

@public
def approve(_spender : address, _value : uint256(wei)) -> bool:
    _sender: address = msg.sender
    self.allowances[_sender][_spender] = _value

    log.Approval(_sender, _spender, _value)
    return True

@public
@constant
def allowance(_owner : address, _spender : address) -> uint256(wei):
    return self.allowances[_owner][_spender]

Contract Security Audit

Contract ABI

[{"name":"Transfer","inputs":[{"type":"address","name":"_from","indexed":true},{"type":"address","name":"_to","indexed":true},{"type":"uint256","name":"_value","indexed":false,"unit":"wei"}],"anonymous":false,"type":"event"},{"name":"Approval","inputs":[{"type":"address","name":"_owner","indexed":true},{"type":"address","name":"_spender","indexed":true},{"type":"uint256","name":"_value","indexed":false,"unit":"wei"}],"anonymous":false,"type":"event"},{"name":"OpenMinter","inputs":[{"type":"address","name":"_newMinter","indexed":true}],"anonymous":false,"type":"event"},{"name":"CloseMinter","inputs":[{"type":"address","name":"_oldMinter","indexed":true}],"anonymous":false,"type":"event"},{"name":"__init__","outputs":[],"inputs":[],"constant":false,"payable":false,"type":"constructor"},{"name":"changeOwner","outputs":[],"inputs":[{"type":"address","name":"_address"}],"constant":false,"payable":false,"type":"function","gas":35627},{"name":"burn","outputs":[],"inputs":[{"type":"address","name":"_seller"},{"type":"uint256","name":"_amount","unit":"wei"}],"constant":false,"payable":false,"type":"function","gas":77458},{"name":"mint","outputs":[],"inputs":[{"type":"address","name":"_buyer"},{"type":"uint256","name":"_amount","unit":"wei"}],"constant":false,"payable":false,"type":"function","gas":117247},{"name":"setGovernorAddress","outputs":[],"inputs":[{"type":"address","name":"_address"}],"constant":false,"payable":false,"type":"function","gas":35717},{"name":"setFactoryAddress","outputs":[],"inputs":[{"type":"address","name":"_address"}],"constant":false,"payable":false,"type":"function","gas":35747},{"name":"setMinterAddress","outputs":[],"inputs":[{"type":"address","name":"_new_issuer"}],"constant":false,"payable":false,"type":"function","gas":37029},{"name":"removeMinterAddress","outputs":[],"inputs":[],"constant":false,"payable":false,"type":"function","gas":22106},{"name":"totalSupply","outputs":[{"type":"uint256","name":"out","unit":"wei"}],"inputs":[],"constant":true,"payable":false,"type":"function","gas":693},{"name":"balanceOf","outputs":[{"type":"uint256","name":"out","unit":"wei"}],"inputs":[{"type":"address","name":"_owner"}],"constant":true,"payable":false,"type":"function","gas":895},{"name":"transfer","outputs":[{"type":"bool","name":"out"}],"inputs":[{"type":"address","name":"_to"},{"type":"uint256","name":"_value","unit":"wei"}],"constant":false,"payable":false,"type":"function","gas":74303},{"name":"transferFrom","outputs":[{"type":"bool","name":"out"}],"inputs":[{"type":"address","name":"_from"},{"type":"address","name":"_to"},{"type":"uint256","name":"_value","unit":"wei"}],"constant":false,"payable":false,"type":"function","gas":110172},{"name":"approve","outputs":[{"type":"bool","name":"out"}],"inputs":[{"type":"address","name":"_spender"},{"type":"uint256","name":"_value","unit":"wei"}],"constant":false,"payable":false,"type":"function","gas":38038},{"name":"allowance","outputs":[{"type":"uint256","name":"out","unit":"wei"}],"inputs":[{"type":"address","name":"_owner"},{"type":"address","name":"_spender"}],"constant":true,"payable":false,"type":"function","gas":1175},{"name":"factory_address","outputs":[{"type":"address","name":"out"}],"inputs":[],"constant":true,"payable":false,"type":"function","gas":873},{"name":"minter_addresses","outputs":[{"type":"bool","name":"out"}],"inputs":[{"type":"address","name":"arg0"}],"constant":true,"payable":false,"type":"function","gas":1075},{"name":"owner","outputs":[{"type":"address","name":"out"}],"inputs":[],"constant":true,"payable":false,"type":"function","gas":933},{"name":"name","outputs":[{"type":"bytes","name":"out"}],"inputs":[],"constant":true,"payable":false,"type":"function","gas":3782},{"name":"symbol","outputs":[{"type":"bytes","name":"out"}],"inputs":[],"constant":true,"payable":false,"type":"function","gas":2471},{"name":"decimals","outputs":[{"type":"uint256","name":"out"}],"inputs":[],"constant":true,"payable":false,"type":"function","gas":1023},{"name":"commission","outputs":[{"type":"uint256","name":"out"}],"inputs":[],"constant":true,"payable":false,"type":"function","gas":1053},{"name":"balances","outputs":[{"type":"uint256","name":"out","unit":"wei"}],"inputs":[{"type":"address","name":"arg0"}],"constant":true,"payable":false,"type":"function","gas":1255}]

600035601c52740100000000000000000000000000000000000000006020526f7fffffffffffffffffffffffffffffff6040527fffffffffffffffffffffffffffffffff8000000000000000000000000000000060605274012a05f1fffffffffffffffffffffffffdabf41c006080527ffffffffffffffffffffffffed5fa0e000000000000000000000000000000000060a052341561009e57600080fd5b33600355600c610140527f536572656e757320436f696e00000000000000000000000000000000000000006101605261014080600460c052602060c020602082510161012060006002818352015b826101205160200211156100ff57610121565b61012051602002850151610120518501555b81516001018083528114156100ec575b50505050505060036101a0527f53525300000000000000000000000000000000000000000000000000000000006101c0526101a080600560c052602060c020602082510161012060006002818352015b82610120516020021115610184576101a6565b61012051602002850151610120518501555b8151600101808352811415610171575b5050505050506012600655600a600755610e6856600035601c52740100000000000000000000000000000000000000006020526f7fffffffffffffffffffffffffffffff6040527fffffffffffffffffffffffffffffffff8000000000000000000000000000000060605274012a05f1fffffffffffffffffffffffffdabf41c006080527ffffffffffffffffffffffffed5fa0e000000000000000000000000000000000060a05263a6f9dae160005114156100dd57602060046101403734156100b457600080fd5b60043560205181106100c557600080fd5b5060035433146100d457600080fd5b61014051600355005b639dc29fac600051141561025857604060046101403734156100fe57600080fd5b600435602051811061010f57600080fd5b50600160023360e05260c052604060c020541461012b57600080fd5b333b61013657600080fd5b3330141561014357600080fd5b6020610260600463affed0e06102005261021c335afa61016257600080fd5b600050610260516000543b61017657600080fd5b60005430141561018557600080fd5b60206101e0600463affed0e06101805261019c6000545afa6101a657600080fd5b6000506101e051146101b757600080fd5b6101605160086101405160e05260c052604060c0205410156101d857600080fd5b60086101405160e05260c052604060c02061016051815410156101fa57600080fd5b61016051815403815550600a610160518154101561021757600080fd5b6101605181540381555061016051610280526000610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610280a3005b6340c10f1960005114156104aa576040600461014037341561027957600080fd5b600435602051811061028a57600080fd5b50600160023360e05260c052604060c02054146102a657600080fd5b333b6102b157600080fd5b333014156102be57600080fd5b6020610260600463affed0e06102005261021c335afa6102dd57600080fd5b600050610260516000543b6102f157600080fd5b60005430141561030057600080fd5b60206101e0600463affed0e06101805261019c6000545afa61032157600080fd5b6000506101e0511461033257600080fd5b61271061033e57600080fd5b612710610160511515610352576000610375565b600754610160516007546101605102041461036c57600080fd5b60075461016051025b0461028052600860035460e05260c052604060c020805461028051825401101561039e57600080fd5b6102805181540181555060086101405160e05260c052604060c0208054610280516101605110156103ce57600080fd5b61028051610160510382540110156103e557600080fd5b610280516101605110156103f857600080fd5b610280516101605103815401815550600a805461016051825401101561041d57600080fd5b610160518154018155506102805161016051101561043a57600080fd5b6102805161016051036102a0526101405160007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206102a0a3610280516102c05260035460007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206102c0a3005b631197705e60005114156104f457602060046101403734156104cb57600080fd5b60043560205181106104dc57600080fd5b5060035433146104eb57600080fd5b61014051600055005b6383c17c55600051141561053e576020600461014037341561051557600080fd5b600435602051811061052657600080fd5b50600354331461053557600080fd5b61014051600155005b63a3106b9560005114156105bf576020600461014037341561055f57600080fd5b600435602051811061057057600080fd5b50600154331461057f57600080fd5b600160026101405160e05260c052604060c02055610140517fa1131a6d1737e5b75661be036b6ebcc8dcd8af884ae66816a8a6548b489e993c60006000a2005b63d05904d2600051141561062d5734156105d857600080fd5b600160023360e05260c052604060c02054146105f357600080fd5b600060023360e05260c052604060c02055337feabc82b10cf73dc9028609590ea5be3182367dd66d7fcf45816d9d302502b4a760006000a2005b6318160ddd600051141561065357341561064657600080fd5b600a5460005260206000f3005b6370a0823160005114156106a2576020600461014037341561067457600080fd5b600435602051811061068557600080fd5b5060086101405160e05260c052604060c0205460005260206000f3005b63a9059cbb600051141561077857604060046101403734156106c357600080fd5b60043560205181106106d457600080fd5b50336101805260086101805160e05260c052604060c02061016051815410156106fc57600080fd5b6101605181540381555060086101405160e05260c052604060c020805461016051825401101561072b57600080fd5b61016051815401815550610160516101a05261014051610180517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101a0a3600160005260206000f3005b6323b872dd600051141561089b576060600461014037341561079957600080fd5b60043560205181106107aa57600080fd5b5060243560205181106107bc57600080fd5b50336101a05260086101405160e05260c052604060c02061018051815410156107e457600080fd5b6101805181540381555060086101605160e05260c052604060c020805461018051825401101561081357600080fd5b6101805181540181555060096101405160e05260c052604060c0206101a05160e05260c052604060c020610180518154101561084e57600080fd5b61018051815403815550610180516101c05261016051610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101c0a3600160005260206000f3005b63095ea7b3600051141561093b57604060046101403734156108bc57600080fd5b60043560205181106108cd57600080fd5b5033610180526101605160096101805160e05260c052604060c0206101405160e05260c052604060c02055610160516101a05261014051610180517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560206101a0a3600160005260206000f3005b63dd62ed3e60005114156109ab576040600461014037341561095c57600080fd5b600435602051811061096d57600080fd5b50602435602051811061097f57600080fd5b5060096101405160e05260c052604060c0206101605160e05260c052604060c0205460005260206000f3005b63ba92d38260005114156109d15734156109c457600080fd5b60015460005260206000f3005b630c51069c6000511415610a2057602060046101403734156109f257600080fd5b6004356020518110610a0357600080fd5b5060026101405160e05260c052604060c0205460005260206000f3005b638da5cb5b6000511415610a46573415610a3957600080fd5b60035460005260206000f3005b6306fdde036000511415610b29573415610a5f57600080fd5b60048060c052602060c020610180602082540161012060006002818352015b82610120516020021115610a9157610ab3565b61012051850154610120516020028501525b8151600101808352811415610a7e575b5050505050506101805160206001820306601f82010390506101e061018051600c818352015b826101e0511115610ae957610b05565b60006101e0516101a001535b8151600101808352811415610ad9575b5050506020610160526040610180510160206001820306601f8201039050610160f3005b6395d89b416000511415610c0c573415610b4257600080fd5b60058060c052602060c020610180602082540161012060006002818352015b82610120516020021115610b7457610b96565b61012051850154610120516020028501525b8151600101808352811415610b61575b5050505050506101805160206001820306601f82010390506101e0610180516003818352015b826101e0511115610bcc57610be8565b60006101e0516101a001535b8151600101808352811415610bbc575b5050506020610160526040610180510160206001820306601f8201039050610160f3005b63313ce5676000511415610c32573415610c2557600080fd5b60065460005260206000f3005b63e14891916000511415610c58573415610c4b57600080fd5b60075460005260206000f3005b6327e235e36000511415610ca75760206004610140373415610c7957600080fd5b6004356020518110610c8a57600080fd5b5060086101405160e05260c052604060c0205460005260206000f3005b60006000fd5b6101bb610e68036101bb6000396101bb610e68036000f3

Deployed Bytecode

0x600035601c52740100000000000000000000000000000000000000006020526f7fffffffffffffffffffffffffffffff6040527fffffffffffffffffffffffffffffffff8000000000000000000000000000000060605274012a05f1fffffffffffffffffffffffffdabf41c006080527ffffffffffffffffffffffffed5fa0e000000000000000000000000000000000060a05263a6f9dae160005114156100dd57602060046101403734156100b457600080fd5b60043560205181106100c557600080fd5b5060035433146100d457600080fd5b61014051600355005b639dc29fac600051141561025857604060046101403734156100fe57600080fd5b600435602051811061010f57600080fd5b50600160023360e05260c052604060c020541461012b57600080fd5b333b61013657600080fd5b3330141561014357600080fd5b6020610260600463affed0e06102005261021c335afa61016257600080fd5b600050610260516000543b61017657600080fd5b60005430141561018557600080fd5b60206101e0600463affed0e06101805261019c6000545afa6101a657600080fd5b6000506101e051146101b757600080fd5b6101605160086101405160e05260c052604060c0205410156101d857600080fd5b60086101405160e05260c052604060c02061016051815410156101fa57600080fd5b61016051815403815550600a610160518154101561021757600080fd5b6101605181540381555061016051610280526000610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610280a3005b6340c10f1960005114156104aa576040600461014037341561027957600080fd5b600435602051811061028a57600080fd5b50600160023360e05260c052604060c02054146102a657600080fd5b333b6102b157600080fd5b333014156102be57600080fd5b6020610260600463affed0e06102005261021c335afa6102dd57600080fd5b600050610260516000543b6102f157600080fd5b60005430141561030057600080fd5b60206101e0600463affed0e06101805261019c6000545afa61032157600080fd5b6000506101e0511461033257600080fd5b61271061033e57600080fd5b612710610160511515610352576000610375565b600754610160516007546101605102041461036c57600080fd5b60075461016051025b0461028052600860035460e05260c052604060c020805461028051825401101561039e57600080fd5b6102805181540181555060086101405160e05260c052604060c0208054610280516101605110156103ce57600080fd5b61028051610160510382540110156103e557600080fd5b610280516101605110156103f857600080fd5b610280516101605103815401815550600a805461016051825401101561041d57600080fd5b610160518154018155506102805161016051101561043a57600080fd5b6102805161016051036102a0526101405160007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206102a0a3610280516102c05260035460007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206102c0a3005b631197705e60005114156104f457602060046101403734156104cb57600080fd5b60043560205181106104dc57600080fd5b5060035433146104eb57600080fd5b61014051600055005b6383c17c55600051141561053e576020600461014037341561051557600080fd5b600435602051811061052657600080fd5b50600354331461053557600080fd5b61014051600155005b63a3106b9560005114156105bf576020600461014037341561055f57600080fd5b600435602051811061057057600080fd5b50600154331461057f57600080fd5b600160026101405160e05260c052604060c02055610140517fa1131a6d1737e5b75661be036b6ebcc8dcd8af884ae66816a8a6548b489e993c60006000a2005b63d05904d2600051141561062d5734156105d857600080fd5b600160023360e05260c052604060c02054146105f357600080fd5b600060023360e05260c052604060c02055337feabc82b10cf73dc9028609590ea5be3182367dd66d7fcf45816d9d302502b4a760006000a2005b6318160ddd600051141561065357341561064657600080fd5b600a5460005260206000f3005b6370a0823160005114156106a2576020600461014037341561067457600080fd5b600435602051811061068557600080fd5b5060086101405160e05260c052604060c0205460005260206000f3005b63a9059cbb600051141561077857604060046101403734156106c357600080fd5b60043560205181106106d457600080fd5b50336101805260086101805160e05260c052604060c02061016051815410156106fc57600080fd5b6101605181540381555060086101405160e05260c052604060c020805461016051825401101561072b57600080fd5b61016051815401815550610160516101a05261014051610180517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101a0a3600160005260206000f3005b6323b872dd600051141561089b576060600461014037341561079957600080fd5b60043560205181106107aa57600080fd5b5060243560205181106107bc57600080fd5b50336101a05260086101405160e05260c052604060c02061018051815410156107e457600080fd5b6101805181540381555060086101605160e05260c052604060c020805461018051825401101561081357600080fd5b6101805181540181555060096101405160e05260c052604060c0206101a05160e05260c052604060c020610180518154101561084e57600080fd5b61018051815403815550610180516101c05261016051610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101c0a3600160005260206000f3005b63095ea7b3600051141561093b57604060046101403734156108bc57600080fd5b60043560205181106108cd57600080fd5b5033610180526101605160096101805160e05260c052604060c0206101405160e05260c052604060c02055610160516101a05261014051610180517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560206101a0a3600160005260206000f3005b63dd62ed3e60005114156109ab576040600461014037341561095c57600080fd5b600435602051811061096d57600080fd5b50602435602051811061097f57600080fd5b5060096101405160e05260c052604060c0206101605160e05260c052604060c0205460005260206000f3005b63ba92d38260005114156109d15734156109c457600080fd5b60015460005260206000f3005b630c51069c6000511415610a2057602060046101403734156109f257600080fd5b6004356020518110610a0357600080fd5b5060026101405160e05260c052604060c0205460005260206000f3005b638da5cb5b6000511415610a46573415610a3957600080fd5b60035460005260206000f3005b6306fdde036000511415610b29573415610a5f57600080fd5b60048060c052602060c020610180602082540161012060006002818352015b82610120516020021115610a9157610ab3565b61012051850154610120516020028501525b8151600101808352811415610a7e575b5050505050506101805160206001820306601f82010390506101e061018051600c818352015b826101e0511115610ae957610b05565b60006101e0516101a001535b8151600101808352811415610ad9575b5050506020610160526040610180510160206001820306601f8201039050610160f3005b6395d89b416000511415610c0c573415610b4257600080fd5b60058060c052602060c020610180602082540161012060006002818352015b82610120516020021115610b7457610b96565b61012051850154610120516020028501525b8151600101808352811415610b61575b5050505050506101805160206001820306601f82010390506101e0610180516003818352015b826101e0511115610bcc57610be8565b60006101e0516101a001535b8151600101808352811415610bbc575b5050506020610160526040610180510160206001820306601f8201039050610160f3005b63313ce5676000511415610c32573415610c2557600080fd5b60065460005260206000f3005b63e14891916000511415610c58573415610c4b57600080fd5b60075460005260206000f3005b6327e235e36000511415610ca75760206004610140373415610c7957600080fd5b6004356020518110610c8a57600080fd5b5060086101405160e05260c052604060c0205460005260206000f3005b60006000fd

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

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