Skip to content
This repository has been archived by the owner on Jun 7, 2023. It is now read-only.

Commit

Permalink
chore: Update dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
obany committed Oct 12, 2021
1 parent 7b91f8c commit 48b21d0
Show file tree
Hide file tree
Showing 38 changed files with 10,095 additions and 27,504 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# Changelog

## v1.6.2

* Update iota.js dependencies to use new individual packages for some classes
126 changes: 63 additions & 63 deletions dist/cjs/index-browser.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cjs/index-browser.min.js

Large diffs are not rendered by default.

126 changes: 63 additions & 63 deletions dist/cjs/index-node.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cjs/index-node.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/esm/mam/channel.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
import { Curl } from "@iota/iota.js";
import { Curl } from "@iota/crypto.js";
import { MerkleTree } from "../merkle/merkleTree.mjs";
import { HammingDiver } from "../pearlDiver/hammingDiver.mjs";
import { signature } from "../signing/iss-p27.mjs";
Expand Down
4 changes: 3 additions & 1 deletion dist/esm/mam/client.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
// Copyright 2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
import { Blake2b, Converter, INDEXATION_PAYLOAD_TYPE, SingleNodeClient } from "@iota/iota.js";
import { Blake2b } from "@iota/crypto.js";
import { INDEXATION_PAYLOAD_TYPE, SingleNodeClient } from "@iota/iota.js";
import { Converter } from "@iota/util.js";
import { validateModeKey } from "../utils/guards.mjs";
import { maskHash } from "../utils/mask.mjs";
import { TrytesHelper } from "../utils/trytesHelper.mjs";
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/mam/parser.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
import { Curl } from "@iota/iota.js";
import { Curl } from "@iota/crypto.js";
import { MerkleTree } from "../merkle/merkleTree.mjs";
import { checksumSecurity, digestFromSignature, PRIVATE_KEY_FRAGMENT_LENGTH } from "../signing/iss-p27.mjs";
import { unmask } from "../utils/mask.mjs";
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/merkle/merkleTree.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
import { Curl } from "@iota/iota.js";
import { Curl } from "@iota/crypto.js";
import { TrytesHelper } from "../utils/trytesHelper.mjs";
import { generateAddress } from "./merkleHashGenerator.mjs";
import { MerkleNode } from "./merkleNode.mjs";
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/pearlDiver/hammingDiver.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
import { Curl } from "@iota/iota.js";
import { Curl } from "@iota/crypto.js";
import bigInt from "big-integer";
import { roundThird } from "../utils/pascal.mjs";
/**
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/signing/iss-p27.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
import { Curl } from "@iota/iota.js";
import { Curl } from "@iota/crypto.js";
const PRIVATE_KEY_NUM_FRAGMENTS = 27;
// @internal
export const PRIVATE_KEY_FRAGMENT_LENGTH = PRIVATE_KEY_NUM_FRAGMENTS * Curl.HASH_LENGTH;
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/utils/mask.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
import { Curl } from "@iota/iota.js";
import { Curl } from "@iota/crypto.js";
/**
* Create the mask hash for the key.
* @param keyTrits The key to create the mask hash for.
Expand Down
2 changes: 1 addition & 1 deletion dist/esm/utils/trytesHelper.mjs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2021 IOTA Stiftung
// SPDX-License-Identifier: Apache-2.0
import { Converter } from "@iota/iota.js";
import { Converter } from "@iota/util.js";
import { TextHelper } from "./textHelper.mjs";
/**
* Helper functions for use with trytes.
Expand Down
4 changes: 2 additions & 2 deletions es/mam/channel.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 48b21d0

Please sign in to comment.