@exodus/solana-plugin 1.10.0 → 1.10.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/package.json +4 -4
- package/src/create-asset.js +0 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@exodus/solana-plugin",
|
|
3
|
-
"version": "1.10.
|
|
3
|
+
"version": "1.10.1",
|
|
4
4
|
"description": "Exodus internal Solana asset plugin",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"files": [
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@exodus/assets": "^9.0.1",
|
|
23
23
|
"@exodus/bip44-constants": "^195.0.0",
|
|
24
|
-
"@exodus/solana-api": "^3.
|
|
25
|
-
"@exodus/solana-lib": "^3.
|
|
24
|
+
"@exodus/solana-api": "^3.6.1",
|
|
25
|
+
"@exodus/solana-lib": "^3.4.2",
|
|
26
26
|
"@exodus/solana-meta": "^1.0.7",
|
|
27
27
|
"@exodus/web3-solana-utils": "^1.65.0",
|
|
28
28
|
"minimalistic-assert": "^1.0.1",
|
|
@@ -31,5 +31,5 @@
|
|
|
31
31
|
"devDependencies": {
|
|
32
32
|
"@exodus/assets-testing": "^1.0.0"
|
|
33
33
|
},
|
|
34
|
-
"gitHead": "
|
|
34
|
+
"gitHead": "9d24eb58422692fc1acdcb834061d02b2632801d"
|
|
35
35
|
}
|
package/src/create-asset.js
CHANGED
|
@@ -6,7 +6,6 @@ import {
|
|
|
6
6
|
getEncodedSecretKey,
|
|
7
7
|
fillTransactionWithEmptySignatureSlot,
|
|
8
8
|
isValidAddress,
|
|
9
|
-
parseUnsignedTx,
|
|
10
9
|
prepareForSigning,
|
|
11
10
|
signUnsignedTx,
|
|
12
11
|
signUnsignedTxWithSigner,
|
|
@@ -160,7 +159,6 @@ export const createSolanaAssetFactory =
|
|
|
160
159
|
.map(createToken),
|
|
161
160
|
getUnstakingFee,
|
|
162
161
|
hasFeature: (feature) => !!features[feature], // @deprecated use api.features instead
|
|
163
|
-
parseUnsignedTx: (unsignedTx) => parseUnsignedTx({ asset: base, unsignedTx }),
|
|
164
162
|
sendTx,
|
|
165
163
|
signTx: ({ unsignedTx, privateKey, signer }) =>
|
|
166
164
|
signer
|