@exodus/ethereum-api 8.26.1 → 8.27.0
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/CHANGELOG.md +10 -0
- package/package.json +3 -3
- package/src/create-asset.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,16 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [8.27.0](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.26.1...@exodus/ethereum-api@8.27.0) (2025-01-22)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
* feat: add activity txs for ethereum (#4875)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
6
16
|
## [8.26.1](https://github.com/ExodusMovement/assets/compare/@exodus/ethereum-api@8.26.0...@exodus/ethereum-api@8.26.1) (2025-01-22)
|
|
7
17
|
|
|
8
18
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/ethereum-api",
|
|
3
|
-
"version": "8.
|
|
3
|
+
"version": "8.27.0",
|
|
4
4
|
"description": "Transaction monitors, fee monitors, RPC with the blockchain node, and other networking code for Ethereum and EVM-based blockchains",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"@exodus/bip44-constants": "^195.0.0",
|
|
29
29
|
"@exodus/crypto": "^1.0.0-rc.13",
|
|
30
30
|
"@exodus/currency": "^6.0.1",
|
|
31
|
-
"@exodus/ethereum-lib": "^5.
|
|
31
|
+
"@exodus/ethereum-lib": "^5.9.0",
|
|
32
32
|
"@exodus/ethereum-meta": "^2.1.5",
|
|
33
33
|
"@exodus/ethereumholesky-meta": "^2.0.0",
|
|
34
34
|
"@exodus/ethereumjs": "^1.0.0",
|
|
@@ -64,5 +64,5 @@
|
|
|
64
64
|
"type": "git",
|
|
65
65
|
"url": "git+https://github.com/ExodusMovement/assets.git"
|
|
66
66
|
},
|
|
67
|
-
"gitHead": "
|
|
67
|
+
"gitHead": "92c1dbc059594e5a127d9052012a4422fc0f1a12"
|
|
68
68
|
}
|
package/src/create-asset.js
CHANGED
|
@@ -8,6 +8,7 @@ import {
|
|
|
8
8
|
DEFAULT_FEE_MONITOR_INTERVAL,
|
|
9
9
|
encodePrivate,
|
|
10
10
|
encodePublicFactory,
|
|
11
|
+
getActivityTxs,
|
|
11
12
|
hasChecksum,
|
|
12
13
|
signHardwareFactory,
|
|
13
14
|
signMessage,
|
|
@@ -243,6 +244,7 @@ export const createAssetFactory = ({
|
|
|
243
244
|
: originalGetFee
|
|
244
245
|
|
|
245
246
|
const api = {
|
|
247
|
+
getActivityTxs,
|
|
246
248
|
addressHasHistory,
|
|
247
249
|
broadcastTx: (...args) => server.sendRawTransaction(...args),
|
|
248
250
|
createAccountState: () => accountStateClass,
|