Skip to content

Instantly share code, notes, and snippets.

@DanteAlabastro
Last active October 9, 2018 05:31
Show Gist options
  • Save DanteAlabastro/5cdc6868a31f84dc960bdf1fe06af179 to your computer and use it in GitHub Desktop.
Save DanteAlabastro/5cdc6868a31f84dc960bdf1fe06af179 to your computer and use it in GitHub Desktop.
I want to create a publicly view able and write able Visitors Log saved onto the blockchain. It will store a message, the time written, and the senders address. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.4.25+commit.59dbf8f1.js&optimize=true&gist=
pragma solidity ^0.4.25;
contract VisitorsLog{
uint logCount = 0;
/* Create Struct */
struct Guest{
string _note;
string _name;
uint _time;
address _SenderAddress;
}
// Define Guest in GuestBook
Guest[] public GuestBook;
// Push Guest to GuestBook
// string, message.address, now
function Write(string note, string name) public returns (string){
GuestBook.push(Guest(note, name, now, msg.sender));
return note;
}
// Public view GuestBook.
/*
function Read(uint ID) public view returns(string, string, uint, address){
return GuestBook[ID];
}
*/
}
contract VisitorLogMap{
// VisitorLog using mappings
event broadcast(string);
uint public logCount = 0;
struct Guest{
string _note;
string _name;
uint _blocknumber;
address _address;
}
mapping (uint => Guest) GuestLog;
function Write(string Note, string Name) public returns(string){
require(bytes(Note).length != 0);
require(bytes(Name).length != 0);
logCount++;
GuestLog[logCount] = Guest(Note, Name, block.number, msg.sender);
return('Thank you!');
emit broadcast('New submission!');
}
function Read(uint Entry_Number) public view returns(string, string, uint, address){// Can you return struct?{
return(GuestLog[Entry_Number]._note,GuestLog[Entry_Number]._name,GuestLog[Entry_Number]._blocknumber,GuestLog[Entry_Number]._address);
}
//gotta get this to work
function viewAll() public view returns(string, string, uint, address){
for(uint i = 1; i <= logCount; i++){
return(Read(i));
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment