Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 0 additions & 16 deletions .changeset/hot-gorillas-fly.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/neat-starfishes-wonder.md

This file was deleted.

9 changes: 9 additions & 0 deletions apps/web/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# web

## 0.1.14

### Patch Changes

- Updated dependencies [d169992]
- Updated dependencies [af5093d]
- @3loop/transaction-decoder@0.11.0
- @3loop/transaction-interpreter@0.2.1

## 0.1.13

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion apps/web/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "web",
"version": "0.1.13",
"version": "0.1.14",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down
21 changes: 21 additions & 0 deletions packages/transaction-decoder/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,26 @@
# @3loop/transaction-decoder

## 0.11.0

### Minor Changes

- d169992: Refactor stores to call `set` when the data is not found in strategies. This introduces new types for store values, to
be able to differentiate between a missing value, and one that was never requested.

- 1. `Success` - The data is found successfully in the store
- 2. `NotFound` - The data is found in the store, but is missing the value
- 3. `MetaEmpty` - The contract metadata is not found in the store

This change requires the users of the library to persist the NotFound state. Having the NotFound state allows us
to skip the strategy lookup, which is one of the most expensive operations when decoding transactions.

We suggest to keep a timestamp for the NotFound state, and invalidate it after a certain period of time. This will
ensure that the strategy lookup is not skipped indefinitely. Separately, users can upload their own data to the store.

### Patch Changes

- af5093d: Add otel tracing spans

## 0.10.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/transaction-decoder/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@3loop/transaction-decoder",
"version": "0.10.0",
"version": "0.11.0",
"description": "A library for decoding Ethereum transactions",
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
Expand Down
9 changes: 9 additions & 0 deletions packages/transaction-interpreter/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @3loop/transaction-interpreter

## 0.2.1

### Patch Changes

- af5093d: Add otel tracing spans
- Updated dependencies [d169992]
- Updated dependencies [af5093d]
- @3loop/transaction-decoder@0.11.0

## 0.2.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/transaction-interpreter/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@3loop/transaction-interpreter",
"version": "0.2.0",
"version": "0.2.1",
"description": "",
"license": "GPL-3.0-only",
"type": "module",
Expand Down