@twin.org/crypto 0.0.1-next.1 → 0.0.1-next.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,7 +1,7 @@
1
1
  'use strict';
2
2
 
3
- var core = require('@twin.org/core');
4
3
  var base = require('@scure/base');
4
+ var core = require('@twin.org/core');
5
5
  var ed25519 = require('@noble/curves/ed25519');
6
6
  var secp256k1 = require('@noble/curves/secp256k1');
7
7
  var blake2b = require('@noble/hashes/blake2b');
@@ -1,5 +1,5 @@
1
- import { Guards, BaseError, GeneralError, Is, Converter, GuardError, Base32, RandomHelper, Validation } from '@twin.org/core';
2
1
  import { bech32 } from '@scure/base';
2
+ import { Guards, BaseError, GeneralError, Is, Converter, GuardError, Base32, RandomHelper, Validation } from '@twin.org/core';
3
3
  import { ed25519, edwardsToMontgomeryPriv, edwardsToMontgomeryPub } from '@noble/curves/ed25519';
4
4
  import { secp256k1 } from '@noble/curves/secp256k1';
5
5
  import { blake2b } from '@noble/hashes/blake2b';
package/docs/changelog.md CHANGED
@@ -1,5 +1,5 @@
1
1
  # @twin.org/crypto - Changelog
2
2
 
3
- ## v0.0.1
3
+ ## 0.0.1-next.3
4
4
 
5
5
  - Added: Bip44
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twin.org/crypto",
3
- "version": "0.0.1-next.1",
3
+ "version": "0.0.1-next.3",
4
4
  "description": "Contains helper methods and classes which implement cryptographic functions",
5
5
  "repository": {
6
6
  "type": "git",
@@ -27,7 +27,7 @@
27
27
  "dist": "npm run clean && npm run build && npm run test && npm run bundle && npm run docs"
28
28
  },
29
29
  "dependencies": {
30
- "@twin.org/core": "0.0.1-next.1",
30
+ "@twin.org/core": "0.0.1-next.3",
31
31
  "@twin.org/nameof": "next",
32
32
  "@noble/ciphers": "1.0.0",
33
33
  "@noble/curves": "1.6.0",