ETH Price: $3,069.02 (+2.97%)
Gas: 1 Gwei

Contract

0xDE3f7c71B34305169f9AFE6D7fd33D549e4c5933
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value

There are no matching entries

Please try again later

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block From To Value
83138532019-08-09 2:58:111793 days ago1565319491  Contract Creation0 ETH
83138182019-08-09 2:51:371793 days ago1565319097  Contract Creation0 ETH
83133862019-08-09 1:15:511794 days ago1565313351  Contract Creation0 ETH
Loading...
Loading

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

Contract Name:
StorageUnit

Compiler Version
v0.5.10+commit.5a6ea5b1

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license
/**
 *Submitted for verification at Etherscan.io on 2019-08-05
*/

// File: contracts/commons/StorageUnit.sol

pragma solidity ^0.5.10;


contract StorageUnit {
    address private owner;
    mapping(bytes32 => bytes32) private store;

    constructor() public {
        owner = msg.sender;
    }

    function write(bytes32 _key, bytes32 _value) external {
        /* solium-disable-next-line */
        require(msg.sender == owner);
        store[_key] = _value;
    }

    function read(bytes32 _key) external view returns (bytes32) {
        return store[_key];
    }
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"_key","type":"bytes32"}],"name":"read","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_key","type":"bytes32"},{"name":"_value","type":"bytes32"}],"name":"write","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"}]

Deployed Bytecode

0x6080604052348015600f57600080fd5b506004361060325760003560e01c806361da1439146037578063e2e52ec1146063575b600080fd5b605160048036036020811015604b57600080fd5b50356085565b60408051918252519081900360200190f35b608360048036036040811015607757600080fd5b50803590602001356097565b005b60009081526001602052604090205490565b6000546001600160a01b0316331460ad57600080fd5b6000918252600160205260409091205556fea265627a7a7230582009d959deda1aaab903b1297659fa113ea55adcb7881dbcd3a51f90eafaa4b1fa64736f6c634300050a0032

Deployed Bytecode Sourcemap

76:452:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;76:452:0;;;;;;;;;;;;;;;;;;;;;;;;428:97;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;428:97:0;;:::i;:::-;;;;;;;;;;;;;;;;248:172;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;248:172:0;;;;;;;:::i;:::-;;428:97;479:7;506:11;;;:5;:11;;;;;;;428:97::o;248:172::-;375:5;;-1:-1:-1;;;;;375:5:0;361:10;:19;353:28;;;;;;392:11;;;;:5;:11;;;;;;:20;248:172::o

Swarm Source

bzzr://09d959deda1aaab903b1297659fa113ea55adcb7881dbcd3a51f90eafaa4b1fa

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  ]

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.