Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@gcyber911
gcyber911 / keybase.md
Created September 11, 2019 13:42
proof

Keybase proof

I hereby claim:

  • I am gcyber911 on github.
  • I am inilaptop (https://keybase.io/inilaptop) on keybase.
  • I have a public key ASAoW_hvZ28Rb_ohtqFUxJ_rKUE3AKEdtCbI-O09BVBhfAo

To claim this, I am signing this object:

@gcyber911
gcyber911 / custom.sol
Last active December 2, 2018 11:55
nkcjaskjfakj
pragma solidity >=0.4.22;
contract OraclizeI {
address public cbAddress;
function query(uint _timestamp, string _datasource, string _arg) external returns (bytes32 _id);
function query_withGasLimit(uint _timestamp, string _datasource, string _arg, uint _gaslimit) external returns (bytes32 _id);
function query2(uint _timestamp, string _datasource, string _arg1, string _arg2) public returns (bytes32 _id);
function query2_withGasLimit(uint _timestamp, string _datasource, string _arg1, string _arg2, uint _gaslimit) external returns (bytes32 _id);
function queryN(uint _timestamp, string _datasource, bytes _argN) public returns (bytes32 _id);
function queryN_withGasLimit(uint _timestamp, string _datasource, bytes _argN, uint _gaslimit) external returns (bytes32 _id);
#!/bin/bash
# input your wallet
read -p "Enter Your Electroneum wallet : " wallet
# go to root
cd
# server update & requesting apps install
apt-get -y install git build-essential cmake libuv1-dev libmicrohttpd-dev software-properties-common;