I hereby claim:
- I am geek96 on github.
- I am boltxyz (https://keybase.io/boltxyz) on keybase.
- I have a public key ASDQkmAhoxPSI2zKBm5WFXfFko6VOG-wSvrbIzntpkGsLQo
To claim this, I am signing this object:
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="UTF-8"> | |
| <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
| <meta name="viewport" content="width=device-width, initial-scale=2.0"> | |
| <title>squacky | typewriter effect using CSS</title> | |
| <style> | |
| :root { | |
| -moz-transform: scale(2.5); /*This is for demo purposes only.*/ |
| // yarn add eosjs or npm install eosjs | |
| const { Api, JsonRpc, RpcError } = require('eosjs'); | |
| const { JsSignatureProvider } = require('eosjs/dist/eosjs-jssig'); // development only | |
| const fetch = require('node-fetch'); // node only; not needed in browsers | |
| const { TextEncoder, TextDecoder } = require('util'); // node only; native TextEncoder/Decoder | |
| const { TextEncoder, TextDecoder } = require('text-encoding'); | |
| const defaultPrivateKey = "<private_key_of_existing_eos_account_name>"; | |
| const signatureProvider = new JsSignatureProvider([defaultPrivateKey]); |
I hereby claim:
To claim this, I am signing this object:
| var callOptions = []byte(`{"jsonrpc": "2.0", "method":"personal_newAccount", "params":["yourpassword"], "id":"1"}`) | |
| req, err := http.NewRequest("post", "http://localhost:8545/", bytes.NewBuffer(callOptions)) | |
| if err != nil { | |
| log.Fatal(err) | |
| } | |
| client := &http.Client{} | |
| resp, err := client.Do(req) |
| var callOptions = []byte(`{"jsonrpc": "2.0", "method":"personal_listAccounts", "params":[], "id":1}`) | |
| req, err := http.NewRequest("post", "http://localhost:8545/", bytes.NewBuffer(callOptions)) | |
| if err != nil { | |
| log.Fatal(err) | |
| } | |
| client := &http.Client{} | |
| resp, err := client.Do(req) |
| 0xf3ff214bdf7ce2de7e927955b540bb34ea277be0 |
| pragma solidity ^0.4.2; | |
| /*contract token { | |
| function transfer(address receiver, uint amount){} | |
| }*/ | |
| contract Crowdsale { | |
| address beneficiary; | |
| uint fundingGoal; | |
| uint amountRaised; | |
| uint deadline; |
| import groovy.json.JsonSlurper | |
| import groovy.json.JsonOutput | |
| def formatJson(json) { | |
| def obj = new JsonSlurper().parseText(json) | |
| def map = [:] | |
| if(obj instanceof Map) { | |
| obj.each { |
I hereby claim:
To claim this, I am signing this object: