@exodus/solana-plugin 1.14.2 → 1.15.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 +17 -0
- package/package.json +10 -9
- package/src/create-asset.js +3 -3
- package/src/index.js +2 -2
- package/src/web3/index.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,23 @@
|
|
|
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.15.0](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.14.3...@exodus/solana-plugin@1.15.0) (2024-09-11)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* switch solana to ESM ([#3412](https://github.com/ExodusMovement/assets/issues/3412)) ([c1d30ce](https://github.com/ExodusMovement/assets/commit/c1d30ce752c9d2aa0667f98a8b90a55396fec286))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
## [1.14.3](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.14.2...@exodus/solana-plugin@1.14.3) (2024-08-26)
|
|
16
|
+
|
|
17
|
+
**Note:** Version bump only for package @exodus/solana-plugin
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
6
23
|
## [1.14.2](https://github.com/ExodusMovement/assets/compare/@exodus/solana-plugin@1.14.1...@exodus/solana-plugin@1.14.2) (2024-08-21)
|
|
7
24
|
|
|
8
25
|
**Note:** Version bump only for package @exodus/solana-plugin
|
package/package.json
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/solana-plugin",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.15.0",
|
|
4
4
|
"description": "Exodus internal Solana asset plugin",
|
|
5
|
+
"type": "module",
|
|
5
6
|
"main": "src/index.js",
|
|
6
7
|
"files": [
|
|
7
8
|
"src",
|
|
@@ -15,17 +16,17 @@
|
|
|
15
16
|
"access": "restricted"
|
|
16
17
|
},
|
|
17
18
|
"scripts": {
|
|
18
|
-
"test": "run -T exodus-test --jest
|
|
19
|
-
"lint": "run -T
|
|
19
|
+
"test": "run -T exodus-test --jest",
|
|
20
|
+
"lint": "run -T eslintc .",
|
|
20
21
|
"lint:fix": "yarn lint --fix"
|
|
21
22
|
},
|
|
22
23
|
"dependencies": {
|
|
23
|
-
"@exodus/assets": "^
|
|
24
|
+
"@exodus/assets": "^11.0.0",
|
|
24
25
|
"@exodus/bip44-constants": "^195.0.0",
|
|
25
|
-
"@exodus/solana-api": "^3.
|
|
26
|
-
"@exodus/solana-lib": "^3.
|
|
27
|
-
"@exodus/solana-meta": "^
|
|
28
|
-
"@exodus/web3-solana-utils": "^2.2.
|
|
26
|
+
"@exodus/solana-api": "^3.11.0",
|
|
27
|
+
"@exodus/solana-lib": "^3.6.0",
|
|
28
|
+
"@exodus/solana-meta": "^2.0.0",
|
|
29
|
+
"@exodus/web3-solana-utils": "^2.2.5",
|
|
29
30
|
"minimalistic-assert": "^1.0.1",
|
|
30
31
|
"ms": "^2.1.3"
|
|
31
32
|
},
|
|
@@ -39,5 +40,5 @@
|
|
|
39
40
|
"type": "git",
|
|
40
41
|
"url": "git+https://github.com/ExodusMovement/assets.git"
|
|
41
42
|
},
|
|
42
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "b41d4471ed86010b8eed3e22af9503f01e5ff595"
|
|
43
44
|
}
|
package/src/create-asset.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { connectAssetsList } from '@exodus/assets'
|
|
2
|
-
import bip44Constants from '@exodus/bip44-constants/by-ticker'
|
|
2
|
+
import bip44Constants from '@exodus/bip44-constants/by-ticker.js'
|
|
3
3
|
import {
|
|
4
4
|
createAccountState,
|
|
5
5
|
createAndBroadcastTXFactory,
|
|
@@ -25,8 +25,8 @@ import {
|
|
|
25
25
|
} from '@exodus/solana-lib'
|
|
26
26
|
import ms from 'ms'
|
|
27
27
|
|
|
28
|
-
import { createGetBalanceForAddress } from './get-balance-for-address'
|
|
29
|
-
import { createWeb3API } from './web3'
|
|
28
|
+
import { createGetBalanceForAddress } from './get-balance-for-address.js'
|
|
29
|
+
import { createWeb3API } from './web3/index.js'
|
|
30
30
|
|
|
31
31
|
const DEFAULT_ACCOUNT_RESERVE = 0.01
|
|
32
32
|
const DEFAULT_LOW_BALANCE = 0.01
|
package/src/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import serverApi from '@exodus/solana-api'
|
|
2
2
|
import assetList from '@exodus/solana-meta'
|
|
3
3
|
|
|
4
|
-
import { createSolanaAssetFactory } from './create-asset'
|
|
4
|
+
import { createSolanaAssetFactory } from './create-asset.js'
|
|
5
5
|
|
|
6
|
-
export * from './create-asset' // for solanatestnet and solanadevnet
|
|
6
|
+
export * from './create-asset.js' // for solanatestnet and solanadevnet
|
|
7
7
|
|
|
8
8
|
const createAsset = createSolanaAssetFactory({ assetList, serverApi })
|
|
9
9
|
|
package/src/web3/index.js
CHANGED