ETH Price: $2,059.00 (-4.93%)

Contract

0xA34EccD1cdDF217cD3f0Fc63dfbceD7657584bc6
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Bridge209350362024-10-10 11:53:23532 days ago1728561203IN
0xA34EccD1...657584bc6
0.00038008 ETH0.0028998812.57665576

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Method Block
From
To
Bridge243869832026-02-05 0:13:5950 days ago1770250439
0xA34EccD1...657584bc6
0.00042437 ETH
Bridge243869832026-02-05 0:13:5950 days ago1770250439
0xA34EccD1...657584bc6
0.00042437 ETH
Bridge243869672026-02-05 0:10:4750 days ago1770250247
0xA34EccD1...657584bc6
0.00042437 ETH
Bridge243869672026-02-05 0:10:4750 days ago1770250247
0xA34EccD1...657584bc6
0.00042437 ETH
Bridge243368292026-01-29 0:08:4757 days ago1769645327
0xA34EccD1...657584bc6
0.0003066 ETH
Bridge243368292026-01-29 0:08:4757 days ago1769645327
0xA34EccD1...657584bc6
0.0003066 ETH
Bridge243368142026-01-29 0:05:4757 days ago1769645147
0xA34EccD1...657584bc6
0.0003066 ETH
Bridge243368142026-01-29 0:05:4757 days ago1769645147
0xA34EccD1...657584bc6
0.0003066 ETH
Bridge242866482026-01-22 0:08:1164 days ago1769040491
0xA34EccD1...657584bc6
0.00030662 ETH
Bridge242866482026-01-22 0:08:1164 days ago1769040491
0xA34EccD1...657584bc6
0.00030662 ETH
Bridge242866362026-01-22 0:05:4764 days ago1769040347
0xA34EccD1...657584bc6
0.00030662 ETH
Bridge242866362026-01-22 0:05:4764 days ago1769040347
0xA34EccD1...657584bc6
0.00030662 ETH
Bridge242364302026-01-15 0:08:4771 days ago1768435727
0xA34EccD1...657584bc6
0.0002823 ETH
Bridge242364302026-01-15 0:08:4771 days ago1768435727
0xA34EccD1...657584bc6
0.0002823 ETH
Bridge242364152026-01-15 0:05:4771 days ago1768435547
0xA34EccD1...657584bc6
0.0002823 ETH
Bridge242364152026-01-15 0:05:4771 days ago1768435547
0xA34EccD1...657584bc6
0.0002823 ETH
Bridge241863082026-01-08 0:13:2378 days ago1767831203
0xA34EccD1...657584bc6
0.0002823 ETH
Bridge241863082026-01-08 0:13:2378 days ago1767831203
0xA34EccD1...657584bc6
0.0002823 ETH
Bridge241862742026-01-08 0:06:3578 days ago1767830795
0xA34EccD1...657584bc6
0.0002823 ETH
Bridge241862742026-01-08 0:06:3578 days ago1767830795
0xA34EccD1...657584bc6
0.0002823 ETH
Bridge241360942026-01-01 0:08:2385 days ago1767226103
0xA34EccD1...657584bc6
0.00030062 ETH
Bridge241360942026-01-01 0:08:2385 days ago1767226103
0xA34EccD1...657584bc6
0.00030062 ETH
Bridge241360822026-01-01 0:05:5985 days ago1767225959
0xA34EccD1...657584bc6
0.00030062 ETH
Bridge241360822026-01-01 0:05:5985 days ago1767225959
0xA34EccD1...657584bc6
0.00030062 ETH
Bridge240859672025-12-25 0:09:1192 days ago1766621351
0xA34EccD1...657584bc6
0.00030062 ETH
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x10b97ce0...0E6AfFE52
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
LzXdaoBridger

Compiler Version
vyper:0.4.0

Optimization Enabled:
Yes

Other Settings:
default evmVersion, MIT license

Contract Source Code (Vyper Json-Input format)

File 1 of 2 : LzXdaoBridger.vy
# @version 0.4.0
"""
@title LzXdaoBridger
@custom:version 0.0.1
@author Curve.Fi
@license Copyright (c) Curve.Fi, 2020-2024 - all rights reserved
@notice Curve Xdao Layer Zero bridge wrapper
"""

version: public(constant(String[8])) = "0.0.1"

from ethereum.ercs import IERC20
import IBridger

implements: IBridger


interface Bridge:
    def bridge(_receiver: address, _amount: uint256, _refund: address): payable
    def quote() -> uint256: view


CRV20: constant(address) = 0xD533a949740bb3306d119CC777fa900bA034cd52
BRIDGE: public(immutable(Bridge))

DESTINATION_CHAIN_ID: public(immutable(uint256))


@deploy
def __init__(_bridge: Bridge, _chain_id: uint256):
    """
    @param _bridge Layer Zero Bridge of CRV
    @param _chain_id Chain ID to bridge to (actual, not LZ)
    """
    BRIDGE = _bridge
    DESTINATION_CHAIN_ID = _chain_id

    assert extcall IERC20(CRV20).approve(BRIDGE.address, max_value(uint256))


@external
@payable
def bridge(_token: IERC20, _to: address, _amount: uint256, _min_amount: uint256=0) -> uint256:
    """
    @notice Bridge `_token` through XDAO Layer Zero
    @param _token The ERC20 asset to bridge
    @param _to The receiver on `_chain_id`
    @param _amount The amount of `_token` to deposit, 2^256-1 for the whole balance
    @param _min_amount Minimum amount when to bridge
    @return Bridged amount
    """
    amount: uint256 = _amount
    if amount == max_value(uint256):
        amount = min(staticcall _token.balanceOf(msg.sender), staticcall _token.allowance(msg.sender, self))
    assert amount >= _min_amount, "Amount too small"

    assert extcall _token.transferFrom(msg.sender, self, amount)

    extcall BRIDGE.bridge(_to, amount, msg.sender, value=self.balance)
    return amount


@view
@external
def cost() -> uint256:
    """
    @notice Cost in ETH to bridge
    """
    return staticcall BRIDGE.quote()


@view
@external
def check(_account: address) -> bool:
    """
    @notice Check if `_account` is allowed to bridge
    @param _account The account to check
    """
    return True

File 2 of 2 : Vyper_contract.vy
# pragma version ~=0.4.0
"""
@title Curve Bridge Adapter
@license MIT
@author CurveFi
@notice Interface mainly used for bridging Curve emissions to L2s and collected fees to Ethereum.
"""

from ethereum.ercs import IERC20


@external
@payable
def bridge(_token: IERC20, _to: address, _amount: uint256, _min_amount: uint256=0) -> uint256:
    """
    @notice Bridge `_token`
    @param _token The ERC20 asset to bridge
    @param _to The receiver on `_chain_id`
    @param _amount The amount of `_token` to deposit, 2^256-1 for the whole balance
    @param _min_amount Minimum amount when to bridge
    @return Bridged amount
    """
    ...


@view
@external
def check(_account: address) -> bool:
    """
    @notice Check if `_account` may bridge via `transmit_emissions`
    @param _account The account to check
    """
    ...


@view
@external
def cost() -> uint256:
    """
    @notice Cost in ETH to bridge, not all chains are supported
    """
    ...

Settings
{
  "outputSelection": {
    "contracts/bridgers/LzXdaoBridger.vy": [
      "evm.bytecode",
      "evm.deployedBytecode",
      "abi"
    ]
  },
  "search_paths": [
    "."
  ]
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"name":"_token","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"bridge","outputs":[{"name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"name":"_token","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_min_amount","type":"uint256"}],"name":"bridge","outputs":[{"name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"name":"_account","type":"address"}],"name":"check","outputs":[{"name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"BRIDGE","outputs":[{"name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DESTINATION_CHAIN_ID","outputs":[{"name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"name":"_bridge","type":"address"},{"name":"_chain_id","type":"uint256"}],"outputs":[],"stateMutability":"nonpayable","type":"constructor"}]

0x6103935150346100cf57602061045b5f395f518060a01c6100cf5760405260405161037352602061047b5f395f516103935263095ea7b3606052610373516080527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60a052602060606044607c5f73d533a949740bb3306d119cc777fa900ba034cd525af1610090573d5f5f3e3d5ffd5b3d602081183d6020100218806060016080116100cf576060518060011c6100cf5760c0525060c051156100cf576103736100d3610000396103b3610000f35b5f80fd5f3560e01c60026009820660011b61036101601e395f51565b6387121759811861035957606336111561035d575f608052610050565b63e5361522811861035957608336111561035d576064356080525b6004358060a01c61035d576040526024358060a01c61035d5760605260443560a05260a051196100fb576040516370a0823160c0523360e052602060c0602460dc845afa6100a0573d5f5f3e3d5ffd5b60203d1061035d5760c090505160405163dd62ed3e61010052336101205230610140526020610100604461011c845afa6100dc573d5f5f3e3d5ffd5b60203d1061035d576101009050518082811882841002189050905060a0525b60805160a05110156101815760208061012052601060c0527f416d6f756e7420746f6f20736d616c6c0000000000000000000000000000000060e05260c0816101200160208251018083835e508051806020830101601f825f03163682375050601f19601f8251602001011690509050810190506308c379a0610100528060040161011cfd5b6040516323b872dd60c0523360e052306101005260a05161012052602060c0606460dc5f855af16101b4573d5f5f3e3d5ffd5b3d602081183d60201002188060c00160e01161035d5760c0518060011c61035d5761014052506101409050511561035d5760206103735f395f51636aea40ed60c05260605160e05260a051610100523361012052803b1561035d575f60c0606460dc47855af1610226573d5f5f3e3d5ffd5b50602060a0f35b6313faede68118610359573461035d57602060206103735f395f5163999b93af604052602060406004605c845afa610267573d5f5f3e3d5ffd5b60203d1061035d5760409050f35b63c23697a881186103595760243610341761035d576004358060a01c61035d57604052600160605260206060f35b6354fd4d508118610359573461035d5760208060805260056040527f302e302e3100000000000000000000000000000000000000000000000000000060605260408160800160208251018083835e508051806020830101601f825f03163682375050601f19601f8251602001011690509050810190506080f35b63ee9a31a28118610359573461035d57602061037360403960206040f35b632ea023698118610359573461035d57602061039360403960206040f35b5f5ffd5b5f80fd031d001802a30275022d00350359033b03598419037381121840a16576797065728300040000150000000000000000000000007ce8af75a9180b602445be230860ddcb4cac3e4200000000000000000000000000000000000000000000000000000000000000fa

Deployed Bytecode

0x5f3560e01c60026009820660011b61036101601e395f51565b6387121759811861035957606336111561035d575f608052610050565b63e5361522811861035957608336111561035d576064356080525b6004358060a01c61035d576040526024358060a01c61035d5760605260443560a05260a051196100fb576040516370a0823160c0523360e052602060c0602460dc845afa6100a0573d5f5f3e3d5ffd5b60203d1061035d5760c090505160405163dd62ed3e61010052336101205230610140526020610100604461011c845afa6100dc573d5f5f3e3d5ffd5b60203d1061035d576101009050518082811882841002189050905060a0525b60805160a05110156101815760208061012052601060c0527f416d6f756e7420746f6f20736d616c6c0000000000000000000000000000000060e05260c0816101200160208251018083835e508051806020830101601f825f03163682375050601f19601f8251602001011690509050810190506308c379a0610100528060040161011cfd5b6040516323b872dd60c0523360e052306101005260a05161012052602060c0606460dc5f855af16101b4573d5f5f3e3d5ffd5b3d602081183d60201002188060c00160e01161035d5760c0518060011c61035d5761014052506101409050511561035d5760206103735f395f51636aea40ed60c05260605160e05260a051610100523361012052803b1561035d575f60c0606460dc47855af1610226573d5f5f3e3d5ffd5b50602060a0f35b6313faede68118610359573461035d57602060206103735f395f5163999b93af604052602060406004605c845afa610267573d5f5f3e3d5ffd5b60203d1061035d5760409050f35b63c23697a881186103595760243610341761035d576004358060a01c61035d57604052600160605260206060f35b6354fd4d508118610359573461035d5760208060805260056040527f302e302e3100000000000000000000000000000000000000000000000000000060605260408160800160208251018083835e508051806020830101601f825f03163682375050601f19601f8251602001011690509050810190506080f35b63ee9a31a28118610359573461035d57602061037360403960206040f35b632ea023698118610359573461035d57602061039360403960206040f35b5f5ffd5b5f80fd031d001802a30275022d00350359033b03590000000000000000000000007ce8af75a9180b602445be230860ddcb4cac3e4200000000000000000000000000000000000000000000000000000000000000fa

Deployed Bytecode Sourcemap

0:2050:0:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;1022:1:0;1001:20:0;-1:-1:-1;1001:20:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;1001:20:0;1001:20:0;-1:-1:-1;1001:20:0;942:798:0:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;953:14:0;-1:-1:-1;953:14:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;969:12:0;-1:-1:-1;969:12:0;1378:7:0;-1:-1:-1;1360:25:0;1360:25:0;-1:-1:-1;1360:25:0;1393:6:0;-1:-1:-1;1393:28:0;1393:28:0;1390:141:0;-1:-1:-1;-1:-1:-1;1390:141:0:-;1455:6:0;-1:-1:-1;1444:39:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1472:10:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1444:39:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;1444:39:0;1444:39:0;1440:91:0;1496:6:0;-1:-1:-1;1485:45:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1513:10:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1525:4:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1485:45:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;1485:45:0;1485:45:0;-1:-1:-1;-1:-1:-1;1440:91:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;1440:91:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;1440:91:0;1440:91:0;1440:91:0;1440:91:0;1431:6:0;-1:-1:-1;-1:-1:-1;1390:141:0:-;1553:11:0;-1:-1:-1;-1:-1:-1;1543:6:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;1536:48:0;1536:48:0;-1:-1:-1;-1:-1:-1;1536:48:0:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1566:18:0;-1:-1:-1;1566:18:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1566:18:0;1566:18:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1536:48:0:-;1605:6:0;-1:-1:-1;1597:53:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1625:10:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;1637:4:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1643:6:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1597:53:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1597:53:0;1597:53:0;1590:60:0;1590:60:0;1590:60:0;-1:-1:-1;-1:-1:-1;1590:60:0:-;1656:66:0;1656:66:0;1656:66:0;-1:-1:-1;-1:-1:-1;1656:66:0;1656:66:0;1656:66:0;1656:66:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1678:3:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1683:6:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1691:10:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1656:66:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1709:12:0;1656:66:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;1656:66:0;942:798:0;-1:-1:-1;1734:6:0;-1:-1:-1;942:798:0;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;1759:109:0;-1:-1:-1;1843:25:0;1843:25:0;1843:25:0;-1:-1:-1;-1:-1:-1;1843:25:0;1843:25:0;1843:25:0;1843:25:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1843:25:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;1843:25:0;1843:25:0;1759:109:0;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;1897:17:0;-1:-1:-1;1897:17:0;2046:4:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;1887:163:0;-1:-1:-1;1887:163:0;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;235:7:0;-1:-1:-1;235:7:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;235:7:0;235:7:0;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;196:46:0;-1:-1:-1;196:46:0;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;520:33:0;-1:-1:-1;520:33:0;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;555:48:0;-1:-1:-1;555:48:0;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1:-;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1;-1:-1:-1

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.