Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0.236534144444339753 ETH
Eth Value
$835.63 (@ $3,532.81/ETH)Token Holdings
More Info
Private Name Tags
Latest 25 from a total of 29 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw Erc20 | 16300765 | 721 days ago | IN | 0 ETH | 0.00117632 | ||||
Withdraw Eth | 16300759 | 721 days ago | IN | 0 ETH | 0.00104339 | ||||
Set Netvrk Addre... | 16188806 | 736 days ago | IN | 0 ETH | 0.00038514 | ||||
Withdraw Erc20 | 15394050 | 851 days ago | IN | 0 ETH | 0.00038495 | ||||
Withdraw Eth | 15392328 | 851 days ago | IN | 0 ETH | 0.0021643 | ||||
Withdraw Eth | 15188670 | 883 days ago | IN | 0 ETH | 0.00058018 | ||||
Transfer | 15174575 | 885 days ago | IN | 0.041025 ETH | 0.00059733 | ||||
Transfer | 15017176 | 910 days ago | IN | 0.457875 ETH | 0.00051008 | ||||
Transfer | 14964924 | 920 days ago | IN | 3.06789318 ETH | 0.00063165 | ||||
Transfer | 14899003 | 931 days ago | IN | 3.225171 ETH | 0.0015393 | ||||
Withdraw Eth | 14887452 | 933 days ago | IN | 0 ETH | 0.00327352 | ||||
Transfer | 14845527 | 940 days ago | IN | 1.49773575 ETH | 0.0010285 | ||||
Transfer | 14819754 | 944 days ago | IN | 0.7790181 ETH | 0.00060271 | ||||
Transfer | 14775210 | 951 days ago | IN | 0.9855675 ETH | 0.0006868 | ||||
Transfer | 14729067 | 958 days ago | IN | 0.4974 ETH | 0.00078832 | ||||
Transfer | 14697697 | 963 days ago | IN | 0.7201275 ETH | 0.00112817 | ||||
Transfer | 14654301 | 970 days ago | IN | 0.8334375 ETH | 0.00165847 | ||||
Transfer | 14618368 | 976 days ago | IN | 1.3306695 ETH | 0.00093421 | ||||
Withdraw Eth | 14612210 | 977 days ago | IN | 0 ETH | 0.00183795 | ||||
Transfer | 14577628 | 982 days ago | IN | 0.934755 ETH | 0.00168916 | ||||
Transfer | 14548138 | 987 days ago | IN | 1.54164974 ETH | 0.00119239 | ||||
Transfer | 14519562 | 991 days ago | IN | 1.94606175 ETH | 0.00137219 | ||||
Transfer | 14487368 | 996 days ago | IN | 3.08165775 ETH | 0.0005657 | ||||
Withdraw Eth | 14484144 | 997 days ago | IN | 0 ETH | 0.00213078 | ||||
Transfer | 14416837 | 1007 days ago | IN | 2.15904 ETH | 0.00060567 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21291446 | 22 days ago | 0.0003675 ETH | ||||
21131887 | 44 days ago | 0.00007499 ETH | ||||
21017516 | 60 days ago | 0.00047167 ETH | ||||
20511934 | 130 days ago | 0.00004899 ETH | ||||
20490592 | 133 days ago | 0.000098 ETH | ||||
20479204 | 135 days ago | 0.0000495 ETH | ||||
20474082 | 136 days ago | 0.003 ETH | ||||
20473442 | 136 days ago | 0.0020175 ETH | ||||
20473221 | 136 days ago | 0.000098 ETH | ||||
20464803 | 137 days ago | 0.000098 ETH | ||||
20461519 | 137 days ago | 0.001125 ETH | ||||
19059350 | 334 days ago | 0.0001 ETH | ||||
19059332 | 334 days ago | 0.00645 ETH | ||||
19046800 | 335 days ago | 0.00032 ETH | ||||
19046800 | 335 days ago | 0.00157492 ETH | ||||
19039327 | 337 days ago | 0.00050242 ETH | ||||
18874108 | 360 days ago | 0.000375 ETH | ||||
18872447 | 360 days ago | 0.00050242 ETH | ||||
18636782 | 393 days ago | 0.00003999 ETH | ||||
18523995 | 409 days ago | 0.000069 ETH | ||||
18451405 | 419 days ago | 0.00003448 ETH | ||||
18450727 | 419 days ago | 0.0001 ETH | ||||
18403471 | 426 days ago | 0.00045 ETH | ||||
18395974 | 427 days ago | 0.00045 ETH | ||||
18395536 | 427 days ago | 0.00075 ETH |
Loading...
Loading
Contract Name:
AngryApeArmyRoyaltyReceiver
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; error WithdrawalFailedAngryApeArmy(); error WithdrawalFailedNetvrk(); error ZeroBalance(); error ZeroAddress(); contract AngryApeArmyRoyaltyReceiver is Ownable { address public angryApeArmy; address public netvrk; constructor() { angryApeArmy = 0x6ab71C2025442B694C8585aCe2fc06D877469D30; netvrk = 0x901FC05c4a4bC027a8979089D716b6793052Cc16; } receive() external payable {} function calculateSplit(uint256 balance) public pure returns (uint256 angryApeArmyAmount, uint256 netvrkAmount) { angryApeArmyAmount = (balance * 7000) / 10000; // 70.00% netvrkAmount = balance - angryApeArmyAmount; // 30.00% } function withdrawErc20(IERC20 token) external onlyOwner { uint256 totalBalance = token.balanceOf(address(this)); if (totalBalance == 0) revert ZeroBalance(); (uint256 angryApeArmyAmount, uint256 netvrkAmount) = calculateSplit( totalBalance ); if (!token.transfer(angryApeArmy, angryApeArmyAmount)) revert WithdrawalFailedAngryApeArmy(); if (!token.transfer(netvrk, netvrkAmount)) revert WithdrawalFailedNetvrk(); } function withdrawEth() external onlyOwner { uint256 totalBalance = address(this).balance; if (totalBalance == 0) revert ZeroBalance(); (uint256 angryApeArmyAmount, uint256 netvrkAmount) = calculateSplit( totalBalance ); if (!payable(angryApeArmy).send(angryApeArmyAmount)) revert WithdrawalFailedAngryApeArmy(); if (!payable(netvrk).send(netvrkAmount)) revert WithdrawalFailedNetvrk(); } function setAngryApeArmyAddress(address address_) public onlyOwner { if (address_ == address(0)) revert ZeroAddress(); angryApeArmy = address_; } function setNetvrkAddress(address address_) public onlyOwner { if (address_ == address(0)) revert ZeroAddress(); netvrk = address_; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount ) external returns (bool); /** * @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); }
// 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; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"WithdrawalFailedAngryApeArmy","type":"error"},{"inputs":[],"name":"WithdrawalFailedNetvrk","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"inputs":[],"name":"ZeroBalance","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[],"name":"angryApeArmy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"name":"calculateSplit","outputs":[{"internalType":"uint256","name":"angryApeArmyAmount","type":"uint256"},{"internalType":"uint256","name":"netvrkAmount","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"netvrk","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"address_","type":"address"}],"name":"setAngryApeArmyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setNetvrkAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"withdrawErc20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405234801561001057600080fd5b5061001a33610067565b600180546001600160a01b0319908116736ab71c2025442b694c8585ace2fc06d877469d30179091556002805490911673901fc05c4a4bc027a8979089d716b6793052cc161790556100b7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6108a2806100c66000396000f3fe6080604052600436106100955760003560e01c8063bcd2343311610059578063bcd2343314610159578063c7e42b1b14610179578063e51b306714610199578063f2fde38b146101b9578063ff73a63f146101d957600080fd5b8063224c22d3146100a1578063715018a6146100c35780638d623781146100d85780638da5cb5b14610112578063a0ef91df1461014457600080fd5b3661009c57005b600080fd5b3480156100ad57600080fd5b506100c16100bc366004610743565b6101f9565b005b3480156100cf57600080fd5b506100c1610275565b3480156100e457600080fd5b506100f86100f3366004610786565b6102ab565b604080519283526020830191909152015b60405180910390f35b34801561011e57600080fd5b506000546001600160a01b03165b6040516001600160a01b039091168152602001610109565b34801561015057600080fd5b506100c16102da565b34801561016557600080fd5b5060015461012c906001600160a01b031681565b34801561018557600080fd5b506100c1610194366004610743565b6103c4565b3480156101a557600080fd5b5060025461012c906001600160a01b031681565b3480156101c557600080fd5b506100c16101d4366004610743565b6105e5565b3480156101e557600080fd5b506100c16101f4366004610743565b610680565b6000546001600160a01b0316331461022c5760405162461bcd60e51b8152600401610223906107b6565b60405180910390fd5b6001600160a01b0381166102535760405163d92e233d60e01b815260040160405180910390fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461029f5760405162461bcd60e51b8152600401610223906107b6565b6102a960006106f3565b565b6000806127106102bd84611b5861080b565b6102c791906107eb565b91506102d3828461082a565b9050915091565b6000546001600160a01b031633146103045760405162461bcd60e51b8152600401610223906107b6565b47806103235760405163334ab3f560e11b815260040160405180910390fd5b60008061032f836102ab565b6001546040519294509092506001600160a01b03169083156108fc029084906000818181858888f1935050505061037957604051632f924be760e11b815260040160405180910390fd5b6002546040516001600160a01b039091169082156108fc029083906000818181858888f193505050506103bf57604051632d7df9d560e11b815260040160405180910390fd5b505050565b6000546001600160a01b031633146103ee5760405162461bcd60e51b8152600401610223906107b6565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b15801561043057600080fd5b505afa158015610444573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610468919061079e565b9050806104885760405163334ab3f560e11b815260040160405180910390fd5b600080610494836102ab565b60015460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905292945090925085169063a9059cbb90604401602060405180830381600087803b1580156104e757600080fd5b505af11580156104fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061051f9190610766565b61053c57604051632f924be760e11b815260040160405180910390fd5b60025460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390529085169063a9059cbb90604401602060405180830381600087803b15801561058a57600080fd5b505af115801561059e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c29190610766565b6105df57604051632d7df9d560e11b815260040160405180910390fd5b50505050565b6000546001600160a01b0316331461060f5760405162461bcd60e51b8152600401610223906107b6565b6001600160a01b0381166106745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610223565b61067d816106f3565b50565b6000546001600160a01b031633146106aa5760405162461bcd60e51b8152600401610223906107b6565b6001600160a01b0381166106d15760405163d92e233d60e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208284031215610754578081fd5b813561075f81610857565b9392505050565b600060208284031215610777578081fd5b8151801515811461075f578182fd5b600060208284031215610797578081fd5b5035919050565b6000602082840312156107af578081fd5b5051919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008261080657634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561082557610825610841565b500290565b60008282101561083c5761083c610841565b500390565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461067d57600080fdfea264697066735822122096c5ca7ae10ac3c4d911a37aea99ec7384333189d999131c5e05f87d99ba977a64736f6c63430008040033
Deployed Bytecode
0x6080604052600436106100955760003560e01c8063bcd2343311610059578063bcd2343314610159578063c7e42b1b14610179578063e51b306714610199578063f2fde38b146101b9578063ff73a63f146101d957600080fd5b8063224c22d3146100a1578063715018a6146100c35780638d623781146100d85780638da5cb5b14610112578063a0ef91df1461014457600080fd5b3661009c57005b600080fd5b3480156100ad57600080fd5b506100c16100bc366004610743565b6101f9565b005b3480156100cf57600080fd5b506100c1610275565b3480156100e457600080fd5b506100f86100f3366004610786565b6102ab565b604080519283526020830191909152015b60405180910390f35b34801561011e57600080fd5b506000546001600160a01b03165b6040516001600160a01b039091168152602001610109565b34801561015057600080fd5b506100c16102da565b34801561016557600080fd5b5060015461012c906001600160a01b031681565b34801561018557600080fd5b506100c1610194366004610743565b6103c4565b3480156101a557600080fd5b5060025461012c906001600160a01b031681565b3480156101c557600080fd5b506100c16101d4366004610743565b6105e5565b3480156101e557600080fd5b506100c16101f4366004610743565b610680565b6000546001600160a01b0316331461022c5760405162461bcd60e51b8152600401610223906107b6565b60405180910390fd5b6001600160a01b0381166102535760405163d92e233d60e01b815260040160405180910390fd5b600280546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b0316331461029f5760405162461bcd60e51b8152600401610223906107b6565b6102a960006106f3565b565b6000806127106102bd84611b5861080b565b6102c791906107eb565b91506102d3828461082a565b9050915091565b6000546001600160a01b031633146103045760405162461bcd60e51b8152600401610223906107b6565b47806103235760405163334ab3f560e11b815260040160405180910390fd5b60008061032f836102ab565b6001546040519294509092506001600160a01b03169083156108fc029084906000818181858888f1935050505061037957604051632f924be760e11b815260040160405180910390fd5b6002546040516001600160a01b039091169082156108fc029083906000818181858888f193505050506103bf57604051632d7df9d560e11b815260040160405180910390fd5b505050565b6000546001600160a01b031633146103ee5760405162461bcd60e51b8152600401610223906107b6565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a082319060240160206040518083038186803b15801561043057600080fd5b505afa158015610444573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610468919061079e565b9050806104885760405163334ab3f560e11b815260040160405180910390fd5b600080610494836102ab565b60015460405163a9059cbb60e01b81526001600160a01b0391821660048201526024810184905292945090925085169063a9059cbb90604401602060405180830381600087803b1580156104e757600080fd5b505af11580156104fb573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061051f9190610766565b61053c57604051632f924be760e11b815260040160405180910390fd5b60025460405163a9059cbb60e01b81526001600160a01b039182166004820152602481018390529085169063a9059cbb90604401602060405180830381600087803b15801561058a57600080fd5b505af115801561059e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c29190610766565b6105df57604051632d7df9d560e11b815260040160405180910390fd5b50505050565b6000546001600160a01b0316331461060f5760405162461bcd60e51b8152600401610223906107b6565b6001600160a01b0381166106745760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610223565b61067d816106f3565b50565b6000546001600160a01b031633146106aa5760405162461bcd60e51b8152600401610223906107b6565b6001600160a01b0381166106d15760405163d92e233d60e01b815260040160405180910390fd5b600180546001600160a01b0319166001600160a01b0392909216919091179055565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208284031215610754578081fd5b813561075f81610857565b9392505050565b600060208284031215610777578081fd5b8151801515811461075f578182fd5b600060208284031215610797578081fd5b5035919050565b6000602082840312156107af578081fd5b5051919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008261080657634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561082557610825610841565b500290565b60008282101561083c5761083c610841565b500390565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b038116811461067d57600080fdfea264697066735822122096c5ca7ae10ac3c4d911a37aea99ec7384333189d999131c5e05f87d99ba977a64736f6c63430008040033
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.