Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 1 from a total of 1 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Bridge | 20935036 | 532 days ago | IN | 0.00038008 ETH | 0.00289988 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Bridge | 24386983 | 50 days ago | 0.00042437 ETH | ||||
| Bridge | 24386983 | 50 days ago | 0.00042437 ETH | ||||
| Bridge | 24386967 | 50 days ago | 0.00042437 ETH | ||||
| Bridge | 24386967 | 50 days ago | 0.00042437 ETH | ||||
| Bridge | 24336829 | 57 days ago | 0.0003066 ETH | ||||
| Bridge | 24336829 | 57 days ago | 0.0003066 ETH | ||||
| Bridge | 24336814 | 57 days ago | 0.0003066 ETH | ||||
| Bridge | 24336814 | 57 days ago | 0.0003066 ETH | ||||
| Bridge | 24286648 | 64 days ago | 0.00030662 ETH | ||||
| Bridge | 24286648 | 64 days ago | 0.00030662 ETH | ||||
| Bridge | 24286636 | 64 days ago | 0.00030662 ETH | ||||
| Bridge | 24286636 | 64 days ago | 0.00030662 ETH | ||||
| Bridge | 24236430 | 71 days ago | 0.0002823 ETH | ||||
| Bridge | 24236430 | 71 days ago | 0.0002823 ETH | ||||
| Bridge | 24236415 | 71 days ago | 0.0002823 ETH | ||||
| Bridge | 24236415 | 71 days ago | 0.0002823 ETH | ||||
| Bridge | 24186308 | 78 days ago | 0.0002823 ETH | ||||
| Bridge | 24186308 | 78 days ago | 0.0002823 ETH | ||||
| Bridge | 24186274 | 78 days ago | 0.0002823 ETH | ||||
| Bridge | 24186274 | 78 days ago | 0.0002823 ETH | ||||
| Bridge | 24136094 | 85 days ago | 0.00030062 ETH | ||||
| Bridge | 24136094 | 85 days ago | 0.00030062 ETH | ||||
| Bridge | 24136082 | 85 days ago | 0.00030062 ETH | ||||
| Bridge | 24136082 | 85 days ago | 0.00030062 ETH | ||||
| Bridge | 24085967 | 92 days ago | 0.00030062 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
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
Contract Source Code (Vyper Json-Input format)
# @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# 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
"""
...{
"outputSelection": {
"contracts/bridgers/LzXdaoBridger.vy": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
},
"search_paths": [
"."
]
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
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"}]Contract Creation Code
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
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
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.