]> zoso.dev Git - libnemo.git/commit
Implemented most features (commit overdue)
authorMiro Metsänheimo <miro@metsanheimo.fi>
Wed, 9 Oct 2019 17:23:07 +0000 (20:23 +0300)
committerMiro Metsänheimo <miro@metsanheimo.fi>
Wed, 9 Oct 2019 17:23:07 +0000 (20:23 +0300)
commit08e7a140f315f5f000c382da26d97d6472485cf7
tree6c4e84bf60b1fc37877613ae3ccc54138a5da67d
parent4c7abe331febd259170bc3ce445035334277c3ea
Implemented most features (commit overdue)

* Generate random entropy
* BIP39 mnemonic phrase and seed from entropy
* Mnemonic phrase importing and validation
* BIP32 key derivation from seed
* Nano address encoding and validation
* Nano unit converter
* Modified ed25519 curve for Nano
* Block signing for receive and send blocks
16 files changed:
index.ts [new file with mode: 0644]
lib/address-generator.ts [new file with mode: 0644]
lib/address-importer.ts [new file with mode: 0644]
lib/bip32-key-derivation.ts [new file with mode: 0644]
lib/bip39-mnemonic.ts [new file with mode: 0644]
lib/block-signer.ts [new file with mode: 0644]
lib/ed25519.ts [new file with mode: 0644]
lib/nano-address.ts [new file with mode: 0644]
lib/nano-converter.ts [new file with mode: 0644]
lib/util/convert.ts [new file with mode: 0644]
lib/util/curve25519.ts [new file with mode: 0644]
lib/util/util.ts [new file with mode: 0644]
lib/words.ts [new file with mode: 0644]
package-lock.json [new file with mode: 0644]
package.json [new file with mode: 0644]
tsconfig.json [new file with mode: 0644]