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
| // Copyright (c) 2010 Satoshi Nakamoto | |
| // Copyright (c) 2009-2018 The Bitcoin Core developers | |
| // Distributed under the MIT software license, see the accompanying | |
| // file COPYING or http://www.opensource.org/licenses/mit-license.php. | |
| #include <chainparams.h> | |
| #include <chainparamsseeds.h> | |
| #include <consensus/merkle.h> | |
| #include <tinyformat.h> |
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
| # In this example we're sending some test bitcoins from an address we control to a brand new test | |
| # address. We'll be sending the coins using the following address, public and private keys (please | |
| # don't abuse). | |
| # address : mtWg6ccLiZWw2Et7E5UqmHsYgrAi5wqiov | |
| # public : 03bb318b00de944086fad67ab78a832eb1bf26916053ecd3b14a3f48f9fbe0821f | |
| # private : 1af97b1f428ac89b7d35323ea7a68aba8cad178a04eddbbf591f65671bae48a2 | |
| # 1. generate a one-shot dummy address we're going to send money to | |
| $ curl -X POST http://api.blockcypher.com/v1/btc/test3/addrs | |
| { |
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
| ### Keybase proof | |
| I hereby claim: | |
| * I am omgbbqhaxx on github. | |
| * I am omgbbqhax (https://keybase.io/omgbbqhax) on keybase. | |
| * I have a public key ASCY1oxqoJHyEhxgEyqazTuZrqPho8VMbyTn6V-w4m0hvgo | |
| To claim this, I am signing this object: |
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.22 <0.6.0; | |
| interface tokenRecipient { | |
| function receiveApproval(address _from, uint256 _value, address _token, bytes calldata _extraData) external; | |
| } | |
| contract GQSTAND { | |
| // Current version:0.5.2+commit.1df8f40c.Emscripten.clang | |
| string public name; | |
| string public symbol; |
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.22 <0.6.0; | |
| interface tokenRecipient { | |
| function receiveApproval(address _from, uint256 _value, address _token, bytes calldata _extraData) external; | |
| } | |
| contract XXXYYY { | |
| // Public variables of the token | |
| string public name; | |
| string public symbol; |
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
| const web3 = require('web3'); | |
| const express = require('express'); | |
| const Tx = require('ethereumjs-tx'); | |
| const app = express(); | |
| //Infura HttpProvider Endpoint | |
| web3js = new web3(new web3.providers.HttpProvider("https://rinkeby.infura.io/YOUR_API_KEY")); | |
| app.get('/sendtx',function(req,res){ |
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
| p2p-peer-address = 106.10.42.238:9876 | |
| p2p-peer-address = 123.59.116.52:49876 | |
| p2p-peer-address = 13.230.91.225:9865 | |
| p2p-peer-address = 130.211.59.178:9876 | |
| p2p-peer-address = 159.65.214.150:9876 | |
| p2p-peer-address = 173.242.25.101:7115 | |
| p2p-peer-address = 178.49.174.48:9876 | |
| p2p-peer-address = 18.188.38.175:9876 | |
| p2p-peer-address = 18.188.4.97:9876 |
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.22 <0.6.0; | |
| //Current version:0.5.2+commit.1df8f40c.Emscripten.clang | |
| contract AnonymousWALL { | |
| address payable manager; | |
| struct messageDetails { | |
| uint time; | |
| string headline ; | |
| string message; | |
| } |
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
| #On Debian 7.0 | |
| #Install build essentials | |
| sudo apt-get install build-essential | |
| #Install dependencies | |
| sudo apt-get install binutils libproj-dev gdal-bin | |
| sudo apt-get install libgeos-dev | |
| sudo apt-get install libexpat1 libexpat1-dev | |
| sudo apt-get install pkg-config |
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.0;//please import oraclizeAPI_pre0.4.sol when solidity < 0.4.0 | |
| contract OraclizeI { | |
| address public cbAddress; | |
| function query(uint _timestamp, string _datasource, string _arg) payable returns (bytes32 _id); | |
| function query_withGasLimit(uint _timestamp, string _datasource, string _arg, uint _gaslimit) payable returns (bytes32 _id); | |
| function query2(uint _timestamp, string _datasource, string _arg1, string _arg2) payable returns (bytes32 _id); | |
| function query2_withGasLimit(uint _timestamp, string _datasource, string _arg1, string _arg2, uint _gaslimit) payable returns (bytes32 _id); | |
| function getPrice(string _datasource) returns (uint _dsprice); | |
| function getPrice(string _datasource, uint gaslimit) returns (uint _dsprice); |