]> zoso.dev Git - libnemo.git/commit
Update authors and licenses. Add testing globals and webpages. Add original nano... main
authorChris Duncan <chris@zoso.dev>
Sun, 29 Dec 2024 10:30:38 +0000 (02:30 -0800)
committerChris Duncan <chris@zoso.dev>
Sun, 29 Dec 2024 10:30:38 +0000 (02:30 -0800)
commit53e0f9c0e0b0293c1d17be861c0a950234adb5e0
tree7c4fb6222ee52e4d91f91faf933b3c243e303c6f
parent6129f5d52c8053eae1210cfd9170bdbcd4699ce9
Update authors and licenses. Add testing globals and webpages. Add original nano-webgl-pow module for performance comparisons. Add performance tests. Implement Blake2b class customized from original npm module. Add pool for web workers and implement workers for BIP-44, new NanoNaCl, and faster PoW. Various bugfixes and documentation expansion.
46 files changed:
AUTHORS.md
GLOBALS.mjs [new file with mode: 0644]
LICENSES/ISC.txt [new file with mode: 0644]
LICENSES/MIT.txt
index.html [new file with mode: 0644]
package-lock.json
package.json
perf/account.perf.js [new file with mode: 0644]
perf/block.perf.js [new file with mode: 0644]
perf/main.mjs [new file with mode: 0644]
perf/wallet.perf.js [new file with mode: 0644]
performance.html [new file with mode: 0644]
src/lib/account.ts
src/lib/bip32-key-derivation.ts [deleted file]
src/lib/bip39-mnemonic.ts
src/lib/blake2b.ts [new file with mode: 0644]
src/lib/block.ts
src/lib/constants.ts
src/lib/convert.ts
src/lib/curve25519.ts [deleted file]
src/lib/ed25519.ts [deleted file]
src/lib/entropy.ts
src/lib/pool.ts [new file with mode: 0644]
src/lib/rolodex.ts
src/lib/rpc.ts
src/lib/safe.ts
src/lib/tools.ts
src/lib/wallet.ts
src/lib/workers.ts [new file with mode: 0644]
src/lib/workers/bip44-ckd.ts [new file with mode: 0644]
src/lib/workers/nano-nacl.ts [new file with mode: 0644]
src/lib/workers/powgl.ts [new file with mode: 0644]
src/main.ts
test.html [new file with mode: 0644]
test/GLOBALS.mjs [deleted file]
test/TEST_VECTORS.js
test/calculate-pow.test.mjs [new file with mode: 0644]
test/create-wallet.test.mjs
test/derive-accounts.test.mjs
test/import-wallet.test.mjs
test/lock-unlock-wallet.mjs
test/main.mjs [new file with mode: 0644]
test/manage-rolodex.mjs
test/refresh-accounts.test.mjs
test/sign-blocks.test.mjs
test/tools.test.mjs