Skip to content

Instantly share code, notes, and snippets.

@microchipgnu
Created June 15, 2018 12:25
Show Gist options
  • Save microchipgnu/ade1d7f100b4390f5fc98cdbf004cfd7 to your computer and use it in GitHub Desktop.
Save microchipgnu/ade1d7f100b4390f5fc98cdbf004cfd7 to your computer and use it in GitHub Desktop.
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.24+commit.e67f0147.js&optimize=false&gist=
pragma solidity ^0.4.24;
contract HashStorage{
mapping(address => bytes32[]) hashes;
mapping(string => bytes32) tagsToHash;
function write(bytes32 _hash, string tags) public{
/*TODO: add requires*/
hashes[msg.sender].push(_hash);
tagsToHash[tags] = _hash;
}
function getHashes() public view returns(bytes32[]){
return hashes[msg.sender];
}
function getHashByTag(string tag) public view returns(bytes32){
return tagsToHash[tag];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment