contract deployment
April 5th, 2023

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;

contract Taiko {

address public owner;

constructor() {
owner = msg.sender;
}

modifier onlyOwner() {
require(msg.sender == owner, "not an owner!");
_;
}

string public greet = "Hello, Crypton Prime!";

function pay() external payable {}

function withdraw() external onlyOwner {
    payable(msg.sender).transfer(address(this).balance);
}

}

Subscribe to pofigist.eth
Receive the latest updates directly to your inbox.
Nft graphic
Mint this entry as an NFT to add it to your collection.
Verification
This entry has been permanently stored onchain and signed by its creator.
More from pofigist.eth

Skeleton

Skeleton

Skeleton