@tuwaio/satellite-solana 0.1.0 → 0.1.2
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/README.md +3 -18
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -33,13 +33,13 @@ Built on top of `@tuwaio/satellite-core` and leveraging `@tuwaio/orbit-solana` f
|
|
|
33
33
|
|
|
34
34
|
```bash
|
|
35
35
|
# Using pnpm (recommended)
|
|
36
|
-
pnpm add @tuwaio/satellite-solana @tuwaio/satellite-core @tuwaio/orbit-core @tuwaio/orbit-solana gill
|
|
36
|
+
pnpm add @tuwaio/satellite-solana @tuwaio/satellite-core @tuwaio/orbit-core @tuwaio/orbit-solana gill immer zustand wagmi/core @wallet-standard/app @wallet-standard/base @wallet-standard/features @wallet-standard/ui @wallet-standard/ui-registry
|
|
37
37
|
|
|
38
38
|
# Using npm
|
|
39
|
-
npm install @tuwaio/satellite-solana @tuwaio/satellite-core @tuwaio/orbit-core @tuwaio/orbit-solana gill
|
|
39
|
+
npm install @tuwaio/satellite-solana @tuwaio/satellite-core @tuwaio/orbit-core @tuwaio/orbit-solana gill immer zustand wagmi/core @wallet-standard/app @wallet-standard/base @wallet-standard/features @wallet-standard/ui @wallet-standard/ui-registry
|
|
40
40
|
|
|
41
41
|
# Using yarn
|
|
42
|
-
yarn add @tuwaio/satellite-solana @tuwaio/satellite-core @tuwaio/orbit-core @tuwaio/orbit-solana gill
|
|
42
|
+
yarn add @tuwaio/satellite-solana @tuwaio/satellite-core @tuwaio/orbit-core @tuwaio/orbit-solana gill immer zustand wagmi/core @wallet-standard/app @wallet-standard/base @wallet-standard/features @wallet-standard/ui @wallet-standard/ui-registry
|
|
43
43
|
```
|
|
44
44
|
---
|
|
45
45
|
|
|
@@ -61,17 +61,6 @@ const adapter = satelliteSolanaAdapter({
|
|
|
61
61
|
});
|
|
62
62
|
```
|
|
63
63
|
|
|
64
|
-
### Mobile Support Setup
|
|
65
|
-
|
|
66
|
-
```typescript
|
|
67
|
-
import { initializeSolanaMobileConnectors } from '@tuwaio/satellite-solana';
|
|
68
|
-
|
|
69
|
-
// Initialize mobile connectors
|
|
70
|
-
initializeSolanaMobileConnectors({
|
|
71
|
-
rpcUrls: solanaRPCUrls,
|
|
72
|
-
appName: 'Your dApp Name'
|
|
73
|
-
});
|
|
74
|
-
```
|
|
75
64
|
---
|
|
76
65
|
|
|
77
66
|
### Core Components
|
|
@@ -121,7 +110,3 @@ If you find this library useful, please consider supporting its development. Eve
|
|
|
121
110
|
## 📄 License
|
|
122
111
|
|
|
123
112
|
This project is licensed under the **Apache-2.0 License** - see the [LICENSE](./LICENSE) file for details.
|
|
124
|
-
|
|
125
|
-
## 👥 Contributors
|
|
126
|
-
|
|
127
|
-
- **Oleksandr Tkach** - [GitHub](https://github.com/Argeare5)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tuwaio/satellite-solana",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "Oleksandr Tkach",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -52,8 +52,8 @@
|
|
|
52
52
|
"@wallet-standard/ui-registry": "1.x.x"
|
|
53
53
|
},
|
|
54
54
|
"devDependencies": {
|
|
55
|
-
"@tuwaio/orbit-core": "^0.1.
|
|
56
|
-
"@tuwaio/orbit-solana": "^0.1.
|
|
55
|
+
"@tuwaio/orbit-core": "^0.1.2",
|
|
56
|
+
"@tuwaio/orbit-solana": "^0.1.1",
|
|
57
57
|
"@wallet-standard/app": "^1.1.0",
|
|
58
58
|
"@wallet-standard/base": "^1.1.0",
|
|
59
59
|
"@wallet-standard/features": "^1.1.0",
|
|
@@ -61,13 +61,13 @@
|
|
|
61
61
|
"@wallet-standard/ui": "^1.0.1",
|
|
62
62
|
"@wallet-standard/ui-registry": "^1.0.1",
|
|
63
63
|
"gill": "^0.12.0",
|
|
64
|
-
"immer": "^10.
|
|
64
|
+
"immer": "^10.2.0",
|
|
65
65
|
"jsdom": "^27.0.1",
|
|
66
66
|
"tsup": "^8.5.0",
|
|
67
67
|
"typescript": "^5.9.3",
|
|
68
|
-
"vitest": "^
|
|
68
|
+
"vitest": "^4.0.4",
|
|
69
69
|
"zustand": "^5.0.8",
|
|
70
|
-
"@tuwaio/satellite-core": "^0.1.
|
|
70
|
+
"@tuwaio/satellite-core": "^0.1.2"
|
|
71
71
|
},
|
|
72
72
|
"scripts": {
|
|
73
73
|
"start": "tsup src/index.ts --watch",
|