This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Will Src | |
contract Token { | |
event Transfer(address indexed _from, address indexed _to, uint256 _value); | |
function Token(uint256 _initialAmount) { | |
balances[msg.sender] = _initialAmount; | |
totalSupply = _initialAmount; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Mo", | |
"engine": { | |
"Ethash": { | |
"params": { | |
"gasLimitBoundDivisor": "0x0400", | |
"minimumDifficulty": "0x020000", | |
"difficultyBoundDivisor": "0x0800", | |
"durationLimit": "0x0a", | |
"blockReward": "0x4563918244F40000", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.9; | |
library Math { | |
function mul (uint a, uint b, uint decimals) internal constant returns (uint) { | |
return a*b/10**decimals; | |
} | |
function div (uint a, uint b, uint decimals) internal constant returns (uint) { | |
return a*10**decimals/b; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0xa782614d8A4B6E76de08F47F57Ef7F17C329bc1F |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ==UserScript== | |
// @name TeXify the World MathJax | |
// @namespace | |
// @version 1.0 | |
// @description Enables MathJax to process LaTeX on all websites. Based off SOUP (Stack Overflow Unofficial Patch) and http://www.math.ucla.edu/~robjohn/math/mathjax.html. | |
// @include * | |
// @copyright | |
// ==/UserScript== | |
/* | |
var mathjaxVersion = "http://cdn.mathjax.org"; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0x58449eD75ce70267CFBe782F0a306eF6E9C015E3 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0xD73862cdCA7043149Ca54124A276876EF199A1E8 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0x10212dc0f48a903b8446fa3784b461130eff617f |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
0x14723a09acff6d2a60dcdf7aa4aff308fddc160c |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.4.11; | |
// A contract with an owner property | |
contract Ownable { | |
address public owner; | |
modifier onlyOwner { | |
require(msg.sender == owner); | |
_; |
OlderNewer