Skip to content

Instantly share code, notes, and snippets.

@thapakazi
Last active May 22, 2018 10:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thapakazi/bb1c614f5708fc984a948e26488f8efc to your computer and use it in GitHub Desktop.
Save thapakazi/bb1c614f5708fc984a948e26488f8efc 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.4;
contract HelloWorld {
address private creator;
address private lastCaller;
string private message;
uint private totalGas;
constructor() {
creator = tx.origin;
totalGas = tx.gasprice;
message = 'hello world';
}
function getMessage() constant returns(string) {
return message;
}
function getCreator() constant returns(address) {
return creator;
}
function getTotalGas() constant returns(uint) {
return totalGas;
}
//Being: setters
function setMessage(string newMessage) {
message = newMessage;
lastCaller = tx.origin;
totalGas += tx.gasprice;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment