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.15; | |
contract RegistryICAPInterface { | |
function parse(bytes32 _icap) constant returns(address, bytes32, bool); | |
function institutions(bytes32 _institution) constant returns(address); | |
} | |
contract EToken2Interface { | |
function registryICAP() constant returns(RegistryICAPInterface); | |
function baseUnit(bytes32 _symbol) constant returns(uint8); |
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.25; | |
/* | |
* https://metadollar.org | |
* | |
* METADOLLAR FUND GOLD (MFG) | |
* | |
* Copyright 2018 Metadollar.org | |
* | |
* [✓] 5% Withdraw fee |
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.18; | |
contract ERC20 { | |
uint public totalSupply; | |
function balanceOf(address who) public constant returns (uint); | |
function allowance(address owner, address spender) public constant returns (uint); | |
function transfer(address to, uint value) public returns (bool ok); | |
function transferFrom(address from, address to, uint value) public returns (bool ok); | |
function approve(address spender, uint value) public returns (bool ok); | |
event Transfer(address indexed from, address indexed to, uint value); | |
event Approval(address indexed owner, address indexed spender, uint value); |
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.16; | |
contract owned { | |
address public owner; | |
function owned() public { | |
owner = msg.sender; | |
} | |
modifier onlyOwner { |
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.24; | |
library SafeMath { | |
function mul(uint256 a, uint256 b) internal pure returns (uint256) { | |
uint256 c = a * b; | |
assert(a == 0 || c / a == b); | |
return c; | |
} | |
function div(uint256 a, uint256 b) internal pure returns (uint256) { |
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.24; | |
library SafeMath { | |
function mul(uint256 a, uint256 b) internal pure returns (uint256) { | |
uint256 result = a * b; | |
assert(a == 0 || result / a == b); | |
return result; | |
} | |
function div(uint256 a, uint256 b)internal pure returns (uint256) { |
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.24; | |
/*********************************************************** | |
* Easy Investment UP Contract | |
* - GAIN 4.5% PER 24 HOURS (every 5900 blocks) 60 days | |
* - GAIN 5% PER 24 HOURS (every 5900 blocks) 40 days | |
* - GAIN 5.3% PER 24 HOURS (every 5900 blocks) 30 days | |
* - GAIN 6.5% PER 24 HOURS (every 5900 blocks) 20 days | |
* - GAIN 9.3% PER 24 HOURS (every 5900 blocks) 12 days | |
* |
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.20; | |
contract BlackPearlETC { | |
/*================================= | |
= MODIFIERS = | |
=================================*/ | |
/// @dev Only people with tokens |
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.20; | |
/* | |
Built for the community. | |
Supported by the community. | |
“Equality... is when you don't feel the existence of word” | |
Talees Rizvi | |
“The world is round so that friendship may encircle it.” |
NewerOlder