More Info
Private Name Tags
ContractCreator
Latest 14 from a total of 14 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Swap ETH | 121652763 | 78 days ago | IN | 1.01730569128 ETH | 0.000031894609 | ||||
Swap ETH | 118026262 | 162 days ago | IN | 50.028381531017089 ETH | 0.000009747359 | ||||
Swap ETH | 117636283 | 171 days ago | IN | 1.02925558896675 ETH | 0.000000603277 | ||||
Swap ETH | 115824470 | 213 days ago | IN | 11.021842454750588 ETH | 0.000067253911 | ||||
Swap ETH And Cal... | 115247478 | 227 days ago | IN | 0.004356438802232 ETH | 0.000057200513 | ||||
Swap ETH And Cal... | 115247446 | 227 days ago | IN | 0.004361504774232 ETH | 0.000053770079 | ||||
Swap ETH And Cal... | 115246728 | 227 days ago | IN | 0.004533214870337 ETH | 0.000038798683 | ||||
Swap ETH And Cal... | 115246582 | 227 days ago | IN | 0.004505851359378 ETH | 0.000038804175 | ||||
Swap ETH | 112988302 | 279 days ago | IN | 20.022521083055394 ETH | 0.000080092689 | ||||
Swap ETH | 112539259 | 289 days ago | IN | 1.013282801358826 ETH | 0.000119559141 | ||||
Swap ETH | 112539213 | 289 days ago | IN | 20.013282801358826 ETH | 0.000134554279 | ||||
Swap ETH | 112496295 | 290 days ago | IN | 20.013282801358826 ETH | 0.000184538562 | ||||
Transfer | 106258460 | 435 days ago | IN | 0.042637999586701 ETH | 0.000029930785 | ||||
0x60e06040 | 103022631 | 465 days ago | IN | 0 ETH | 0.002171286897 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
119549416 | 127 days ago | 70.772157304648888 ETH | ||||
119549416 | 127 days ago | 70.772157304648888 ETH | ||||
118521991 | 151 days ago | 76.547626440362813 ETH | ||||
118521991 | 151 days ago | 76.547626440362813 ETH | ||||
118521968 | 151 days ago | 76.547626440362813 ETH | ||||
118521968 | 151 days ago | 76.547626440362813 ETH | ||||
116996646 | 186 days ago | 85.190427328414912 ETH | ||||
116996646 | 186 days ago | 85.190427328414912 ETH | ||||
115618935 | 218 days ago | 27.724386504123946 ETH | ||||
115618935 | 218 days ago | 27.724386504123946 ETH | ||||
115247478 | 227 days ago | 0.000190742280485 ETH | ||||
115247478 | 227 days ago | 0.004165696521746 ETH | ||||
115247446 | 227 days ago | 0.000190742280485 ETH | ||||
115247446 | 227 days ago | 0.004170762493746 ETH | ||||
115246728 | 227 days ago | 0.000190742280485 ETH | ||||
115246728 | 227 days ago | 0.004342472589851 ETH | ||||
115246582 | 227 days ago | 0.000190742280485 ETH | ||||
115246582 | 227 days ago | 0.004315109078892 ETH | ||||
114407921 | 246 days ago | 34.042064151369636 ETH | ||||
114407921 | 246 days ago | 34.042064151369636 ETH | ||||
112933948 | 280 days ago | 22.087959848799377 ETH | ||||
112933948 | 280 days ago | 22.087959848799377 ETH | ||||
111940991 | 303 days ago | 17.897482599786428 ETH | ||||
111940991 | 303 days ago | 17.897482599786428 ETH | ||||
110811533 | 329 days ago | 35.806695822999828 ETH |
Loading...
Loading
Contract Name:
RouterETH
Compiler Version
v0.7.6+commit.7338295f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.7.6; pragma abicoder v2; import "./interfaces/IStargateRouter.sol"; import "./interfaces/IStargateEthVault.sol"; contract RouterETH { struct SwapAmount { uint256 amountLD; // the amount, in Local Decimals, to be swapped uint256 minAmountLD; // the minimum amount accepted out on destination } address public immutable stargateEthVault; IStargateRouter public immutable stargateRouter; uint16 public immutable poolId; constructor(address _stargateEthVault, address _stargateRouter, uint16 _poolId) { require(_stargateEthVault != address(0x0), "RouterETH: _stargateEthVault cant be 0x0"); require(_stargateRouter != address(0x0), "RouterETH: _stargateRouter cant be 0x0"); stargateEthVault = _stargateEthVault; stargateRouter = IStargateRouter(_stargateRouter); poolId = _poolId; } function addLiquidityETH() external payable { require(msg.value > 0, "Stargate: msg.value is 0"); uint256 amountLD = msg.value; // wrap the ETH into WETH IStargateEthVault(stargateEthVault).deposit{value: amountLD}(); IStargateEthVault(stargateEthVault).approve(address(stargateRouter), amountLD); // addLiquidity using the WETH that was just wrapped, // and mint the LP token to the msg.sender stargateRouter.addLiquidity(poolId, amountLD, msg.sender); } ///@notice compose stargate to swap ETH on the source to ETH on the destination and arbitrary call function swapETHAndCall( uint16 _dstChainId, // destination Stargate chainId address payable _refundAddress, // refund additional messageFee to this address bytes calldata _toAddress, // the receiver of the destination ETH SwapAmount memory _swapAmount, // the amount and the minimum swap amount IStargateRouter.lzTxObj memory _lzTxParams, // the LZ tx params bytes calldata _payload // the payload to send to the destination ) external payable { require(msg.value > _swapAmount.amountLD, "Stargate: msg.value must be > _swapAmount.amountLD"); IStargateEthVault(stargateEthVault).deposit{value: _swapAmount.amountLD}(); IStargateEthVault(stargateEthVault).approve(address(stargateRouter), _swapAmount.amountLD); stargateRouter.swap{value: (msg.value - _swapAmount.amountLD)}( _dstChainId, // destination Stargate chainId poolId, // WETH Stargate poolId on source poolId, // WETH Stargate poolId on destination _refundAddress, // message refund address if overpaid _swapAmount.amountLD, // the amount in Local Decimals to swap() _swapAmount.minAmountLD, // the minimum amount swap()er would allow to get out (ie: slippage) _lzTxParams, // the LZ tx params _toAddress, // address on destination to send to _payload // payload to send to the destination ); } // this contract needs to accept ETH receive() external payable {} }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.7.6; pragma abicoder v2; interface IStargateRouter { struct lzTxObj { uint256 dstGasForCall; uint256 dstNativeAmount; bytes dstNativeAddr; } function addLiquidity( uint256 _poolId, uint256 _amountLD, address _to ) external; function swap( uint16 _dstChainId, uint256 _srcPoolId, uint256 _dstPoolId, address payable _refundAddress, uint256 _amountLD, uint256 _minAmountLD, lzTxObj memory _lzTxParams, bytes calldata _to, bytes calldata _payload ) external payable; function redeemRemote( uint16 _dstChainId, uint256 _srcPoolId, uint256 _dstPoolId, address payable _refundAddress, uint256 _amountLP, uint256 _minAmountLD, bytes calldata _to, lzTxObj memory _lzTxParams ) external payable; function instantRedeemLocal( uint16 _srcPoolId, uint256 _amountLP, address _to ) external returns (uint256); function redeemLocal( uint16 _dstChainId, uint256 _srcPoolId, uint256 _dstPoolId, address payable _refundAddress, uint256 _amountLP, bytes calldata _to, lzTxObj memory _lzTxParams ) external payable; function sendCredits( uint16 _dstChainId, uint256 _srcPoolId, uint256 _dstPoolId, address payable _refundAddress ) external payable; function quoteLayerZeroFee( uint16 _dstChainId, uint8 _functionType, bytes calldata _toAddress, bytes calldata _transferAndCallPayload, lzTxObj memory _lzTxParams ) external view returns (uint256, uint256); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.7.6; interface IStargateEthVault { function deposit() external payable; function transfer(address to, uint value) external returns (bool); function withdraw(uint) external; function approve(address guy, uint wad) external returns (bool); function transferFrom( address src, address dst, uint wad ) external returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_stargateEthVault","type":"address"},{"internalType":"address","name":"_stargateRouter","type":"address"},{"internalType":"uint16","name":"_poolId","type":"uint16"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"addLiquidityETH","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"poolId","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stargateEthVault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stargateRouter","outputs":[{"internalType":"contract IStargateRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_dstChainId","type":"uint16"},{"internalType":"address payable","name":"_refundAddress","type":"address"},{"internalType":"bytes","name":"_toAddress","type":"bytes"},{"components":[{"internalType":"uint256","name":"amountLD","type":"uint256"},{"internalType":"uint256","name":"minAmountLD","type":"uint256"}],"internalType":"struct RouterETH.SwapAmount","name":"_swapAmount","type":"tuple"},{"components":[{"internalType":"uint256","name":"dstGasForCall","type":"uint256"},{"internalType":"uint256","name":"dstNativeAmount","type":"uint256"},{"internalType":"bytes","name":"dstNativeAddr","type":"bytes"}],"internalType":"struct IStargateRouter.lzTxObj","name":"_lzTxParams","type":"tuple"},{"internalType":"bytes","name":"_payload","type":"bytes"}],"name":"swapETHAndCall","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e060405234801561001057600080fd5b50604051610c5e380380610c5e83398101604081905261002f916100d1565b6001600160a01b03831661005e5760405162461bcd60e51b81526004016100559061011d565b60405180910390fd5b6001600160a01b0382166100845760405162461bcd60e51b815260040161005590610165565b606092831b6001600160601b03199081166080529190921b1660a05260f01b6001600160f01b03191660c0526101ab565b80516001600160a01b03811681146100cc57600080fd5b919050565b6000806000606084860312156100e5578283fd5b6100ee846100b5565b92506100fc602085016100b5565b9150604084015161ffff81168114610112578182fd5b809150509250925092565b60208082526028908201527f526f757465724554483a205f73746172676174654574685661756c742063616e604082015267074206265203078360c41b606082015260800190565b60208082526026908201527f526f757465724554483a205f7374617267617465526f757465722063616e742060408201526506265203078360d41b606082015260800190565b60805160601c60a05160601c60c05160f01c610a496102156000398060ff52806102e152806103025280610531525080610123528061022c52806102aa5280610470528061050452508060db528061017052806101fc52806103ba52806104405250610a496000f3fe60806040526004361061004e5760003560e01c806338e31d391461005a5780633e0dc34e14610085578063a9e56f3c146100a7578063e6226889146100bc578063ed995307146100d157610055565b3661005557005b600080fd5b34801561006657600080fd5b5061006f6100d9565b60405161007c919061081a565b60405180910390f35b34801561009157600080fd5b5061009a6100fd565b60405161007c91906108d0565b3480156100b357600080fd5b5061006f610121565b6100cf6100ca366004610722565b610145565b005b6100cf610393565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b8351341161016e5760405162461bcd60e51b81526004016101659061087e565b60405180910390fd5b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db085600001516040518263ffffffff1660e01b81526004016000604051808303818588803b1580156101cd57600080fd5b505af11580156101e1573d6000803e3d6000fd5b5050865160405163095ea7b360e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016945063095ea7b3935061025592507f0000000000000000000000000000000000000000000000000000000000000000919060040161082e565b602060405180830381600087803b15801561026f57600080fd5b505af1158015610283573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102a791906106fb565b507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316639fbf10fc856000015134038a7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000008c8a600001518b602001518b8f8f8d8d6040518d63ffffffff1660e01b81526004016103579b9a999897969594939291906108df565b6000604051808303818588803b15801561037057600080fd5b505af1158015610384573d6000803e3d6000fd5b50505050505050505050505050565b600034116103b35760405162461bcd60e51b815260040161016590610847565b60003490507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561041357600080fd5b505af1158015610427573d6000803e3d6000fd5b505060405163095ea7b360e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016935063095ea7b3925061049a91507f000000000000000000000000000000000000000000000000000000000000000090859060040161082e565b602060405180830381600087803b1580156104b457600080fd5b505af11580156104c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ec91906106fb565b506040516321ec87bf60e21b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906387b21efc9061055d907f000000000000000000000000000000000000000000000000000000000000000090859033906004016109ca565b600060405180830381600087803b15801561057757600080fd5b505af115801561058b573d6000803e3d6000fd5b5050505050565b80356001600160a01b03811681146105a957600080fd5b919050565b60008083601f8401126105bf578081fd5b50813567ffffffffffffffff8111156105d6578182fd5b6020830191508360208285010111156105ee57600080fd5b9250929050565b600060408284031215610606578081fd5b6040516040810181811067ffffffffffffffff8211171561062357fe5b604052823581526020928301359281019290925250919050565b60006060828403121561064e578081fd5b6040516060810167ffffffffffffffff828210818311171561066c57fe5b816040528293508435835260209150818501358284015260408501358181111561069557600080fd5b8501601f810187136106a657600080fd5b8035828111156106b257fe5b6106c4601f8201601f191685016109ef565b925080835287848284010111156106da57600080fd5b80848301858501376000848285010152505080604084015250505092915050565b60006020828403121561070c578081fd5b8151801515811461071b578182fd5b9392505050565b60008060008060008060008060e0898b03121561073d578384fd5b883561ffff8116811461074e578485fd5b975061075c60208a01610592565b9650604089013567ffffffffffffffff80821115610778578586fd5b6107848c838d016105ae565b90985096508691506107998c60608d016105f5565b955060a08b01359150808211156107ae578485fd5b6107ba8c838d0161063d565b945060c08b01359150808211156107cf578384fd5b506107dc8b828c016105ae565b999c989b5096995094979396929594505050565b60008284528282602086013780602084860101526020601f19601f85011685010190509392505050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b60208082526018908201527f53746172676174653a206d73672e76616c756520697320300000000000000000604082015260600190565b60208082526032908201527f53746172676174653a206d73672e76616c7565206d757374206265203e205f736040820152711dd85c105b5bdd5b9d0b985b5bdd5b9d131160721b606082015260800190565b61ffff91909116815260200190565b600061012061ffff808f1684526020818f1681860152818e16604086015260018060a01b038d1660608601528b60808601528a60a08601528260c0860152895183860152808a015161014086015260408a0151925060606101608601528251915081610180860152835b82811015610966578381018201518682016101a001528101610949565b8281111561097857846101a084880101525b5050601f01601f191683018381036101a090810160e08601529091506109a1818301888a6107f0565b9150508281036101008401526109b88185876107f0565b9e9d5050505050505050505050505050565b61ffff93909316835260208301919091526001600160a01b0316604082015260600190565b60405181810167ffffffffffffffff81118282101715610a0b57fe5b60405291905056fea26469706673582212207975c25efef3113ec168c44de38a483e9aef8022e0150f707a3b66f45ee1ff3364736f6c63430007060033000000000000000000000000b69c8cbcd90a39d8d3d3ccf0a3e968511c3856a0000000000000000000000000b0d502e938ed5f4df2e681fe6e419ff29631d62b000000000000000000000000000000000000000000000000000000000000000d
Deployed Bytecode
0x60806040526004361061004e5760003560e01c806338e31d391461005a5780633e0dc34e14610085578063a9e56f3c146100a7578063e6226889146100bc578063ed995307146100d157610055565b3661005557005b600080fd5b34801561006657600080fd5b5061006f6100d9565b60405161007c919061081a565b60405180910390f35b34801561009157600080fd5b5061009a6100fd565b60405161007c91906108d0565b3480156100b357600080fd5b5061006f610121565b6100cf6100ca366004610722565b610145565b005b6100cf610393565b7f000000000000000000000000b69c8cbcd90a39d8d3d3ccf0a3e968511c3856a081565b7f000000000000000000000000000000000000000000000000000000000000000d81565b7f000000000000000000000000b0d502e938ed5f4df2e681fe6e419ff29631d62b81565b8351341161016e5760405162461bcd60e51b81526004016101659061087e565b60405180910390fd5b7f000000000000000000000000b69c8cbcd90a39d8d3d3ccf0a3e968511c3856a06001600160a01b031663d0e30db085600001516040518263ffffffff1660e01b81526004016000604051808303818588803b1580156101cd57600080fd5b505af11580156101e1573d6000803e3d6000fd5b5050865160405163095ea7b360e01b81526001600160a01b037f000000000000000000000000b69c8cbcd90a39d8d3d3ccf0a3e968511c3856a016945063095ea7b3935061025592507f000000000000000000000000b0d502e938ed5f4df2e681fe6e419ff29631d62b919060040161082e565b602060405180830381600087803b15801561026f57600080fd5b505af1158015610283573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102a791906106fb565b507f000000000000000000000000b0d502e938ed5f4df2e681fe6e419ff29631d62b6001600160a01b0316639fbf10fc856000015134038a7f000000000000000000000000000000000000000000000000000000000000000d7f000000000000000000000000000000000000000000000000000000000000000d8c8a600001518b602001518b8f8f8d8d6040518d63ffffffff1660e01b81526004016103579b9a999897969594939291906108df565b6000604051808303818588803b15801561037057600080fd5b505af1158015610384573d6000803e3d6000fd5b50505050505050505050505050565b600034116103b35760405162461bcd60e51b815260040161016590610847565b60003490507f000000000000000000000000b69c8cbcd90a39d8d3d3ccf0a3e968511c3856a06001600160a01b031663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b15801561041357600080fd5b505af1158015610427573d6000803e3d6000fd5b505060405163095ea7b360e01b81526001600160a01b037f000000000000000000000000b69c8cbcd90a39d8d3d3ccf0a3e968511c3856a016935063095ea7b3925061049a91507f000000000000000000000000b0d502e938ed5f4df2e681fe6e419ff29631d62b90859060040161082e565b602060405180830381600087803b1580156104b457600080fd5b505af11580156104c8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ec91906106fb565b506040516321ec87bf60e21b81526001600160a01b037f000000000000000000000000b0d502e938ed5f4df2e681fe6e419ff29631d62b16906387b21efc9061055d907f000000000000000000000000000000000000000000000000000000000000000d90859033906004016109ca565b600060405180830381600087803b15801561057757600080fd5b505af115801561058b573d6000803e3d6000fd5b5050505050565b80356001600160a01b03811681146105a957600080fd5b919050565b60008083601f8401126105bf578081fd5b50813567ffffffffffffffff8111156105d6578182fd5b6020830191508360208285010111156105ee57600080fd5b9250929050565b600060408284031215610606578081fd5b6040516040810181811067ffffffffffffffff8211171561062357fe5b604052823581526020928301359281019290925250919050565b60006060828403121561064e578081fd5b6040516060810167ffffffffffffffff828210818311171561066c57fe5b816040528293508435835260209150818501358284015260408501358181111561069557600080fd5b8501601f810187136106a657600080fd5b8035828111156106b257fe5b6106c4601f8201601f191685016109ef565b925080835287848284010111156106da57600080fd5b80848301858501376000848285010152505080604084015250505092915050565b60006020828403121561070c578081fd5b8151801515811461071b578182fd5b9392505050565b60008060008060008060008060e0898b03121561073d578384fd5b883561ffff8116811461074e578485fd5b975061075c60208a01610592565b9650604089013567ffffffffffffffff80821115610778578586fd5b6107848c838d016105ae565b90985096508691506107998c60608d016105f5565b955060a08b01359150808211156107ae578485fd5b6107ba8c838d0161063d565b945060c08b01359150808211156107cf578384fd5b506107dc8b828c016105ae565b999c989b5096995094979396929594505050565b60008284528282602086013780602084860101526020601f19601f85011685010190509392505050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b60208082526018908201527f53746172676174653a206d73672e76616c756520697320300000000000000000604082015260600190565b60208082526032908201527f53746172676174653a206d73672e76616c7565206d757374206265203e205f736040820152711dd85c105b5bdd5b9d0b985b5bdd5b9d131160721b606082015260800190565b61ffff91909116815260200190565b600061012061ffff808f1684526020818f1681860152818e16604086015260018060a01b038d1660608601528b60808601528a60a08601528260c0860152895183860152808a015161014086015260408a0151925060606101608601528251915081610180860152835b82811015610966578381018201518682016101a001528101610949565b8281111561097857846101a084880101525b5050601f01601f191683018381036101a090810160e08601529091506109a1818301888a6107f0565b9150508281036101008401526109b88185876107f0565b9e9d5050505050505050505050505050565b61ffff93909316835260208301919091526001600160a01b0316604082015260600190565b60405181810167ffffffffffffffff81118282101715610a0b57fe5b60405291905056fea26469706673582212207975c25efef3113ec168c44de38a483e9aef8022e0150f707a3b66f45ee1ff3364736f6c63430007060033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000b69c8cbcd90a39d8d3d3ccf0a3e968511c3856a0000000000000000000000000b0d502e938ed5f4df2e681fe6e419ff29631d62b000000000000000000000000000000000000000000000000000000000000000d
-----Decoded View---------------
Arg [0] : _stargateEthVault (address): 0xb69c8CBCD90A39D8D3d3ccf0a3E968511C3856A0
Arg [1] : _stargateRouter (address): 0xB0D502E938ed5f4df2E681fE6E419ff29631d62b
Arg [2] : _poolId (uint16): 13
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000b69c8cbcd90a39d8d3d3ccf0a3e968511c3856a0
Arg [1] : 000000000000000000000000b0d502e938ed5f4df2e681fe6e419ff29631d62b
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 26 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
OP | Ether (ETH) | 100.00% | $2,290.15 | 0.0426 | $97.65 |
[ 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.