An upgraded on-chain messaging contract with per-address message tracking and delete functionality, from the same Frontier developer who built the simpler Messa
Historical Significance
Part of a messaging contract iteration sequence by a prolific Frontier developer. This v2 adds per-recipient tracking and message deletion, features that would later become common in on-chain communication protocols.
Context
Deployed by a developer who deployed 31 contracts during Ethereum Frontier week 1. This contract shows their progression from simple string storage (MessageStore) to full messaging with addressable inboxes and delete capability.
Key Facts
Description
An upgraded messaging contract deployed at block 53,212 (August 2015) on Ethereum Frontier. This version adds per-address message tracking via a hashes mapping and a messages lookup, plus the ability to delete messages. Users call sendMessage(address, string) to store a message, indexed by sha3 hash with the timestamp recorded. Each recipient gets their own list of message hashes. Same deployer (0x8674c218) as the simpler MessagingContract at rank 36, the Ponzi at rank 33, and the verified MessageStore at rank 27.
Source Verified
near_exact_match: reconstructed source produces 1557b runtime (target 1543b = 99.1% match) with soljson v0.3.1 no-opt. All 6 selectors confirmed via openchain.xyz. 14-byte diff likely from delete implementation variant.
Heuristic Analysis
The following characteristics were detected through bytecode analysis and may not be accurate.
Frontier Era
The initial release of Ethereum. A bare-bones implementation for technical users.
Bytecode Overview
Verified Source Available
Source verified through compiler archaeology (near-exact bytecode match).
Show source code (Solidity)
contract Messaging {
mapping(bytes32 => string) messageContents;
mapping(bytes32 => uint) messageTime;
mapping(address => bytes32[]) public hashes;
mapping(address => mapping(bytes32 => bool)) public messages;
function sendMessage(address to, string content) {
bytes32 h = sha3(msg.sender, to, content);
messageContents[h] = content;
messageTime[h] = block.timestamp;
hashes[to].push(h);
}
function getMessageContents(bytes32 hash) constant returns (string) {
return messageContents[hash];
}
function getMessageTime(bytes32 hash) constant returns (uint) {
return messageTime[hash];
}
function deleteMessage(bytes32 hash) {
delete messageContents[hash];
delete messageTime[hash];
}
}External Links
Related contracts
Ponzi
Same deployerOne of the earliest Ponzi schemes on Ethereum - a 102% payout contract where new deposits fund earlier investors, deployed on Frontier Day 4.
0xce44c7...75f579August 8, 2015MessagingContract
Same deployerOne of the earliest messaging contracts on Ethereum, allowing users to send on-chain messages stored by content hash.
0xdc884e...45f48bAugust 8, 2015MessageStore
Same deployerA 6-line contract storing a single public string, deployed Day 9 of Ethereum by a prolific early experimenter who shipped 18 contracts in one week.
0xd2eccd...ff3d6bAugust 8, 2015OnChainProfile
Same deployerAug 8 2015 deploy by 0x8674c218 — one of the most prolific contract deployers of Ethereum's first day. Sibling of the verified MessagingContract / Ponzi / Messa
0x4ab020...f9d97dAugust 8, 2015MessagingContract
Same deployerAn on-chain messaging contract with per-address tracking and delete functionality, by the same Frontier developer who iterated on messaging across four deployme
0x97b29a...7c3532August 8, 2015MessagingContract v3
Same deployerAn on-chain messaging contract that adds a nonce for unique message hashing, part of a four-deployment messaging iteration on Frontier.
0xd51ead...6130efAugust 8, 2015