Skip to content

Instantly share code, notes, and snippets.

View myneworder's full-sized avatar
🎯
Focusing

myneworder

🎯
Focusing
View GitHub Profile
@myneworder
myneworder / Bitshares.BRIDGES.worker
Last active October 21, 2018 11:18
Bitshares.BRIDGES.worker PLEASE VOTE
worker.Bitshares.BRIDGES
PLEASE VOTE!
more info soon
@myneworder
myneworder / Bitshares.GATEWAYS
Created October 21, 2018 11:15
Bitshares.GATEWAYS.worker
worker:
Bitshares.GATEWAYS.worker
PLEASE VOTE
<div class="lod">
<ul>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
<li></li>
@myneworder
myneworder / CREX.worker.Bitshares-integration
Last active September 15, 2018 12:18
English, Russian, China
worker:
CREX.worker.Bitshares-integration
PLEASE VOTE
INFORMATION
English
==============================================================
1. Our vision
---
@myneworder
myneworder / ballot.sol
Created December 22, 2017 06:36 — forked from anonymous/ballot.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.16+commit.d7661dd9.js&optimize=true&gist=
pragma solidity ^0.4.16;
contract Token {
/// @return total amount of tokens
function totalSupply() constant returns (uint256 supply) {}
/// @param _owner The address from which the balance will be retrieved
/// @return The balance
function balanceOf(address _owner) constant returns (uint256 balance) {}
@myneworder
myneworder / ERC20.sol
Created December 22, 2017 01:01 — forked from anonymous/ERC20.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.16+commit.d7661dd9.js&optimize=true&gist=
pragma solidity ^0.4.16;
contract ERC20 {
function allowance(address owner, address spender) constant returns (uint256);
function transferFrom(address from, address to, uint256 value) returns (bool);
function approve(address spender, uint256 value) returns (bool);
event Approval(address indexed owner, address indexed spender, uint256 value);
}
@myneworder
myneworder / TokenBest.sol
Created December 21, 2017 22:59 — forked from anonymous/TokenBest.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.16+commit.d7661dd9.js&optimize=true&gist=
pragma solidity ^0.4.16;
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
uint256 public totalSupply;
function balanceOf(address who) constant returns (uint256);
function transfer(address to, uint256 value) returns (bool);
@myneworder
myneworder / 1.sol
Created December 21, 2017 22:56 — forked from anonymous/1.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.16+commit.d7661dd9.js&optimize=true&gist=
pragma solidity ^0.4.16;
contract owned {
address public owner;
function owned() {
owner = msg.sender;
}
modifier onlyOwner {