Skip to content

Instantly share code, notes, and snippets.

View jkcailteux's full-sized avatar

Jeff Cailteux jkcailteux

  • Discord
  • San Francisco
View GitHub Profile
@jkcailteux
jkcailteux / balance_snapshot.sol
Created November 17, 2017 03:57 — forked from anonymous/balance_snapshot.sol
Created using browser-solidity: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://ethereum.github.io/browser-solidity/#version=soljson-v0.4.18+commit.9cf6e910.js&optimize=undefined&gist=
contract creatorBalanceChecker {
address creator;
uint creatorbalance; // TIP: uint is an alias for uint256. Ditto int and int256.
function creatorBalanceChecker() public
{
creator = msg.sender; // msg is a global variable
creatorbalance = creator.balance;
}
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
defaultConfig {
applicationId "com.storyjam"
minSdkVersion 19
targetSdkVersion 23