ETH Price: $3,230.11 (-0.75%)
Gas: 1 Gwei

Contract

0xEf9D450fb5009572221267228a76826006036f03
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer129067462021-07-27 7:05:531096 days ago1627369553IN
0xEf9D450f...006036f03
0 ETH0.0003571514
Transfer129067462021-07-27 7:05:531096 days ago1627369553IN
0xEf9D450f...006036f03
0 ETH0.000339813.32
Transfer129067462021-07-27 7:05:531096 days ago1627369553IN
0xEf9D450f...006036f03
0 ETH0.0003543211

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
129067462021-07-27 7:05:531096 days ago1627369553
0xEf9D450f...006036f03
17.7 ETH
109572082020-09-29 11:45:101397 days ago1601379910  Contract Creation17.7 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x1983894a...049dB6f25
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Lock

Compiler Version
v0.5.15+commit.6a57276f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2020-03-16
*/

pragma solidity 0.5.15;

contract Lock {
    // address owner; slot #0
    // address unlockTime; slot #1
    constructor (address owner, uint256 unlockTime) public payable {
        assembly {
            sstore(0x00, owner)
            sstore(0x01, unlockTime)
        }
    }

    /**
    * @dev        Withdraw function once timestamp has passed unlock time
    */
    function () external payable {
        assembly {
            switch gt(timestamp, sload(0x01))
            case 0 { revert(0, 0) }
            case 1 {
                switch call(gas, sload(0x00), balance(address), 0, 0, 0, 0)
                case 0 { revert(0, 0) }
            }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"unlockTime","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x60806040526001544211801560195760018114601e576032565b600080fd5b60008060008030316000545af18015601957505b5000fea265627a7a7231582013876a131fb612745be13765f49451cc6f0f1d0f7b13e21ac2cf9c7d3aeca18964736f6c634300050f0032

Deployed Bytecode Sourcemap

27:671:0:-;;;479:4;473:11;462:9;459:26;499:23;;;;541:1;536:141;;;;452:225;;499:23;518:1;515;508:12;536:141;619:1;616;613;610;600:7;592:16;585:4;579:11;574:3;569:52;639:23;;;;562:100;452:225;;27:671

Swarm Source

bzzr://13876a131fb612745be13765f49451cc6f0f1d0f7b13e21ac2cf9c7d3aeca189

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.