@exodus/solana-lib 3.20.0 → 3.20.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/CHANGELOG.md +8 -0
- package/package.json +2 -2
- package/src/constants.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,14 @@
|
|
|
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.20.1](https://github.com/ExodusMovement/assets/compare/@exodus/solana-lib@3.20.0...@exodus/solana-lib@3.20.1) (2026-02-03)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @exodus/solana-lib
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
6
14
|
## [3.20.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-lib@3.19.3...@exodus/solana-lib@3.20.0) (2026-02-02)
|
|
7
15
|
|
|
8
16
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/solana-lib",
|
|
3
|
-
"version": "3.20.
|
|
3
|
+
"version": "3.20.1",
|
|
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",
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"type": "git",
|
|
49
49
|
"url": "git+https://github.com/ExodusMovement/assets.git"
|
|
50
50
|
},
|
|
51
|
-
"gitHead": "
|
|
51
|
+
"gitHead": "d844d6fa5e5eec3c7b279ee5317f676357eb82b2"
|
|
52
52
|
}
|
package/src/constants.js
CHANGED
|
@@ -43,6 +43,8 @@ export const SOL_DECIMAL = Math.log10(LAMPORTS_PER_SOL)
|
|
|
43
43
|
|
|
44
44
|
export const SUPPORTED_TRANSACTION_VERSIONS = new Set(['legacy', 0])
|
|
45
45
|
|
|
46
|
+
export const EXOD_SHARES_MINT_ADDRESS = '3DBudkWQNbXGAjzEAtpjMKorb76sjozcHCzc8ZtkHDAQ' // EXOD on Solana as a token2022
|
|
47
|
+
|
|
46
48
|
export const SPL_TOKEN_AUTHORITY_TYPE = {
|
|
47
49
|
MINT_TOKENS: 0,
|
|
48
50
|
FREEZE_ACCOUNT: 1,
|