@tuwaio/pulsar-evm 0.1.0 → 0.1.1
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/README.md +1 -2
- package/package.json +7 -7
package/README.md
CHANGED
|
@@ -25,7 +25,6 @@ While its main export is the `evmAdapter`, it also includes a suite of standalon
|
|
|
25
25
|
- **Gelato Relay** Meta-Transactions (via the Gelato API).
|
|
26
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
27
|
- **⚡ Built-in Actions:** Includes ready-to-use functions for common user needs like `speedUpTxAction` and `cancelTxAction`.
|
|
28
|
-
- **🛠️ Utility Suite:** Exports a rich set of helpers, including **ENS resolvers** (`getName`, `getAvatar`) and an explorer link generator (`selectEvmTxExplorerLink`).
|
|
29
28
|
|
|
30
29
|
---
|
|
31
30
|
|
|
@@ -110,7 +109,7 @@ function SpeedUpButton({ txKey }) {
|
|
|
110
109
|
tx: stuckTransaction,
|
|
111
110
|
});
|
|
112
111
|
console.log('Transaction sped up with new hash:', newTxHash);
|
|
113
|
-
// Pulsar's `
|
|
112
|
+
// Pulsar's `executeTxAction` will automatically add and track this new transaction
|
|
114
113
|
// if you integrate it with the action that calls this.
|
|
115
114
|
} catch (error) {
|
|
116
115
|
console.error('Failed to speed up transaction:', error);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tuwaio/pulsar-evm",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "Oleksandr Tkach",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -49,18 +49,18 @@
|
|
|
49
49
|
"zustand": "5.x.x"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
|
-
"@tuwaio/orbit-core": "^0.1.
|
|
53
|
-
"@tuwaio/orbit-evm": "^0.1.
|
|
52
|
+
"@tuwaio/orbit-core": "^0.1.1",
|
|
53
|
+
"@tuwaio/orbit-evm": "^0.1.1",
|
|
54
54
|
"@wagmi/core": "^2.22.1",
|
|
55
55
|
"dayjs": "^1.11.18",
|
|
56
|
-
"immer": "^10.
|
|
56
|
+
"immer": "^10.2.0",
|
|
57
57
|
"jsdom": "^27.0.1",
|
|
58
58
|
"tsup": "^8.5.0",
|
|
59
59
|
"typescript": "^5.9.3",
|
|
60
|
-
"viem": "^2.38.
|
|
61
|
-
"vitest": "^
|
|
60
|
+
"viem": "^2.38.4",
|
|
61
|
+
"vitest": "^4.0.3",
|
|
62
62
|
"zustand": "^5.0.8",
|
|
63
|
-
"@tuwaio/pulsar-core": "^0.2.
|
|
63
|
+
"@tuwaio/pulsar-core": "^0.2.1"
|
|
64
64
|
},
|
|
65
65
|
"scripts": {
|
|
66
66
|
"start": "tsup src/index.ts --watch",
|