@rango-dev/provider-phantom 0.44.1-next.4 → 0.44.1-next.6
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 +6 -6
- package/readme.md +25 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@rango-dev/provider-phantom",
|
|
3
|
-
"version": "0.44.1-next.
|
|
3
|
+
"version": "0.44.1-next.6",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"source": "./src/mod.ts",
|
|
@@ -24,13 +24,13 @@
|
|
|
24
24
|
"@bitcoinerlab/secp256k1": "^1.2.0",
|
|
25
25
|
"@mysten/sui": "^1.21.2",
|
|
26
26
|
"@mysten/wallet-standard": "^0.13.26",
|
|
27
|
-
"@rango-dev/signer-solana": "^0.38.1-next.
|
|
28
|
-
"@rango-dev/signer-sui": "^0.2.1-next.
|
|
29
|
-
"@rango-dev/wallets-shared": "^0.43.1-next.
|
|
27
|
+
"@rango-dev/signer-solana": "^0.38.1-next.1",
|
|
28
|
+
"@rango-dev/signer-sui": "^0.2.1-next.1",
|
|
29
|
+
"@rango-dev/wallets-shared": "^0.43.1-next.5",
|
|
30
30
|
"bitcoinjs-lib": "^6.1.7",
|
|
31
|
-
"rango-types": "^0.1.
|
|
31
|
+
"rango-types": "^0.1.83"
|
|
32
32
|
},
|
|
33
33
|
"publishConfig": {
|
|
34
34
|
"access": "public"
|
|
35
35
|
}
|
|
36
|
-
}
|
|
36
|
+
}
|
package/readme.md
CHANGED
|
@@ -1 +1,25 @@
|
|
|
1
|
-
#
|
|
1
|
+
# Phantom Provider
|
|
2
|
+
Phantom integration for hub.
|
|
3
|
+
[Homepage](https://phantom.com/) | [Docs](https://docs.phantom.com/)
|
|
4
|
+
|
|
5
|
+
More about implementation status can be found [here](../readme.md).
|
|
6
|
+
|
|
7
|
+
## Implementation notes/limitation
|
|
8
|
+
|
|
9
|
+
### Group
|
|
10
|
+
|
|
11
|
+
#### ⚠️ UTXO
|
|
12
|
+
Only supports Bitcoin.
|
|
13
|
+
|
|
14
|
+
#### ⚠️ EVM
|
|
15
|
+
Only supports Ethereum, Base, and Polygon.
|
|
16
|
+
|
|
17
|
+
### Feature
|
|
18
|
+
|
|
19
|
+
#### ⚠️ Auto Connect
|
|
20
|
+
On Sui, Phantom uses Solana's auto-connect mechanism.
|
|
21
|
+
This means if Solana is not connected simultaneously, the auto-connect feature on Sui will not work properly.
|
|
22
|
+
|
|
23
|
+
---
|
|
24
|
+
|
|
25
|
+
More wallet information can be found in [wallets.md](../wallets.md).
|