Skip to content

Instantly share code, notes, and snippets.

@r8d8
r8d8 / easyelectronics.md
Last active December 14, 2017 22:27
Good resource about electronics, embedded devices, assemblers, etc.

Recently we discovered that our account generation worked wrong.

The reason was usage of invalid hashing algorithm inside go crypto library. We lost our donation address. Error was fixed in v0.2.1, and all binaries released prior to his version was deleted.

If you used nem-toolchain to generate addess, please make new one. And forgot about all early balances 😉

Nem-toolchain version v0.2

It now can measure generation rate and estimate calculation time. As generation made by random keypair generation, time estimation only possible by probability level. Currently nem-toolchian estimates time for 3 probaility levels - 50%(min), 80%(average), 99.9%(definetly)

Also nem-toolchainnow now has a website with doc and examples, for more info visit here

asciicast

@r8d8
r8d8 / nem-toolchain.md
Last active September 27, 2017 09:00
Command line toolchain for Nem blockchain project announcement

Command line toolchain for Nem blockchain project announcement

We glad to introduce first release set of console utils for NEM blockchain — project nem-toolchain. Idea of projects arise after unsuccessful attempts to find console util for Nem in open sources, that why we decided to make our own.

Current version v0.1 allows create new account — private and public keys pair,and search address by prefix. The project is written in Go — that gives ability to distribute util in compiled form without any external dependencies. asciicast

version: 2
jobs:
build:
docker:
- image: circleci/golang:1.8
working_directory: /go/src/github.com/r8d8/nem-toolchain
steps:
- checkout
- run: make setup
- run: make ci