Source Code
Latest 25 from a total of 2,738 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw | 21238392 | 463 days ago | IN | 0 ETH | 0.00062421 | ||||
| Withdraw | 21200258 | 469 days ago | IN | 0 ETH | 0.00039396 | ||||
| Withdraw | 21035179 | 492 days ago | IN | 0 ETH | 0.00031147 | ||||
| Withdraw | 20956860 | 503 days ago | IN | 0 ETH | 0.00059842 | ||||
| Withdraw | 20291883 | 595 days ago | IN | 0 ETH | 0.00016628 | ||||
| Withdraw | 20090729 | 624 days ago | IN | 0 ETH | 0.0006026 | ||||
| Withdraw | 20063098 | 627 days ago | IN | 0 ETH | 0.00048297 | ||||
| Withdraw | 20045503 | 630 days ago | IN | 0 ETH | 0.00019164 | ||||
| Ethscribe | 20013976 | 634 days ago | IN | 0.0055 ETH | 0.00657028 | ||||
| Withdraw | 19536463 | 701 days ago | IN | 0 ETH | 0.00086685 | ||||
| Withdraw | 19487681 | 708 days ago | IN | 0 ETH | 0.00065236 | ||||
| Ethscribe | 19049597 | 769 days ago | IN | 0.0055 ETH | 0.02140448 | ||||
| Ethscribe | 19049585 | 769 days ago | IN | 0.0055 ETH | 0.01199089 | ||||
| Ethscribe | 19049577 | 769 days ago | IN | 0.0055 ETH | 0.01011045 | ||||
| Ethscribe | 19049570 | 769 days ago | IN | 0.0055 ETH | 0.00952841 | ||||
| Withdraw | 19034687 | 771 days ago | IN | 0 ETH | 0.00122784 | ||||
| Ethscribe | 19005852 | 776 days ago | IN | 0.0055 ETH | 0.01574965 | ||||
| Ethscribe | 19001042 | 776 days ago | IN | 0.0055 ETH | 0.00857042 | ||||
| Ethscribe | 19000987 | 776 days ago | IN | 0.0055 ETH | 0.00717233 | ||||
| Ethscribe | 18999883 | 776 days ago | IN | 0.0055 ETH | 0.00847938 | ||||
| Ethscribe | 18999874 | 776 days ago | IN | 0.0055 ETH | 0.00786573 | ||||
| Ethscribe | 18999588 | 776 days ago | IN | 0.0055 ETH | 0.00747169 | ||||
| Ethscribe | 18993345 | 777 days ago | IN | 0.0055 ETH | 0.01559145 | ||||
| Ethscribe | 18991523 | 778 days ago | IN | 0.0055 ETH | 0.01311879 | ||||
| Ethscribe | 18991328 | 778 days ago | IN | 0.0055 ETH | 0.01172632 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Method | Block |
From
|
|
To
|
||
|---|---|---|---|---|---|---|---|
| Transfer | 21238392 | 463 days ago | 0.019 ETH | ||||
| Transfer | 21200258 | 469 days ago | 0.016 ETH | ||||
| Transfer | 21035179 | 492 days ago | 0.025 ETH | ||||
| Transfer | 20956860 | 503 days ago | 0.03 ETH | ||||
| Transfer | 20291883 | 595 days ago | 0.1 ETH | ||||
| Transfer | 20090729 | 624 days ago | 0.081 ETH | ||||
| Transfer | 20063098 | 627 days ago | 0.028 ETH | ||||
| Transfer | 20045503 | 630 days ago | 0.046 ETH | ||||
| Transfer | 19536463 | 701 days ago | 0.02 ETH | ||||
| Transfer | 19487681 | 708 days ago | 0.15 ETH | ||||
| Transfer | 19034687 | 771 days ago | 0.2 ETH | ||||
| Transfer | 18980423 | 779 days ago | 0.15 ETH | ||||
| Transfer | 18938727 | 785 days ago | 2 ETH | ||||
| Transfer | 18938690 | 785 days ago | 1.1 ETH | ||||
| Transfer | 18938684 | 785 days ago | 1.78 ETH | ||||
| Transfer | 18938567 | 785 days ago | 0.1 ETH | ||||
| Ethscribe | 18938179 | 785 days ago | 0.002 ETH | ||||
| Ethscribe | 18938179 | 785 days ago | 0.002 ETH | ||||
| Ethscribe | 18938179 | 785 days ago | 0.002 ETH | ||||
| Ethscribe | 18938179 | 785 days ago | 0.002 ETH | ||||
| Ethscribe | 18938179 | 785 days ago | 0.002 ETH | ||||
| Ethscribe | 18938179 | 785 days ago | 0.002 ETH | ||||
| Ethscribe | 18938179 | 785 days ago | 0.002 ETH | ||||
| Ethscribe | 18938179 | 785 days ago | 0.002 ETH | ||||
| Ethscribe | 18938179 | 785 days ago | 0.002 ETH |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
WiggleEthscriborESIP3
Compiler Version
v0.8.23+commit.f704f362
Optimization Enabled:
Yes with 7000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.20;
contract WiggleEthscriborESIP3 {
error MintNotOpened();
error MintClosed();
error NotEnoughEther();
error NotDeployer();
address public deployer = msg.sender;
uint public mintPrice = 0.001 ether;
uint public mintOpenBlock = 18144000;
uint public mintCloseBlock = 99999999;
event ethscriptions_protocol_CreateEthscription(
address indexed initialOwner,
string contentURI
);
function ethscribe(string memory dataURI) public payable {
if (block.number < mintOpenBlock) {
revert MintNotOpened();
}
if (block.number > mintCloseBlock) {
revert MintClosed();
}
if (msg.sender != address(deployer) && msg.value < mintPrice) {
revert NotEnoughEther();
}
emit ethscriptions_protocol_CreateEthscription(msg.sender, string(abi.encodePacked(dataURI)));
}
function settings(uint _mintPrice, uint _mintOpenBlock, uint _mintCloseBlock) public {
if (msg.sender != deployer) {
revert NotDeployer();
}
mintPrice = _mintPrice;
mintOpenBlock = _mintOpenBlock;
mintCloseBlock = _mintCloseBlock;
}
function withdraw(uint amount, address to) public {
if (msg.sender != deployer) {
revert NotDeployer();
}
payable(to).transfer(amount == 0 ? address(this).balance : amount);
}
}{
"optimizer": {
"enabled": true,
"runs": 7000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"name":"MintClosed","type":"error"},{"inputs":[],"name":"MintNotOpened","type":"error"},{"inputs":[],"name":"NotDeployer","type":"error"},{"inputs":[],"name":"NotEnoughEther","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"initialOwner","type":"address"},{"indexed":false,"internalType":"string","name":"contentURI","type":"string"}],"name":"ethscriptions_protocol_CreateEthscription","type":"event"},{"inputs":[],"name":"deployer","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"dataURI","type":"string"}],"name":"ethscribe","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintCloseBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintOpenBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"},{"internalType":"uint256","name":"_mintOpenBlock","type":"uint256"},{"internalType":"uint256","name":"_mintCloseBlock","type":"uint256"}],"name":"settings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040525f80546001600160a01b0319163317905566038d7ea4c68000600155630114db006002556305f5e0ff60035534801561003b575f80fd5b506105f1806100495f395ff3fe60806040526004361061006d575f3560e01c80635995cd4e1161004c5780635995cd4e146100d95780636817c76c146100ec578063b83b2b3314610101578063d5f3948814610116575f80fd5b8062f714ce14610071578063067fdaea146100925780633b877cd4146100b1575b5f80fd5b34801561007c575f80fd5b5061009061008b3660046103c9565b610166565b005b34801561009d575f80fd5b506100906100ac36600461040f565b610208565b3480156100bc575f80fd5b506100c660025481565b6040519081526020015b60405180910390f35b6100906100e7366004610465565b610266565b3480156100f7575f80fd5b506100c660015481565b34801561010c575f80fd5b506100c660035481565b348015610121575f80fd5b505f546101419073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100d0565b5f5473ffffffffffffffffffffffffffffffffffffffff1633146101b6576040517f8b906c9700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166108fc83156101dc57836101de565b475b6040518115909202915f818181858888f19350505050158015610203573d5f803e3d5ffd5b505050565b5f5473ffffffffffffffffffffffffffffffffffffffff163314610258576040517f8b906c9700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600192909255600255600355565b6002544310156102a2576040517f7158586600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003544311156102de576040517f589ed34b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5473ffffffffffffffffffffffffffffffffffffffff163314801590610306575060015434105b1561033d576040517f8a0d377900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f665fba0baf3dc33e9943340197893ac16f56482c2defb8de60f944987fee451c826040516020016103869190610550565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290526103be9161056b565b60405180910390a250565b5f80604083850312156103da575f80fd5b82359150602083013573ffffffffffffffffffffffffffffffffffffffff81168114610404575f80fd5b809150509250929050565b5f805f60608486031215610421575f80fd5b505081359360208301359350604090920135919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60208284031215610475575f80fd5b813567ffffffffffffffff8082111561048c575f80fd5b818401915084601f83011261049f575f80fd5b8135818111156104b1576104b1610438565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156104f7576104f7610438565b8160405282815287602084870101111561050f575f80fd5b826020860160208301375f928101602001929092525095945050505050565b5f5b83811015610548578181015183820152602001610530565b50505f910152565b5f825161056181846020870161052e565b9190910192915050565b602081525f825180602084015261058981604085016020870161052e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea26469706673582212209794fe10f99f779d6cfc71a7d4f5bb606cdb6cb1105bb885734c0b04e28ee88964736f6c63430008170033
Deployed Bytecode
0x60806040526004361061006d575f3560e01c80635995cd4e1161004c5780635995cd4e146100d95780636817c76c146100ec578063b83b2b3314610101578063d5f3948814610116575f80fd5b8062f714ce14610071578063067fdaea146100925780633b877cd4146100b1575b5f80fd5b34801561007c575f80fd5b5061009061008b3660046103c9565b610166565b005b34801561009d575f80fd5b506100906100ac36600461040f565b610208565b3480156100bc575f80fd5b506100c660025481565b6040519081526020015b60405180910390f35b6100906100e7366004610465565b610266565b3480156100f7575f80fd5b506100c660015481565b34801561010c575f80fd5b506100c660035481565b348015610121575f80fd5b505f546101419073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff90911681526020016100d0565b5f5473ffffffffffffffffffffffffffffffffffffffff1633146101b6576040517f8b906c9700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff81166108fc83156101dc57836101de565b475b6040518115909202915f818181858888f19350505050158015610203573d5f803e3d5ffd5b505050565b5f5473ffffffffffffffffffffffffffffffffffffffff163314610258576040517f8b906c9700000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600192909255600255600355565b6002544310156102a2576040517f7158586600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6003544311156102de576040517f589ed34b00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f5473ffffffffffffffffffffffffffffffffffffffff163314801590610306575060015434105b1561033d576040517f8a0d377900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f665fba0baf3dc33e9943340197893ac16f56482c2defb8de60f944987fee451c826040516020016103869190610550565b604080517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0818403018152908290526103be9161056b565b60405180910390a250565b5f80604083850312156103da575f80fd5b82359150602083013573ffffffffffffffffffffffffffffffffffffffff81168114610404575f80fd5b809150509250929050565b5f805f60608486031215610421575f80fd5b505081359360208301359350604090920135919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b5f60208284031215610475575f80fd5b813567ffffffffffffffff8082111561048c575f80fd5b818401915084601f83011261049f575f80fd5b8135818111156104b1576104b1610438565b604051601f82017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0908116603f011681019083821181831017156104f7576104f7610438565b8160405282815287602084870101111561050f575f80fd5b826020860160208301375f928101602001929092525095945050505050565b5f5b83811015610548578181015183820152602001610530565b50505f910152565b5f825161056181846020870161052e565b9190910192915050565b602081525f825180602084015261058981604085016020870161052e565b601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016919091016040019291505056fea26469706673582212209794fe10f99f779d6cfc71a7d4f5bb606cdb6cb1105bb885734c0b04e28ee88964736f6c63430008170033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.94
Net Worth in ETH
0.0005
Token Allocations
ETH
100.00%
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $1,883.12 | 0.0005 | $0.94156 |
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.