Skip to content

Instantly share code, notes, and snippets.

@thomasvds
Created April 5, 2018 08:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save thomasvds/c827a7123b876e8cb3d2989b8b4285fd to your computer and use it in GitHub Desktop.
Save thomasvds/c827a7123b876e8cb3d2989b8b4285fd to your computer and use it in GitHub Desktop.
pragma solidity 0.4.21^;
contract FirstGenEthernityPod {
address public launcher;
int public podId;
bytes32 public firstName;
bytes32 public lastName;
bytes32 public pictureIPFSHash;
function FirstGenEthernityPod {
launcher = msg.sender;
podId = 1;
firstName = 'Vitalik';
lastName = 'Buterin;
pictureIPFSHash = '0xkjHJ2I2...'
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment