Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00Latest 25 from a total of 2,074 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim | 21086459 | 197 days ago | IN | 0 ETH | 0.00173354 | ||||
Claim | 21086451 | 197 days ago | IN | 0 ETH | 0.0018119 | ||||
Claim | 21083234 | 198 days ago | IN | 0 ETH | 0.00078775 | ||||
Claim | 21078923 | 198 days ago | IN | 0 ETH | 0.00175209 | ||||
Claim | 21077763 | 198 days ago | IN | 0 ETH | 0.00130483 | ||||
Claim | 21077739 | 198 days ago | IN | 0 ETH | 0.00141296 | ||||
Claim | 21074750 | 199 days ago | IN | 0 ETH | 0.00071085 | ||||
Claim | 21065223 | 200 days ago | IN | 0 ETH | 0.00129052 | ||||
Claim | 21060812 | 201 days ago | IN | 0 ETH | 0.00059985 | ||||
Claim | 21059391 | 201 days ago | IN | 0 ETH | 0.00059737 | ||||
Claim | 21057308 | 201 days ago | IN | 0 ETH | 0.00113428 | ||||
Claim | 21057143 | 201 days ago | IN | 0 ETH | 0.00071823 | ||||
Claim | 21056578 | 201 days ago | IN | 0 ETH | 0.00071867 | ||||
Claim | 21056144 | 201 days ago | IN | 0 ETH | 0.00067178 | ||||
Claim | 21055530 | 201 days ago | IN | 0 ETH | 0.00045987 | ||||
Claim | 21054730 | 202 days ago | IN | 0 ETH | 0.0004794 | ||||
Claim | 21054606 | 202 days ago | IN | 0 ETH | 0.00049226 | ||||
Claim | 21049183 | 202 days ago | IN | 0 ETH | 0.00047725 | ||||
Claim | 21048245 | 202 days ago | IN | 0 ETH | 0.00041938 | ||||
Claim | 21047952 | 203 days ago | IN | 0 ETH | 0.00039108 | ||||
Claim | 21047940 | 203 days ago | IN | 0 ETH | 0.00040825 | ||||
Claim | 21047908 | 203 days ago | IN | 0 ETH | 0.00046306 | ||||
Claim | 21047790 | 203 days ago | IN | 0 ETH | 0.00038436 | ||||
Claim | 21047586 | 203 days ago | IN | 0 ETH | 0.0005425 | ||||
Claim | 21047577 | 203 days ago | IN | 0 ETH | 0.00054056 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
TokenMerkleDrop
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import "openzeppelin-contracts/token/ERC20/IERC20.sol"; import "openzeppelin-contracts/utils/Context.sol"; import "openzeppelin-contracts/access/Ownable.sol"; contract TokenMerkleDrop is Context, Ownable { bytes32 public claimRoot; IERC20 public token; mapping(address => bool) public rewardClaimed; event TokensClaimed( bytes32 indexed root, address indexed addr, uint256 amount ); constructor(address superRareToken, bytes32 merkleRoot) { require( superRareToken != address(0), "Token address cant be 0 address." ); require(merkleRoot != bytes32(0), "MerkleRoot cant be empty."); token = IERC20(superRareToken); claimRoot = merkleRoot; } function claim(uint256 amount, bytes32[] calldata proof) public { require( verifyEntitled(_msgSender(), amount, proof), "The proof could not be verified." ); require( !rewardClaimed[_msgSender()], "You have already withdrawn your entitled token." ); rewardClaimed[_msgSender()] = true; require(token.transfer(_msgSender(), amount), "Transfer failed."); emit TokensClaimed(claimRoot, _msgSender(), amount); } function verifyEntitled( address recipient, uint256 value, bytes32[] memory proof ) public view returns (bool) { // We need to pack the 20 bytes address to the 32 bytes value // to match with the proof bytes32 leaf = keccak256(abi.encodePacked(recipient, value)); return verifyProof(leaf, proof); } function verifyProof(bytes32 leaf, bytes32[] memory proof) internal view returns (bool) { bytes32 currentHash = leaf; for (uint256 i = 0; i < proof.length; i++) { currentHash = parentHash(currentHash, proof[i]); } return currentHash == claimRoot; } function parentHash(bytes32 a, bytes32 b) internal pure returns (bytes32) { return a <= b ? keccak256(abi.encodePacked(a, b)) : keccak256(abi.encodePacked(b, a)); } function updateMerkleRoot(bytes32 newRoot) external onlyOwner { claimRoot = newRoot; } function updateTokenAddress(address _token) external onlyOwner { require( _token != address(0), "New token address cannot be the zero address" ); token = IERC20(_token); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "remappings": [ "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", "@openzeppelin/contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/", "@ensdomains/ens-contracts/=lib/ens-contracts/contracts/", "ds-test/=lib/ds-test/src/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts-upgradeable/=lib/openzeppelin-contracts-upgradeable/contracts/", "openzeppelin-contracts/=lib/openzeppelin-contracts/contracts/", "royalty-registry-solidity/=lib/royalty-registry-solidity/contracts/", "royalty-registry/=lib/royalty-registry-solidity/contracts/", "royalty-guard/=lib/royalty-guard/src/royalty-guard/", "solmate/=lib/solmate/src/", "rareprotocol/assets/=lib/assets/src/", "rareprotocol/aux/=src/", "ensdomains/ens-contracts/=lib/ensdomains/ens-contracts/contracts/", "@ensdomains/buffer/=lib/buffer/", "arachnid/solidity-stringutils/=lib/solidity-stringutils/", "@uniswap/v3-core/contracts/=lib/v3-core/contracts/", "@uniswap/v3-core/interfaces/=lib/v3-core/contracts/interfaces/", "@uniswap/v3-periphery/=lib/v3-periphery/contracts/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "viaIR": true, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"superRareToken","type":"address"},{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"root","type":"bytes32"},{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TokensClaimed","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewardClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"updateTokenAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"verifyEntitled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60803461014757601f61092b38819003918201601f19168301916001600160401b0383118484101761014c5780849260409485528339810103126101475780516001600160a01b0391828216918290036101475760200151916000549060018060a01b0319913383821617600055604051913391167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0600080a38215610105575082156100c05760025416176002556001556040516107c890816101638239f35b60405162461bcd60e51b815260206004820152601960248201527f4d65726b6c65526f6f742063616e7420626520656d7074792e000000000000006044820152606490fd5b62461bcd60e51b815260206004820181905260248201527f546f6b656e20616464726573732063616e74206265203020616464726573732e6044820152606490fd5b600080fd5b634e487b7160e01b600052604160045260246000fdfe608060408181526004918236101561001657600080fd5b600092833560e01c91826314ea35e71461058f5750816329e19704146105515781632f52ebb71461033b5781634783f0ef146103195781636691461a14610271578163715018a6146102175781638da5cb5b146101ef578163c3709caf14610185578163f2fde38b146100be575063fc0c546a1461009357600080fd5b346100ba57816003193601126100ba5760025490516001600160a01b039091168152602090f35b5080fd5b905034610181576020366003190112610181576100d96105ab565b906100e2610671565b6001600160a01b0391821692831561012f57505082546001600160a01b0319811683178455167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b905034610181576060366003190112610181576101a06105ab565b926044359067ffffffffffffffff82116101ec57366023830112156101ec5750926101d96101e39285602460209736930135910161061a565b90602435906106c9565b90519015158152f35b80fd5b5050346100ba57816003193601126100ba57905490516001600160a01b039091168152602090f35b83346101ec57806003193601126101ec57610230610671565b80546001600160a01b03198116825581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b9050346101815760203660031901126101815761028c6105ab565b610294610671565b6001600160a01b03169182156102c15750506bffffffffffffffffffffffff60a01b600254161760025580f35b906020608492519162461bcd60e51b8352820152602c60248201527f4e657720746f6b656e20616464726573732063616e6e6f74206265207468652060448201526b7a65726f206164647265737360a01b6064820152fd5b8390346100ba5760203660031901126100ba57610334610671565b3560015580f35b91905034610181578060031936011261018157813591602490813567ffffffffffffffff8082116104a457366023830112156104a457818301359081116104a45736848260051b840101116104a4576103a29161039b918536920161061a565b85336106c9565b15610511573385526020916003835260ff84872054166104b95733865260038352838620600160ff19825416179055858360018060a01b0360025416604487518094819363a9059cbb60e01b835233898401528b888401525af19081156104af578791610475575b50156104425750507fb6a3782a350d2b8520b7fe13e8e97b61f22902243ad29c4c3a9a8f714935718c9060015492519384523393a380f35b60109192606494519362461bcd60e51b85528401528201526f2a3930b739b332b9103330b4b632b21760811b6044820152fd5b90508381813d83116104a8575b61048c81836105f8565b810103126104a4575180151581036104a4573861040a565b8680fd5b503d610482565b85513d89823e3d90fd5b602f9192608494519362461bcd60e51b85528401528201527f596f75206861766520616c72656164792077697468647261776e20796f75722060448201526e32b73a34ba3632b2103a37b5b2b71760891b6064820152fd5b60206064928185519362461bcd60e51b85528401528201527f5468652070726f6f6620636f756c64206e6f742062652076657269666965642e6044820152fd5b5050346100ba5760203660031901126100ba5760209160ff9082906001600160a01b0361057c6105ab565b1681526003855220541690519015158152f35b8490346100ba57816003193601126100ba576020906001548152f35b600435906001600160a01b03821682036105c157565b600080fd5b6060810190811067ffffffffffffffff8211176105e257604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176105e257604052565b90929167ffffffffffffffff84116105e2578360051b6040519260208094610644828501826105f8565b80978152019181019283116105c157905b8282106106625750505050565b81358152908301908301610655565b6000546001600160a01b0316330361068557565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b6040908151602093848201926bffffffffffffffffffffffff199060601b1683526034820152603481526106fc816105c6565b519020926000935b815185101561078657600585901b82018401518082116107645783519085820192835284820152838152610737816105c6565b5190205b93600019811461074e5760010193610704565b634e487b7160e01b600052601160045260246000fd5b908351908582019283528482015283815261077e816105c6565b51902061073b565b9350505050600154149056fea264697066735822122001f711c4d956f0e1d7348703135f218abe9abc2240f24523e2f61680b1d0fab264736f6c63430008120033000000000000000000000000ba5bde662c17e2adff1075610382b9b6912963500000000000000000000000000000000000000000000000000000000000000001
Deployed Bytecode
0x608060408181526004918236101561001657600080fd5b600092833560e01c91826314ea35e71461058f5750816329e19704146105515781632f52ebb71461033b5781634783f0ef146103195781636691461a14610271578163715018a6146102175781638da5cb5b146101ef578163c3709caf14610185578163f2fde38b146100be575063fc0c546a1461009357600080fd5b346100ba57816003193601126100ba5760025490516001600160a01b039091168152602090f35b5080fd5b905034610181576020366003190112610181576100d96105ab565b906100e2610671565b6001600160a01b0391821692831561012f57505082546001600160a01b0319811683178455167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08380a380f35b906020608492519162461bcd60e51b8352820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152fd5b8280fd5b905034610181576060366003190112610181576101a06105ab565b926044359067ffffffffffffffff82116101ec57366023830112156101ec5750926101d96101e39285602460209736930135910161061a565b90602435906106c9565b90519015158152f35b80fd5b5050346100ba57816003193601126100ba57905490516001600160a01b039091168152602090f35b83346101ec57806003193601126101ec57610230610671565b80546001600160a01b03198116825581906001600160a01b03167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e08280a380f35b9050346101815760203660031901126101815761028c6105ab565b610294610671565b6001600160a01b03169182156102c15750506bffffffffffffffffffffffff60a01b600254161760025580f35b906020608492519162461bcd60e51b8352820152602c60248201527f4e657720746f6b656e20616464726573732063616e6e6f74206265207468652060448201526b7a65726f206164647265737360a01b6064820152fd5b8390346100ba5760203660031901126100ba57610334610671565b3560015580f35b91905034610181578060031936011261018157813591602490813567ffffffffffffffff8082116104a457366023830112156104a457818301359081116104a45736848260051b840101116104a4576103a29161039b918536920161061a565b85336106c9565b15610511573385526020916003835260ff84872054166104b95733865260038352838620600160ff19825416179055858360018060a01b0360025416604487518094819363a9059cbb60e01b835233898401528b888401525af19081156104af578791610475575b50156104425750507fb6a3782a350d2b8520b7fe13e8e97b61f22902243ad29c4c3a9a8f714935718c9060015492519384523393a380f35b60109192606494519362461bcd60e51b85528401528201526f2a3930b739b332b9103330b4b632b21760811b6044820152fd5b90508381813d83116104a8575b61048c81836105f8565b810103126104a4575180151581036104a4573861040a565b8680fd5b503d610482565b85513d89823e3d90fd5b602f9192608494519362461bcd60e51b85528401528201527f596f75206861766520616c72656164792077697468647261776e20796f75722060448201526e32b73a34ba3632b2103a37b5b2b71760891b6064820152fd5b60206064928185519362461bcd60e51b85528401528201527f5468652070726f6f6620636f756c64206e6f742062652076657269666965642e6044820152fd5b5050346100ba5760203660031901126100ba5760209160ff9082906001600160a01b0361057c6105ab565b1681526003855220541690519015158152f35b8490346100ba57816003193601126100ba576020906001548152f35b600435906001600160a01b03821682036105c157565b600080fd5b6060810190811067ffffffffffffffff8211176105e257604052565b634e487b7160e01b600052604160045260246000fd5b90601f8019910116810190811067ffffffffffffffff8211176105e257604052565b90929167ffffffffffffffff84116105e2578360051b6040519260208094610644828501826105f8565b80978152019181019283116105c157905b8282106106625750505050565b81358152908301908301610655565b6000546001600160a01b0316330361068557565b606460405162461bcd60e51b815260206004820152602060248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152fd5b6040908151602093848201926bffffffffffffffffffffffff199060601b1683526034820152603481526106fc816105c6565b519020926000935b815185101561078657600585901b82018401518082116107645783519085820192835284820152838152610737816105c6565b5190205b93600019811461074e5760010193610704565b634e487b7160e01b600052601160045260246000fd5b908351908582019283528482015283815261077e816105c6565b51902061073b565b9350505050600154149056fea264697066735822122001f711c4d956f0e1d7348703135f218abe9abc2240f24523e2f61680b1d0fab264736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ba5bde662c17e2adff1075610382b9b6912963500000000000000000000000000000000000000000000000000000000000000001
-----Decoded View---------------
Arg [0] : superRareToken (address): 0xba5BDe662c17e2aDFF1075610382B9B691296350
Arg [1] : merkleRoot (bytes32): 0x0000000000000000000000000000000000000000000000000000000000000001
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000ba5bde662c17e2adff1075610382b9b691296350
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
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.