@exodus/solana-plugin 1.12.0 → 1.12.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 +9 -0
- package/package.json +2 -2
- package/src/create-asset.js +3 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,15 @@
|
|
|
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
|
+
## [1.12.1](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.12.0...@exodus/solana-plugin@1.12.1) (2024-06-18)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* solana getFeeAsync compatibility ([#2602](https://github.com/ExodusMovement/assets/issues/2602)) ([0e4d216](https://github.com/ExodusMovement/assets/commit/0e4d216e4bbde3a3907dc4810c1a4096596afc7e))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
6
15
|
## [1.12.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.11.0...@exodus/solana-plugin@1.12.0) (2024-06-14)
|
|
7
16
|
|
|
8
17
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/solana-plugin",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.1",
|
|
4
4
|
"description": "Exodus internal Solana asset plugin",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"files": [
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"type": "git",
|
|
40
40
|
"url": "git+https://github.com/ExodusMovement/assets.git"
|
|
41
41
|
},
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "96f19771840d6da40230440ffad50002d2633456"
|
|
43
43
|
}
|
package/src/create-asset.js
CHANGED
|
@@ -166,7 +166,9 @@ export const createSolanaAssetFactory =
|
|
|
166
166
|
getBalanceForAddress: createGetBalanceForAddress({ api: serverApi, asset: base }),
|
|
167
167
|
getDefaultAddressPath: () => defaultAddressPath,
|
|
168
168
|
getFee: (args) => args?.feeData?.fee || feeData.fee,
|
|
169
|
-
getFeeAsync: async ({ feeData }) =>
|
|
169
|
+
getFeeAsync: async ({ feeData }) => {
|
|
170
|
+
return { fee: feeData.fee }
|
|
171
|
+
},
|
|
170
172
|
getFeeData: () => feeData,
|
|
171
173
|
getSupportedPurposes: () => [44],
|
|
172
174
|
getKeyIdentifier: createGetKeyIdentifier({ bip44, assetName: base.name }),
|