@exodus/solana-lib 3.15.2 → 3.15.3
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 +2 -2
- package/src/tx/verify-only-fee-payer-changed.js +12 -2
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.15.3](https://github.com/ExodusMovement/assets/compare/@exodus/solana-lib@3.15.1...@exodus/solana-lib@3.15.3) (2025-11-06)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
* fix: overly strict transaction comparison in fee payer verification (#6785)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
6
16
|
## [3.15.2](https://github.com/ExodusMovement/assets/compare/@exodus/solana-lib@3.15.1...@exodus/solana-lib@3.15.2) (2025-11-04)
|
|
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.15.
|
|
3
|
+
"version": "3.15.3",
|
|
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",
|
|
@@ -47,5 +47,5 @@
|
|
|
47
47
|
"type": "git",
|
|
48
48
|
"url": "git+https://github.com/ExodusMovement/assets.git"
|
|
49
49
|
},
|
|
50
|
-
"gitHead": "
|
|
50
|
+
"gitHead": "4ed7fb1a57f5d2728f3e491f023144a4ccf3a1d4"
|
|
51
51
|
}
|
|
@@ -122,14 +122,24 @@ export function verifyOnlyFeePayerChanged(beforeTx, afterTx) {
|
|
|
122
122
|
lodash.isEqual(
|
|
123
123
|
{
|
|
124
124
|
...beforeTx.message,
|
|
125
|
-
header: {
|
|
125
|
+
header: {
|
|
126
|
+
...beforeTx.message.header,
|
|
127
|
+
numRequiredSignatures: null,
|
|
128
|
+
numReadonlySignedAccounts: null,
|
|
129
|
+
numReadonlyUnsignedAccounts: null,
|
|
130
|
+
},
|
|
126
131
|
accountKeys: null,
|
|
127
132
|
instructions: null,
|
|
128
133
|
indexToProgramIds: null,
|
|
129
134
|
},
|
|
130
135
|
{
|
|
131
136
|
...afterTx.message,
|
|
132
|
-
header: {
|
|
137
|
+
header: {
|
|
138
|
+
...afterTx.message.header,
|
|
139
|
+
numRequiredSignatures: null,
|
|
140
|
+
numReadonlySignedAccounts: null,
|
|
141
|
+
numReadonlyUnsignedAccounts: null,
|
|
142
|
+
},
|
|
133
143
|
accountKeys: null,
|
|
134
144
|
instructions: null,
|
|
135
145
|
indexToProgramIds: null,
|