Skip to content

Instantly share code, notes, and snippets.

View antouhou's full-sized avatar

Anton Suprunchuk antouhou

View GitHub Profile
@antouhou
antouhou / dasmate_local_network_reset.sh
Last active May 20, 2021 09:17
Reset script for dashmate
#COLLATERAL_KEY=cRnaL9PdSnwmSCVdwHRXH362eSjxyHc6ePvkFsU12wRgK6jahSTk
#COLLATERAL_ADDRESS=yMF5Mfrdsx4u7gHPmH8v5UmQBNJ6dygMcX
FAUCET_PRIVATE_KEY=cRhCaxzGmkJHDeQwwn71cLfmq1ssM8yNaCy3Dzx6xnu8RLrLCMvy
FAUCET_ADDRESS=yTFraC61Q2xrhywxp2ePZt4egtF8xSKm4M
MINING_INTERVAL_IN_SECONDS=30
DAPI_REPO_PATH=/Users/anton/dash/dapi
DRIVE_REPO_PATH=/Users/anton/dash/drive

Keybase proof

I hereby claim:

  • I am antouhou on github.
  • I am antouhou (https://keybase.io/antouhou) on keybase.
  • I have a public key ASCl1Njh4QMpjOT87zs6vRuDym_bp2rpyKuTxuz63ieqEQo

To claim this, I am signing this object:

@antouhou
antouhou / nested_arrays_concatenation_test.js
Last active February 1, 2017 17:02
Nested arrays concatenation perfomance test
'use strict';
const someMap = {
a: 'something',
b: [1, 2, 3]
};
const otherMap = {
a: 'something',
b: [4, 5, 6]
};