@twin.org/dlt-iota 0.0.1 → 0.0.2-next.2
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.
- package/docs/changelog.md +28 -0
- package/package.json +9 -9
package/docs/changelog.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @twin.org/dlt-iota - Changelog
|
|
2
2
|
|
|
3
|
+
## [0.0.2-next.2](https://github.com/twinfoundation/dlt/compare/dlt-iota-v0.0.2-next.1...dlt-iota-v0.0.2-next.2) (2025-07-25)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Miscellaneous Chores
|
|
7
|
+
|
|
8
|
+
* **dlt-iota:** Synchronize repo versions
|
|
9
|
+
|
|
10
|
+
## [0.0.2-next.1](https://github.com/twinfoundation/dlt/compare/dlt-iota-v0.0.2-next.0...dlt-iota-v0.0.2-next.1) (2025-07-16)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* adding gas station docker image config ([#24](https://github.com/twinfoundation/dlt/issues/24)) ([0663303](https://github.com/twinfoundation/dlt/commit/06633039598ccfe5b1cf0d72332327fc151dc5c9))
|
|
16
|
+
* blend transaction methods ([#13](https://github.com/twinfoundation/dlt/issues/13)) ([763a93c](https://github.com/twinfoundation/dlt/commit/763a93cf30eaa3872ac56fa9cef512d58cdb0208))
|
|
17
|
+
* gas station integration ([#17](https://github.com/twinfoundation/dlt/issues/17)) ([23c7c96](https://github.com/twinfoundation/dlt/commit/23c7c96858dd6a91d01306983080e1eb8860115a))
|
|
18
|
+
* Get Key Pair method in the iota dlt ([#5](https://github.com/twinfoundation/dlt/issues/5)) ([3179854](https://github.com/twinfoundation/dlt/commit/31798540b9b8be68079ba1696b29a11c84c40fa5))
|
|
19
|
+
* github action simplification and readme update ([#25](https://github.com/twinfoundation/dlt/issues/25)) ([b1a3988](https://github.com/twinfoundation/dlt/commit/b1a3988fd5e8b4bef31208a2da6d0d5fff13758d))
|
|
20
|
+
* improve error handling ([179188d](https://github.com/twinfoundation/dlt/commit/179188dce9bbc6add5f537cb83e50cac817e5cf9))
|
|
21
|
+
* improve prepareAndPostGasStationTransaction with options parameter ([#20](https://github.com/twinfoundation/dlt/issues/20)) ([778365d](https://github.com/twinfoundation/dlt/commit/778365d535965fb67583db93d9611bfbb944b64d))
|
|
22
|
+
* rebased release ([8ce044b](https://github.com/twinfoundation/dlt/commit/8ce044b93a596415852b1f7b75c3e315fe2c6b6f))
|
|
23
|
+
* update dependencies ([f7b71c2](https://github.com/twinfoundation/dlt/commit/f7b71c24274b71e2d37c26c4a7e5e6d9df1dc9b7))
|
|
24
|
+
* use shared store mechanism ([#10](https://github.com/twinfoundation/dlt/issues/10)) ([ce36214](https://github.com/twinfoundation/dlt/commit/ce36214577f02cbb9642f831cb2c21335c31cc9a))
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Bug Fixes
|
|
28
|
+
|
|
29
|
+
* isAbortError static method ([2544c92](https://github.com/twinfoundation/dlt/commit/2544c926a5f0c4505e9f2c23d4380ced368f8470))
|
|
30
|
+
|
|
3
31
|
## 0.0.1 (2025-07-08)
|
|
4
32
|
|
|
5
33
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twin.org/dlt-iota",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2-next.2",
|
|
4
4
|
"description": "DLT helpers for use with IOTA",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -14,14 +14,14 @@
|
|
|
14
14
|
"node": ">=20.0.0"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@iota/bcs": "1.
|
|
18
|
-
"@iota/iota-sdk": "1.
|
|
19
|
-
"@twin.org/core": "
|
|
20
|
-
"@twin.org/crypto": "
|
|
21
|
-
"@twin.org/logging-models": "
|
|
22
|
-
"@twin.org/nameof": "
|
|
23
|
-
"@twin.org/vault-models": "
|
|
24
|
-
"@twin.org/web": "
|
|
17
|
+
"@iota/bcs": "1.1.0",
|
|
18
|
+
"@iota/iota-sdk": "1.4.0",
|
|
19
|
+
"@twin.org/core": "next",
|
|
20
|
+
"@twin.org/crypto": "next",
|
|
21
|
+
"@twin.org/logging-models": "next",
|
|
22
|
+
"@twin.org/nameof": "next",
|
|
23
|
+
"@twin.org/vault-models": "next",
|
|
24
|
+
"@twin.org/web": "next"
|
|
25
25
|
},
|
|
26
26
|
"main": "./dist/cjs/index.cjs",
|
|
27
27
|
"module": "./dist/esm/index.mjs",
|