Skip to content

Commit 7d1f663

Browse files
[ci] release (#73)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent d169992 commit 7d1f663

File tree

8 files changed

+42
-25
lines changed

8 files changed

+42
-25
lines changed

.changeset/hot-gorillas-fly.md

Lines changed: 0 additions & 16 deletions
This file was deleted.

.changeset/neat-starfishes-wonder.md

Lines changed: 0 additions & 6 deletions
This file was deleted.

apps/web/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# web
22

3+
## 0.1.14
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [d169992]
8+
- Updated dependencies [af5093d]
9+
- @3loop/transaction-decoder@0.11.0
10+
- @3loop/transaction-interpreter@0.2.1
11+
312
## 0.1.13
413

514
### Patch Changes

apps/web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "web",
3-
"version": "0.1.13",
3+
"version": "0.1.14",
44
"private": true,
55
"scripts": {
66
"dev": "next dev",

packages/transaction-decoder/CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# @3loop/transaction-decoder
22

3+
## 0.11.0
4+
5+
### Minor Changes
6+
7+
- d169992: Refactor stores to call `set` when the data is not found in strategies. This introduces new types for store values, to
8+
be able to differentiate between a missing value, and one that was never requested.
9+
10+
- 1. `Success` - The data is found successfully in the store
11+
- 2. `NotFound` - The data is found in the store, but is missing the value
12+
- 3. `MetaEmpty` - The contract metadata is not found in the store
13+
14+
This change requires the users of the library to persist the NotFound state. Having the NotFound state allows us
15+
to skip the strategy lookup, which is one of the most expensive operations when decoding transactions.
16+
17+
We suggest to keep a timestamp for the NotFound state, and invalidate it after a certain period of time. This will
18+
ensure that the strategy lookup is not skipped indefinitely. Separately, users can upload their own data to the store.
19+
20+
### Patch Changes
21+
22+
- af5093d: Add otel tracing spans
23+
324
## 0.10.0
425

526
### Minor Changes

packages/transaction-decoder/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@3loop/transaction-decoder",
3-
"version": "0.10.0",
3+
"version": "0.11.0",
44
"description": "A library for decoding Ethereum transactions",
55
"types": "dist/index.d.ts",
66
"main": "dist/index.cjs",

packages/transaction-interpreter/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @3loop/transaction-interpreter
22

3+
## 0.2.1
4+
5+
### Patch Changes
6+
7+
- af5093d: Add otel tracing spans
8+
- Updated dependencies [d169992]
9+
- Updated dependencies [af5093d]
10+
- @3loop/transaction-decoder@0.11.0
11+
312
## 0.2.0
413

514
### Minor Changes

packages/transaction-interpreter/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@3loop/transaction-interpreter",
3-
"version": "0.2.0",
3+
"version": "0.2.1",
44
"description": "",
55
"license": "GPL-3.0-only",
66
"type": "module",

0 commit comments

Comments
 (0)