Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 22 from a total of 22 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 11671879 | 1335 days ago | IN | 0 ETH | 0.00097077 | ||||
Lock | 11671876 | 1335 days ago | IN | 0 ETH | 0.0030501 | ||||
Refund | 11666774 | 1335 days ago | IN | 0 ETH | 0.00204141 | ||||
Claim | 11666082 | 1335 days ago | IN | 0 ETH | 0.0016 | ||||
Lock | 11666057 | 1335 days ago | IN | 0 ETH | 0.00390582 | ||||
Claim | 11666048 | 1335 days ago | IN | 0 ETH | 0.00163514 | ||||
Lock | 11666042 | 1335 days ago | IN | 0 ETH | 0.00381262 | ||||
Claim | 11396872 | 1377 days ago | IN | 0 ETH | 0.00070056 | ||||
Lock | 11396868 | 1377 days ago | IN | 0 ETH | 0.00166013 | ||||
Claim | 11374715 | 1380 days ago | IN | 0 ETH | 0.00112902 | ||||
Lock | 11374709 | 1380 days ago | IN | 0 ETH | 0.00245702 | ||||
Claim | 11374528 | 1380 days ago | IN | 0 ETH | 0.000674 | ||||
Lock | 11374525 | 1380 days ago | IN | 0 ETH | 0.00211752 | ||||
Claim | 11374501 | 1380 days ago | IN | 0 ETH | 0.00071428 | ||||
Lock | 11374499 | 1380 days ago | IN | 0 ETH | 0.00211752 | ||||
Claim | 11354209 | 1383 days ago | IN | 0 ETH | 0.00058398 | ||||
Lock | 11354199 | 1383 days ago | IN | 0 ETH | 0.00143991 | ||||
Claim | 10965826 | 1443 days ago | IN | 0 ETH | 0.00327028 | ||||
Lock | 10965815 | 1443 days ago | IN | 0 ETH | 0.00660855 | ||||
Claim | 10920547 | 1450 days ago | IN | 0 ETH | 0.0036974 | ||||
Lock | 10920538 | 1450 days ago | IN | 0 ETH | 0.00828493 | ||||
0x60806040 | 10918880 | 1450 days ago | IN | 0 ETH | 0.0437812 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
ERC20Swap
Compiler Version
v0.7.1+commit.f4a555be
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity 0.7.1; import "./TransferHelper.sol"; contract ERC20Swap { uint8 constant public version = 1; mapping (bytes32 => bool) public swaps; event Lockup( bytes32 indexed preimageHash, uint256 amount, address tokenAddress, address claimAddress, address indexed refundAddress, uint timelock ); event Claim(bytes32 indexed preimageHash, bytes32 preimage); event Refund(bytes32 indexed preimageHash); function hashValues( bytes32 preimageHash, uint256 amount, address tokenAddress, address claimAddress, address refundAddress, uint timelock ) private pure returns (bytes32) { return keccak256(abi.encodePacked( preimageHash, amount, tokenAddress, claimAddress, refundAddress, timelock )); } function checkSwapExists(bytes32 hash) private view { require(swaps[hash] == true, "ERC20Swap: swap does not exist"); } function lock( bytes32 preimageHash, uint256 amount, address tokenAddress, address claimAddress, uint timelock ) external { require(amount > 0, "ERC20Swap: amount must not be zero"); TransferHelper.safeTransferFrom(tokenAddress, msg.sender, address(this), amount); bytes32 hash = hashValues( preimageHash, amount, tokenAddress, claimAddress, msg.sender, timelock ); require(swaps[hash] == false, "ERC20Swap: swap exists already"); swaps[hash] = true; emit Lockup(preimageHash, amount, tokenAddress, claimAddress, msg.sender, timelock); } function claim( bytes32 preimage, uint amount, address tokenAddress, address refundAddress, uint timelock ) external { bytes32 preimageHash = sha256(abi.encodePacked(preimage)); bytes32 hash = hashValues( preimageHash, amount, tokenAddress, msg.sender, refundAddress, timelock ); checkSwapExists(hash); delete swaps[hash]; emit Claim(preimageHash, preimage); TransferHelper.safeTransfer(tokenAddress, msg.sender, amount); } function refund( bytes32 preimageHash, uint amount, address tokenAddress, address claimAddress, uint timelock ) external { require(timelock <= block.number, "ERC20Swap: swap has not timed out yet"); bytes32 hash = hashValues( preimageHash, amount, tokenAddress, claimAddress, msg.sender, timelock ); checkSwapExists(hash); delete swaps[hash]; emit Refund(preimageHash); TransferHelper.safeTransfer(tokenAddress, msg.sender, amount); } }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity 0.7.1; // Copyright 2020 Uniswap team // Based on: https://github.com/Uniswap/uniswap-lib/blob/master/contracts/libraries/TransferHelper.sol library TransferHelper { function safeTransfer(address token, address to, uint value) internal { // bytes4(keccak256(bytes('transfer(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper: could not transfer ERC20 tokens" ); } function safeTransferFrom(address token, address from, address to, uint value) internal { // bytes4(keccak256(bytes('transferFrom(address,address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper: could not transferFrom ERC20 tokens" ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"preimageHash","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"preimage","type":"bytes32"}],"name":"Claim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"preimageHash","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"address","name":"claimAddress","type":"address"},{"indexed":true,"internalType":"address","name":"refundAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"timelock","type":"uint256"}],"name":"Lockup","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"preimageHash","type":"bytes32"}],"name":"Refund","type":"event"},{"inputs":[{"internalType":"bytes32","name":"preimage","type":"bytes32"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"refundAddress","type":"address"},{"internalType":"uint256","name":"timelock","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"preimageHash","type":"bytes32"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"claimAddress","type":"address"},{"internalType":"uint256","name":"timelock","type":"uint256"}],"name":"lock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"preimageHash","type":"bytes32"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"address","name":"claimAddress","type":"address"},{"internalType":"uint256","name":"timelock","type":"uint256"}],"name":"refund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"swaps","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"version","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506108ef806100206000396000f3fe608060405234801561001057600080fd5b50600436106100575760003560e01c8063365047211461005c57806354fd4d50146100a057806391644b2b146100be578063cd413efa14610100578063eb84e7f214610142575b600080fd5b61009e600480360360a081101561007257600080fd5b508035906020810135906001600160a01b03604082013581169160608101359091169060800135610173565b005b6100a861021d565b6040805160ff9092168252519081900360200190f35b61009e600480360360a08110156100d457600080fd5b508035906020810135906001600160a01b03604082013581169160608101359091169060800135610222565b61009e600480360360a081101561011657600080fd5b508035906020810135906001600160a01b0360408201358116916060810135909116906080013561035c565b61015f6004803603602081101561015857600080fd5b5035610480565b604080519115158252519081900360200190f35b438111156101b25760405162461bcd60e51b81526004018080602001828103825260258152602001806108116025913960400191505060405180910390fd5b60006101c2868686863387610495565b90506101cd816104fc565b600081815260208190526040808220805460ff191690555187917f3fbd469ec3a5ce074f975f76ce27e727ba21c99176917b97ae2e713695582a1291a2610215843387610567565b505050505050565b600181565b600084116102615760405162461bcd60e51b81526004018080602001828103825260228152602001806108986022913960400191505060405180910390fd5b61026d833330876106bb565b600061027d868686863387610495565b60008181526020819052604090205490915060ff16156102e4576040805162461bcd60e51b815260206004820152601e60248201527f4552433230537761703a20737761702065786973747320616c72656164790000604482015290519081900360640190fd5b60008181526020818152604091829020805460ff1916600117905581518781526001600160a01b038781169282019290925290851681830152606081018490529051339188917fa98eaa2bd8230d87a1a4c356f5c1d41cb85ff88131122ec8b1931cb9d31ae1459181900360800190a3505050505050565b6000600286604051602001808281526020019150506040516020818303038152906040526040518082805190602001908083835b602083106103af5780518252601f199092019160209182019101610390565b51815160209384036101000a60001901801990921691161790526040519190930194509192505080830381855afa1580156103ee573d6000803e3d6000fd5b5050506040513d602081101561040357600080fd5b505190506000610417828787338888610495565b9050610422816104fc565b60008181526020818152604091829020805460ff191690558151898152915184927f5664142af3dcfc3dc3de45a43f75c746bd1d8c11170a5037fdf98bdb3577513792908290030190a2610477853388610567565b50505050505050565b60006020819052908152604090205460ff1681565b6040805160208082018990528183018890526bffffffffffffffffffffffff19606088811b82168185015287811b8216607485015286901b166088830152609c8083018590528351808403909101815260bc90920190925280519101209695505050505050565b60008181526020819052604090205460ff161515600114610564576040805162461bcd60e51b815260206004820152601e60248201527f4552433230537761703a207377617020646f6573206e6f742065786973740000604482015290519081900360640190fd5b50565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b178152925182516000946060949389169392918291908083835b602083106105e45780518252601f1990920191602091820191016105c5565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610646576040519150601f19603f3d011682016040523d82523d6000602084013e61064b565b606091505b5091509150818015610679575080511580610679575080806020019051602081101561067657600080fd5b50515b6106b45760405162461bcd60e51b815260040180806020018281038252602f815260200180610869602f913960400191505060405180910390fd5b5050505050565b604080516001600160a01b0385811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b17815292518251600094606094938a169392918291908083835b602083106107405780518252601f199092019160209182019101610721565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146107a2576040519150601f19603f3d011682016040523d82523d6000602084013e6107a7565b606091505b50915091508180156107d55750805115806107d557508080602001905160208110156107d257600080fd5b50515b6102155760405162461bcd60e51b81526004018080602001828103825260338152602001806108366033913960400191505060405180910390fdfe4552433230537761703a207377617020686173206e6f742074696d6564206f7574207965745472616e7366657248656c7065723a20636f756c64206e6f74207472616e7366657246726f6d20455243323020746f6b656e735472616e7366657248656c7065723a20636f756c64206e6f74207472616e7366657220455243323020746f6b656e734552433230537761703a20616d6f756e74206d757374206e6f74206265207a65726fa264697066735822122014964198cd2bb29748166c072fd54bf0d8ef72482f5b96ac806484eaee4b5e5f64736f6c63430007010033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100575760003560e01c8063365047211461005c57806354fd4d50146100a057806391644b2b146100be578063cd413efa14610100578063eb84e7f214610142575b600080fd5b61009e600480360360a081101561007257600080fd5b508035906020810135906001600160a01b03604082013581169160608101359091169060800135610173565b005b6100a861021d565b6040805160ff9092168252519081900360200190f35b61009e600480360360a08110156100d457600080fd5b508035906020810135906001600160a01b03604082013581169160608101359091169060800135610222565b61009e600480360360a081101561011657600080fd5b508035906020810135906001600160a01b0360408201358116916060810135909116906080013561035c565b61015f6004803603602081101561015857600080fd5b5035610480565b604080519115158252519081900360200190f35b438111156101b25760405162461bcd60e51b81526004018080602001828103825260258152602001806108116025913960400191505060405180910390fd5b60006101c2868686863387610495565b90506101cd816104fc565b600081815260208190526040808220805460ff191690555187917f3fbd469ec3a5ce074f975f76ce27e727ba21c99176917b97ae2e713695582a1291a2610215843387610567565b505050505050565b600181565b600084116102615760405162461bcd60e51b81526004018080602001828103825260228152602001806108986022913960400191505060405180910390fd5b61026d833330876106bb565b600061027d868686863387610495565b60008181526020819052604090205490915060ff16156102e4576040805162461bcd60e51b815260206004820152601e60248201527f4552433230537761703a20737761702065786973747320616c72656164790000604482015290519081900360640190fd5b60008181526020818152604091829020805460ff1916600117905581518781526001600160a01b038781169282019290925290851681830152606081018490529051339188917fa98eaa2bd8230d87a1a4c356f5c1d41cb85ff88131122ec8b1931cb9d31ae1459181900360800190a3505050505050565b6000600286604051602001808281526020019150506040516020818303038152906040526040518082805190602001908083835b602083106103af5780518252601f199092019160209182019101610390565b51815160209384036101000a60001901801990921691161790526040519190930194509192505080830381855afa1580156103ee573d6000803e3d6000fd5b5050506040513d602081101561040357600080fd5b505190506000610417828787338888610495565b9050610422816104fc565b60008181526020818152604091829020805460ff191690558151898152915184927f5664142af3dcfc3dc3de45a43f75c746bd1d8c11170a5037fdf98bdb3577513792908290030190a2610477853388610567565b50505050505050565b60006020819052908152604090205460ff1681565b6040805160208082018990528183018890526bffffffffffffffffffffffff19606088811b82168185015287811b8216607485015286901b166088830152609c8083018590528351808403909101815260bc90920190925280519101209695505050505050565b60008181526020819052604090205460ff161515600114610564576040805162461bcd60e51b815260206004820152601e60248201527f4552433230537761703a207377617020646f6573206e6f742065786973740000604482015290519081900360640190fd5b50565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b178152925182516000946060949389169392918291908083835b602083106105e45780518252601f1990920191602091820191016105c5565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114610646576040519150601f19603f3d011682016040523d82523d6000602084013e61064b565b606091505b5091509150818015610679575080511580610679575080806020019051602081101561067657600080fd5b50515b6106b45760405162461bcd60e51b815260040180806020018281038252602f815260200180610869602f913960400191505060405180910390fd5b5050505050565b604080516001600160a01b0385811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b17815292518251600094606094938a169392918291908083835b602083106107405780518252601f199092019160209182019101610721565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146107a2576040519150601f19603f3d011682016040523d82523d6000602084013e6107a7565b606091505b50915091508180156107d55750805115806107d557508080602001905160208110156107d257600080fd5b50515b6102155760405162461bcd60e51b81526004018080602001828103825260338152602001806108366033913960400191505060405180910390fdfe4552433230537761703a207377617020686173206e6f742074696d6564206f7574207965745472616e7366657248656c7065723a20636f756c64206e6f74207472616e7366657246726f6d20455243323020746f6b656e735472616e7366657248656c7065723a20636f756c64206e6f74207472616e7366657220455243323020746f6b656e734552433230537761703a20616d6f756e74206d757374206e6f74206265207a65726fa264697066735822122014964198cd2bb29748166c072fd54bf0d8ef72482f5b96ac806484eaee4b5e5f64736f6c63430007010033
Deployed Bytecode Sourcemap
103:2956:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2443:614;;;;;;;;;;;;;;;;-1:-1:-1;2443:614:0;;;;;;;;-1:-1:-1;;;;;2443:614:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;128:33;;;:::i;:::-;;;;;;;;;;;;;;;;;;;1112:717;;;;;;;;;;;;;;;;-1:-1:-1;1112:717:0;;;;;;;;-1:-1:-1;;;;;1112:717:0;;;;;;;;;;;;;;;;;;;:::i;1835:602::-;;;;;;;;;;;;;;;;-1:-1:-1;1835:602:0;;;;;;;;-1:-1:-1;;;;;1835:602:0;;;;;;;;;;;;;;;;;;;:::i;168:38::-;;;;;;;;;;;;;;;;-1:-1:-1;168:38:0;;:::i;:::-;;;;;;;;;;;;;;;;;;2443:614;2638:12;2626:8;:24;;2618:74;;;;-1:-1:-1;;;2618:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2703:12;2718:164;2742:12;2768:6;2788:12;2814;2840:10;2864:8;2718:10;:164::i;:::-;2703:179;;2893:21;2909:4;2893:15;:21::i;:::-;2931:5;:11;;;;;;;;;;;2924:18;;-1:-1:-1;;2924:18:0;;;2958:20;2965:12;;2958:20;;;2989:61;3017:12;3031:10;3043:6;2989:27;:61::i;:::-;2443:614;;;;;;:::o;128:33::-;160:1;128:33;:::o;1112:717::-;1305:1;1296:6;:10;1288:57;;;;-1:-1:-1;;;1288:57:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1356:80;1388:12;1402:10;1422:4;1429:6;1356:31;:80::i;:::-;1447:12;1462:164;1486:12;1512:6;1532:12;1558;1584:10;1608:8;1462:10;:164::i;:::-;1645:5;:11;;;;;;;;;;;1447:179;;-1:-1:-1;1645:11:0;;:20;1637:63;;;;;-1:-1:-1;;;1637:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;1710:5;:11;;;;;;;;;;;;:18;;-1:-1:-1;;1710:18:0;1724:4;1710:18;;;1744:78;;;;;-1:-1:-1;;;;;1744:78:0;;;;;;;;;;;;;;;;;;;;;;;;;1801:10;;1751:12;;1744:78;;;;;;;;;1112:717;;;;;;:::o;1835:602::-;2006:20;2029:34;2053:8;2036:26;;;;;;;;;;;;;;;;;;;;;;;;;2029:34;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2029:34:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2029:34:0;;;;;;;;;;;;;;;;;;-1:-1:-1;2029:34:0;;-1:-1:-1;;2029:34:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2029:34:0;;-1:-1:-1;2073:12:0;2088:165;2029:34;2138:6;2158:12;2184:10;2208:13;2235:8;2088:10;:165::i;:::-;2073:180;;2264:21;2280:4;2264:15;:21::i;:::-;2302:5;:11;;;;;;;;;;;;2295:18;;-1:-1:-1;;2295:18:0;;;2329:29;;;;;;;2335:12;;2329:29;;;;;;;;;2369:61;2397:12;2411:10;2423:6;2369:27;:61::i;:::-;1835:602;;;;;;;:::o;168:38::-;;;;;;;;;;;;;;;;:::o;536:433::-;788:173;;;;;;;;;;;;;;;;-1:-1:-1;;788:173:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;778:184;;;;;536:433;;;;;;;;:::o;975:131::-;1045:5;:11;;;;;;;;;;;;;:19;;:11;:19;1037:62;;;;;-1:-1:-1;;;1037:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;975:131;:::o;233:407:1:-;426:45;;;-1:-1:-1;;;;;426:45:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;426:45:1;-1:-1:-1;;;426:45:1;;;415:57;;;;380:12;;394:17;;415:10;;;;426:45;415:57;;;426:45;415:57;;426:45;415:57;;;;;;;;;;-1:-1:-1;;415:57:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;379:93;;;;503:7;:57;;;;-1:-1:-1;515:11:1;;:16;;:44;;;546:4;535:24;;;;;;;;;;;;;;;-1:-1:-1;535:24:1;515:44;482:151;;;;-1:-1:-1;;;482:151:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;233:407;;;;;:::o;646:447::-;869:51;;;-1:-1:-1;;;;;869:51:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;869:51:1;-1:-1:-1;;;869:51:1;;;858:63;;;;823:12;;837:17;;858:10;;;;869:51;858:63;;;869:51;858:63;;869:51;858:63;;;;;;;;;;-1:-1:-1;;858:63:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:99;;;;952:7;:57;;;;-1:-1:-1;964:11:1;;:16;;:44;;;995:4;984:24;;;;;;;;;;;;;;;-1:-1:-1;984:24:1;964:44;931:155;;;;-1:-1:-1;;;931:155:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Swarm Source
ipfs://14964198cd2bb29748166c072fd54bf0d8ef72482f5b96ac806484eaee4b5e5f
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 26 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.