@exodus/solana-lib 3.12.2 → 3.13.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 +4 -3
- package/src/fee-data/index.js +1 -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
|
+
## [3.13.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-lib@3.12.2...@exodus/solana-lib@3.13.0) (2025-10-14)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
* feat: integrate Solana fee payer service (#6615)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
6
16
|
## [3.12.2](https://github.com/ExodusMovement/assets/compare/@exodus/solana-lib@3.12.1...@exodus/solana-lib@3.12.2) (2025-09-29)
|
|
7
17
|
|
|
8
18
|
**Note:** Version bump only for package @exodus/solana-lib
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/solana-lib",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.13.0",
|
|
4
4
|
"description": "Solana utils, such as for cryptography, address encoding/decoding, transaction building, etc.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -12,7 +12,8 @@
|
|
|
12
12
|
"author": "Exodus Movement, Inc.",
|
|
13
13
|
"license": "MIT",
|
|
14
14
|
"publishConfig": {
|
|
15
|
-
"access": "public"
|
|
15
|
+
"access": "public",
|
|
16
|
+
"provenance": false
|
|
16
17
|
},
|
|
17
18
|
"scripts": {
|
|
18
19
|
"test": "run -T exodus-test --jest",
|
|
@@ -46,5 +47,5 @@
|
|
|
46
47
|
"type": "git",
|
|
47
48
|
"url": "git+https://github.com/ExodusMovement/assets.git"
|
|
48
49
|
},
|
|
49
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "5acad66ba9ec02ffaee656516f72a24ff8a247fb"
|
|
50
51
|
}
|
package/src/fee-data/index.js
CHANGED
|
@@ -8,6 +8,7 @@ export const createFeeData = ({ asset }) =>
|
|
|
8
8
|
priorityFee: 1_000_000,
|
|
9
9
|
fuelThreshold: `0.000015 ${asset.ticker}`,
|
|
10
10
|
computeUnitsMultiplier: 1, // compute units buffer, increasing to > 1 can cause Dust issues.
|
|
11
|
+
enableFeePayer: false,
|
|
11
12
|
},
|
|
12
13
|
mainKey: 'fee',
|
|
13
14
|
currency: asset.currency,
|