I hereby claim:
- I am raineorshine on github.
- I am raineorshine (https://keybase.io/raineorshine) on keybase.
- I have a public key ASDmUNgDNwUm5tB0gK8u8hFbHKsUKuFSXHhQjg889aByeQo
To claim this, I am signing this object:
npm rebuild leveldown scrypt; | |
echo "Starting Testrpc..." | |
./node_modules/ethereumjs-testrpc/bin/testrpc --port 8545 --account "0xb21e287e6dcb34cf16abb6ce71f7209906c13f763c6415c6b2320eea7688212f, 10000000000000000000000000" --account "0x3ba8150286625233d3154d795527e3cbbc07a135d14392e9485f08d2d555fb3d, 10000000000000000000000000" & | |
testrpc_pid=$! | |
sleep 5; | |
karma start config.karma.js | |
echo "Shutting down TestRpc..." | |
kill -9 $testrpc_pid | |
./node_modules/.bin/electron-rebuild; |
> [email protected] test /Users/raine/projects/npm-check-updates | |
> npm run lint ; mocha && mocha test/individual | |
> [email protected] lint /Users/raine/projects/npm-check-updates | |
> eslint bin lib test | |
npm-check-updates |
const waterfall = require('promise.waterfall') | |
const Bluebird = require('bluebird') | |
const _ = require('lodash') | |
// an array of 10ms functions with different return values | |
const functions = [ | |
() => Bluebird.delay(10, 'a'), | |
() => Bluebird.delay(10, 'b'), | |
() => Bluebird.delay(10, 'c') | |
] |
I hereby claim:
To claim this, I am signing this object:
const Web3 = require('web3') | |
const Tx = require('ethereumjs-tx').Transaction | |
// connect to Infura node | |
const web3 = new Web3(new Web3.providers.HttpProvider('https://mainnet.infura.io/INFURA_KEY')) | |
// the address that will send the test transaction | |
const addressFrom = '0x1889EF49cDBaad420EB4D6f04066CA4093088Bbd' | |
const privateKey = new Buffer('PRIVATE_KEY', 'hex') |
0x26c3103d96a7c87698e87f5bf2db2ac8152997ff |
I am @raineorshine on Steemit 🐠✨🎖
contract MyContract { | |
User user; | |
mapping (address => User) public users; | |
uint40 time; // cast to 5 bytes - packed with user | |
address addr1; // 20 bytes - packed with time | |
address addr2; // 20 bytes - unpacked, one slot | |
struct User { |
// Streams all values from a public contract array. Callback is a function that takes a single | |
// argument, one item from the array. Returns a promise that rejects if there is any error or | |
// resolves if all items have been retrieved. | |
function getAll(contract, sizeGetter, array, cb) { | |
// get the size of the array | |
return contract[sizeGetter]().then(n => { | |
// generate an array of contract calls | |
return Promise.all(Array(n.toNumber()).fill().map(i => { | |
// invoke the callback with the item | |
return contract[array](i).then(cb) |