This file contains 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
// FOR ALL PURCHASED TO GO THROUGH SINGLE MASTERNODE - REPLACE THIS | |
// var masternode = "0x0000000000000000000000000000000000000000" | |
///////////// and comment this out otherwise leave it | |
var masternode = getURL(window.location.search.substring(1)).ref; | |
/////////////////////////////////////////////////// |
This file contains 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.21; | |
/*** | |
* _ _ _ ______ _ _ _ | |
* | \ | | | | | ___| | \ | | | | | |
* | \| | ___ __| | ___| |_ ___ _ __| \| | ___ __| | ___ | |
* | . ` |/ _ \ / _` |/ _ \ _/ _ \| '__| . ` |/ _ \ / _` |/ _ \ | |
* | |\ | (_) | (_| | __/ || (_) | | | |\ | (_) | (_| | __/ | |
* \_| \_/\___/ \__,_|\___\_| \___/|_| \_| \_/\___/ \__,_|\___| | |
* | |
* v 1.0.0 |
This file contains 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.21; | |
contract Escrow { | |
struct Job { | |
bool started; | |
bool complete; | |
bytes32 customerPasswordHash; | |
uint256 deadline; | |
uint256 price; |
This file contains 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.21; | |
contract Hourglass { | |
function transfer(address, uint256) public returns(bool){} | |
function buy(address) public payable returns(uint256) {} | |
} | |
contract Escrow { | |
struct Job { | |
bool started; |