Overview
APE Balance
APE Value
$0.11 (@ $0.18/APE)Multichain Info
Latest 12 from a total of 12 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Ignite Flame Pro... | 6920044 | 400 days ago | IN | 0.05 APE | 0.00164276 | ||||
| Ignite Flame Pro... | 6884387 | 401 days ago | IN | 0.05 APE | 0.00164276 | ||||
| Ignite Flame Pro... | 6884380 | 401 days ago | IN | 0.05 APE | 0.00164276 | ||||
| Ignite Flame Pro... | 6884227 | 401 days ago | IN | 0.05 APE | 0.00164276 | ||||
| Ignite Flame Pro... | 6884185 | 401 days ago | IN | 0.05 APE | 0.00164276 | ||||
| Ignite Flame Pro... | 6884098 | 401 days ago | IN | 0.05 APE | 0.00164276 | ||||
| Ignite Flame Pro... | 6884073 | 401 days ago | IN | 0.05 APE | 0.00164276 | ||||
| Ignite Flame Pro... | 6884042 | 401 days ago | IN | 0.05 APE | 0.00164276 | ||||
| Ignite Flame Pro... | 6883891 | 401 days ago | IN | 0.05 APE | 0.00164276 | ||||
| Ignite Flame Pro... | 6883823 | 401 days ago | IN | 0.05 APE | 0.00164276 | ||||
| Ignite Flame Pro... | 6883753 | 401 days ago | IN | 0.05 APE | 0.00164276 | ||||
| Ignite Flame Pro... | 6883585 | 401 days ago | IN | 0.05 APE | 0.00415086 |
View more zero value Internal Transactions in Advanced View mode
Cross-Chain Transactions
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol
// 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;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @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 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);
}
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
* or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
* understand this adds an external call which potentially creates a reentrancy vulnerability.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
}
// File: contracts/Forge.sol
pragma solidity ^0.8.20;
contract Forge is Ownable {
mapping(address => uint256) public forgeCount;
address[] public forgers;
mapping(address => bool) private hasForged;
address public burnaddress = 0xcB062f1ce14Adc379f168E35dAd3696bFD3c94DF; //0x000000000000000000000000000000000000dEaD
uint256 public NFTsBurned = 0;
event Forged(address nftContract, uint256 tokenId, address burner);
function igniteFlameProtocol(address nftContract, uint256 tokenId) external payable {
require(msg.value == 0.05 ether, "You must send exactly 0.05 ETH");
IERC721 nft = IERC721(nftContract);
require(nft.ownerOf(tokenId) == msg.sender, "You don't own this NFT");
if (!hasForged[msg.sender]) {
forgers.push(msg.sender);
hasForged[msg.sender] = true;
}
forgeCount[msg.sender]++;
NFTsBurned++;
nft.transferFrom(msg.sender, burnaddress, tokenId);
emit Forged(nftContract, tokenId, msg.sender);
}
function getForgerCount() external view returns (uint256) {
return forgers.length;
}
function getForgerAtIndex(uint256 index) external view returns (address, uint256) {
require(index < forgers.length, "Index out of bounds");
address forger = forgers[index];
return (forger, forgeCount[forger]);
}
function getMyForges() external view returns (uint256){
return forgeCount[msg.sender];
}
function numberOfForgesFrom(address forger) external view returns (uint256){
return forgeCount[forger];
}
function rescueETH(address payable recipient, uint256 amount) external onlyOwner {
require(recipient != address(0), "Invalid recipient address");
require(address(this).balance >= amount, "Insufficient balance");
(bool success,) = recipient.call{value: amount}("");
require(success, "Transfer failed");
}
function getContractBalance() external view returns (uint256) {
return address(this).balance;
}
receive() external payable {}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "paris",
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"nftContract","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"burner","type":"address"}],"name":"Forged","type":"event"},{"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":"NFTsBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnaddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"forgeCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"forgers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getForgerAtIndex","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getForgerCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMyForges","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"nftContract","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"igniteFlameProtocol","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"forger","type":"address"}],"name":"numberOfForgesFrom","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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 payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"rescueETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
6080604052600480546001600160a01b03191673cb062f1ce14adc379f168e35dad3696bfd3c94df179055600060055534801561003b57600080fd5b506100453361004a565b61009a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610997806100a96000396000f3fe6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063b925d9fd11610059578063b925d9fd14610229578063e5c5f1d51461025f578063ee6b64f01461027f578063f2fde38b146102be57600080fd5b80638da5cb5b146101e3578063ac92a9f414610201578063b4efc4da1461021457600080fd5b80636f9fb98a116100bb5780636f9fb98a1461016d578063715018a6146101805780637950965c146101955780638907c89a146101ab57600080fd5b8063099a04e5146100ed5780631d53ccd11461010f5780634b61a3f91461014057600080fd5b366100e857005b600080fd5b3480156100f957600080fd5b5061010d61010836600461089e565b6102de565b005b34801561011b57600080fd5b50336000908152600160205260409020545b6040519081526020015b60405180910390f35b34801561014c57600080fd5b5061012d61015b3660046108ca565b60016020526000908152604090205481565b34801561017957600080fd5b504761012d565b34801561018c57600080fd5b5061010d610422565b3480156101a157600080fd5b5061012d60055481565b3480156101b757600080fd5b506101cb6101c63660046108ee565b610436565b6040516001600160a01b039091168152602001610137565b3480156101ef57600080fd5b506000546001600160a01b03166101cb565b61010d61020f36600461089e565b610460565b34801561022057600080fd5b5060025461012d565b34801561023557600080fd5b5061012d6102443660046108ca565b6001600160a01b031660009081526001602052604090205490565b34801561026b57600080fd5b506004546101cb906001600160a01b031681565b34801561028b57600080fd5b5061029f61029a3660046108ee565b6106d5565b604080516001600160a01b039093168352602083019190915201610137565b3480156102ca57600080fd5b5061010d6102d93660046108ca565b610766565b6102e66107df565b6001600160a01b0382166103415760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420726563697069656e7420616464726573730000000000000060448201526064015b60405180910390fd5b804710156103885760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b6044820152606401610338565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146103d5576040519150601f19603f3d011682016040523d82523d6000602084013e6103da565b606091505b505090508061041d5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610338565b505050565b61042a6107df565b6104346000610839565b565b6002818154811061044657600080fd5b6000918252602090912001546001600160a01b0316905081565b3466b1a2bc2ec50000146104b65760405162461bcd60e51b815260206004820152601e60248201527f596f75206d7573742073656e642065786163746c7920302e30352045544800006044820152606401610338565b6040516331a9108f60e11b815260048101829052829033906001600160a01b03831690636352211e90602401602060405180830381865afa1580156104ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105239190610907565b6001600160a01b0316146105725760405162461bcd60e51b8152602060048201526016602482015275165bdd48191bdb89dd081bdddb881d1a1a5cc813919560521b6044820152606401610338565b3360009081526003602052604090205460ff166105e4576002805460018181019092557f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b031916339081179091556000908152600360205260409020805460ff191690911790555b3360009081526001602052604081208054916105ff83610924565b90915550506005805490600061061483610924565b9091555050600480546040516323b872dd60e01b815233928101929092526001600160a01b039081166024830152604482018490528216906323b872dd90606401600060405180830381600087803b15801561066f57600080fd5b505af1158015610683573d6000803e3d6000fd5b5050604080516001600160a01b038716815260208101869052338183015290517f98f13e667ce55611c8fa11a4f21a2a0bbe5c4beac19cae004f72b930a0d1e5fa9350908190036060019150a1505050565b600254600090819083106107215760405162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b6044820152606401610338565b6000600284815481106107365761073661094b565b60009182526020808320909101546001600160a01b03168083526001909152604090912054909590945092505050565b61076e6107df565b6001600160a01b0381166107d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610338565b6107dc81610839565b50565b6000546001600160a01b031633146104345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610338565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146107dc57600080fd5b600080604083850312156108b157600080fd5b82356108bc81610889565b946020939093013593505050565b6000602082840312156108dc57600080fd5b81356108e781610889565b9392505050565b60006020828403121561090057600080fd5b5035919050565b60006020828403121561091957600080fd5b81516108e781610889565b60006001820161094457634e487b7160e01b600052601160045260246000fd5b5060010190565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220854a6459a51144fbf18ca3c5ed9cc0e77d3fb101b5c2ad3872d2f5e6a6138b7d64736f6c63430008170033
Deployed Bytecode
0x6080604052600436106100e15760003560e01c80638da5cb5b1161007f578063b925d9fd11610059578063b925d9fd14610229578063e5c5f1d51461025f578063ee6b64f01461027f578063f2fde38b146102be57600080fd5b80638da5cb5b146101e3578063ac92a9f414610201578063b4efc4da1461021457600080fd5b80636f9fb98a116100bb5780636f9fb98a1461016d578063715018a6146101805780637950965c146101955780638907c89a146101ab57600080fd5b8063099a04e5146100ed5780631d53ccd11461010f5780634b61a3f91461014057600080fd5b366100e857005b600080fd5b3480156100f957600080fd5b5061010d61010836600461089e565b6102de565b005b34801561011b57600080fd5b50336000908152600160205260409020545b6040519081526020015b60405180910390f35b34801561014c57600080fd5b5061012d61015b3660046108ca565b60016020526000908152604090205481565b34801561017957600080fd5b504761012d565b34801561018c57600080fd5b5061010d610422565b3480156101a157600080fd5b5061012d60055481565b3480156101b757600080fd5b506101cb6101c63660046108ee565b610436565b6040516001600160a01b039091168152602001610137565b3480156101ef57600080fd5b506000546001600160a01b03166101cb565b61010d61020f36600461089e565b610460565b34801561022057600080fd5b5060025461012d565b34801561023557600080fd5b5061012d6102443660046108ca565b6001600160a01b031660009081526001602052604090205490565b34801561026b57600080fd5b506004546101cb906001600160a01b031681565b34801561028b57600080fd5b5061029f61029a3660046108ee565b6106d5565b604080516001600160a01b039093168352602083019190915201610137565b3480156102ca57600080fd5b5061010d6102d93660046108ca565b610766565b6102e66107df565b6001600160a01b0382166103415760405162461bcd60e51b815260206004820152601960248201527f496e76616c696420726563697069656e7420616464726573730000000000000060448201526064015b60405180910390fd5b804710156103885760405162461bcd60e51b8152602060048201526014602482015273496e73756666696369656e742062616c616e636560601b6044820152606401610338565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146103d5576040519150601f19603f3d011682016040523d82523d6000602084013e6103da565b606091505b505090508061041d5760405162461bcd60e51b815260206004820152600f60248201526e151c985b9cd9995c8819985a5b1959608a1b6044820152606401610338565b505050565b61042a6107df565b6104346000610839565b565b6002818154811061044657600080fd5b6000918252602090912001546001600160a01b0316905081565b3466b1a2bc2ec50000146104b65760405162461bcd60e51b815260206004820152601e60248201527f596f75206d7573742073656e642065786163746c7920302e30352045544800006044820152606401610338565b6040516331a9108f60e11b815260048101829052829033906001600160a01b03831690636352211e90602401602060405180830381865afa1580156104ff573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105239190610907565b6001600160a01b0316146105725760405162461bcd60e51b8152602060048201526016602482015275165bdd48191bdb89dd081bdddb881d1a1a5cc813919560521b6044820152606401610338565b3360009081526003602052604090205460ff166105e4576002805460018181019092557f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b031916339081179091556000908152600360205260409020805460ff191690911790555b3360009081526001602052604081208054916105ff83610924565b90915550506005805490600061061483610924565b9091555050600480546040516323b872dd60e01b815233928101929092526001600160a01b039081166024830152604482018490528216906323b872dd90606401600060405180830381600087803b15801561066f57600080fd5b505af1158015610683573d6000803e3d6000fd5b5050604080516001600160a01b038716815260208101869052338183015290517f98f13e667ce55611c8fa11a4f21a2a0bbe5c4beac19cae004f72b930a0d1e5fa9350908190036060019150a1505050565b600254600090819083106107215760405162461bcd60e51b8152602060048201526013602482015272496e646578206f7574206f6620626f756e647360681b6044820152606401610338565b6000600284815481106107365761073661094b565b60009182526020808320909101546001600160a01b03168083526001909152604090912054909590945092505050565b61076e6107df565b6001600160a01b0381166107d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610338565b6107dc81610839565b50565b6000546001600160a01b031633146104345760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610338565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b03811681146107dc57600080fd5b600080604083850312156108b157600080fd5b82356108bc81610889565b946020939093013593505050565b6000602082840312156108dc57600080fd5b81356108e781610889565b9392505050565b60006020828403121561090057600080fd5b5035919050565b60006020828403121561091957600080fd5b81516108e781610889565b60006001820161094457634e487b7160e01b600052601160045260246000fd5b5060010190565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220854a6459a51144fbf18ca3c5ed9cc0e77d3fb101b5c2ad3872d2f5e6a6138b7d64736f6c63430008170033
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.