@tuwaio/pulsar-evm 0.5.2 → 0.5.4

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.
Files changed (2) hide show
  1. package/README.md +11 -8
  2. package/package.json +11 -11
package/README.md CHANGED
@@ -4,13 +4,16 @@
4
4
  [![License](https://img.shields.io/npm/l/@tuwaio/pulsar-evm.svg)](./LICENSE)
5
5
  [![Build Status](https://img.shields.io/github/actions/workflow/status/TuwaIO/pulsar-core/release.yml?branch=main)](https://github.com/TuwaIO/pulsar-core/actions)
6
6
 
7
- An advanced toolkit for the Pulsar Engine that adds comprehensive support for tracking transactions on EVM-compatible chains. It integrates seamlessly with **Viem** & **Wagmi** and provides multiple tracking strategies, utility actions, and helpers.
7
+ Tier 4 of the TUWA Ecosystem. Low-level EVM state trackers and lifecycle indexers powered strictly by viem and wagmi primitives.
8
+
9
+ > [!WARNING]
10
+ > Use of legacy `web3.js` and `ethers.js` libraries is strictly prohibited. All interactions must proceed via `viem` and `wagmi` primitives to ensure deterministic transaction status reconciliation and application sovereignty.
8
11
 
9
12
  ---
10
13
 
11
14
  ## 🏛️ What is `@tuwaio/pulsar-evm`?
12
15
 
13
- This package is a powerful, official adapter for `@tuwaio/pulsar-core`. It contains all the necessary logic to interact with EVM-compatible blockchains, acting as the primary logic provider for most dApps.
16
+ This package is the low-level EVM state tracking and indexing adapter for `@tuwaio/pulsar-core`. It provides specialized tracking pipelines for standard transactions, contract wallets, Safe multisignature wallets, and Gelato transaction relayers utilizing `viem` clients.
14
17
 
15
18
  While its main export is the `pulsarEvmAdapter`, it also includes a suite of standalone trackers, actions, and utilities that can be used for advanced or custom implementations.
16
19
 
@@ -18,13 +21,13 @@ While its main export is the `pulsarEvmAdapter`, it also includes a suite of sta
18
21
 
19
22
  ## ✨ Core Features
20
23
 
21
- - **🔌 Simple Integration:** A single `pulsarEvmAdapter` factory function to easily plug full EVM support into `@tuwaio/pulsar-core`.
22
- - **🎯 Multi-Tracker Support:** Provides distinct, optimized trackers for:
24
+ - **🔌 Seamless Integration:** A single `pulsarEvmAdapter` factory function to integrate full EVM tracking capabilities into `@tuwaio/pulsar-core`.
25
+ - **🎯 Specialized Pipelines:** Distinct, optimized trackers for:
23
26
  - **Standard EVM Transactions** (via `evmTracker` and `viem`).
24
- - **Safe (formerly Gnosis Safe)** Multisig Transactions (via `safeFetcher` and the Safe Transaction Service API).
25
- - **Gelato Relay** Meta-Transactions (via `gelatoFetcher` and the Gelato API).
26
- - **🤖 Automatic Routing:** The adapter automatically detects the correct tracker to use (Safe, Gelato, or standard EVM) based on the transaction context and wallet type.
27
- - **⚡ Built-in Actions:** Includes ready-to-use functions for common user needs like `speedUpTxAction` and `cancelTxAction`.
27
+ - **Safe (formerly Gnosis Safe) Multi-Sigs** (via `safeFetcher` and the Safe Transaction Service API).
28
+ - **Gelato Relayer Pipes** (via `gelatoFetcher` and the Gelato API).
29
+ - **🤖 Automatic Routing:** Automatically resolves the correct pipeline (Safe, Gelato, or standard EVM) based on the transaction context and wallet type.
30
+ - **⚡ Built-in Actions:** Ready-to-use actions for managing transaction state, including `speedUpTxAction` and `cancelTxAction`.
28
31
 
29
32
  ---
30
33
 
package/package.json CHANGED
@@ -1,10 +1,10 @@
1
1
  {
2
2
  "name": "@tuwaio/pulsar-evm",
3
- "version": "0.5.2",
3
+ "version": "0.5.4",
4
4
  "private": false,
5
5
  "author": "Oleksandr Tkach",
6
6
  "license": "Apache-2.0",
7
- "description": "An adapter for the Pulsar Engine that adds support for tracking transactions on EVM-compatible chains. Integrates with Viem and Wagmi.",
7
+ "description": "Tier 4 of the TUWA Ecosystem. Low-level EVM state trackers and lifecycle indexers powered strictly by viem and wagmi primitives.",
8
8
  "main": "./dist/index.js",
9
9
  "module": "./dist/index.mjs",
10
10
  "types": "./dist/index.d.ts",
@@ -49,19 +49,19 @@
49
49
  "zustand": "5.x.x"
50
50
  },
51
51
  "devDependencies": {
52
- "@tuwaio/orbit-core": "^0.2.8",
53
- "@tuwaio/orbit-evm": "^0.2.12",
54
- "@wagmi/core": "^3.4.9",
55
- "dayjs": "^1.11.20",
56
- "immer": "^11.1.8",
52
+ "@tuwaio/orbit-core": "^0.2.12",
53
+ "@tuwaio/orbit-evm": "^0.2.17",
54
+ "@wagmi/core": "^3.5.5",
55
+ "dayjs": "^1.11.21",
56
+ "immer": "^11.1.9",
57
57
  "jsdom": "^29.1.1",
58
58
  "tsup": "^8.5.1",
59
59
  "typescript": "^6.0.3",
60
- "viem": "^2.48.11",
61
- "vitest": "^4.1.5",
62
- "zustand": "^5.0.13",
60
+ "viem": "^2.54.2",
61
+ "vitest": "^4.1.9",
62
+ "zustand": "^5.0.14",
63
63
  "dotenv": "^17.4.2",
64
- "@tuwaio/pulsar-core": "^0.6.3"
64
+ "@tuwaio/pulsar-core": "^0.6.5"
65
65
  },
66
66
  "scripts": {
67
67
  "start": "tsup src/index.ts --watch",