I hereby claim:
- I am tcrowe on github.
- I am hellotonycrowe (https://keybase.io/hellotonycrowe) on keybase.
- I have a public key ASAdedYjC4G3XVX-7imDiRvTH0dqi6Nvon4XVjFYicXryQo
To claim this, I am signing this object:
| 'use strict'; | |
| var inquirer = require('inquirer'), | |
| chalk = require('chalk'), | |
| nano = require('nano'), | |
| questions; | |
| questions = [ | |
| { | |
| type: 'list', |
| var fs = require('fs'), | |
| path = require('path'), | |
| child_process = require('child_process'), | |
| exec = child_process.exec, | |
| pattern = /hello/gi, | |
| fileList, | |
| patternMatches = []; | |
| // recursive directory listing | |
| exec('find ' + __dirname, function (err, stdout, stderr) { |
| /* | |
| yaml loader | |
| + safeLoad for one doc | |
| + safeLoadAll for multiple docs | |
| questions: | |
| + does it need yaml parser `onWarning: this.emitWarning`? | |
| + does it need error handling e.g. `try-catch`? |
| // | |
| // node command-line arguments for making node run minimally in memory | |
| // | |
| let optiNodeArgs = [ | |
| // optimize for low memory system | |
| '--optimize_for_size', | |
| '--always_compact', | |
| '--max_old_space_size=256', | |
| // '--max_executable_size=300', // disabled in v8.x.x |
I hereby claim:
To claim this, I am signing this object:
| ALL_PROXY=socks5://127.0.0.1:9050 brew install i2p |
| npm config set -g send-metrics false | |
| npm config set -g metrics-registry "http://127.0.0.1:11923" | |
| npm config set -g ham-it-up false | |
| npm config set -g optional false | |
| npm config set -g loglevel error | |
| npm config set -g init-version "0.1.0" | |
| npm config set -g init-license "UNLICENSED" | |
| npm config set -g init-author-url "" | |
| npm config set -g init-author-email "" | |
| npm config set -g init-author-name "" |
| /* | |
| it will send transactions in a circle to each account | |
| import aion account to node: | |
| ./aion.sh -a import private-key-hex | |
| */ | |
| let Web3 = require('../../src/index') |
| /* | |
| it will send transactions in a circle to each account | |
| import aion account to node: | |
| ./aion.sh -a import private-key-hex | |
| */ | |
| let Web3 = require("../../src/index"); |
| let ethers = require('ethers') | |
| let abi = new ethers.utils.AbiCoder() | |
| let types = ['address[][]', 'address[][]', 'address[][]'] | |
| let params = [[ | |
| [ | |
| '0x407d73d8a49eeb85d32cf465507dd71d507100c1', | |
| '0x407d73d8a49eeb85d32cf465507dd71d507100c2', |