solariskit 1.4.0 → 1.5.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/dist/{WalletButton-BiMfdrFz.d.ts → ChainSelectButton-COIW5SBO.d.ts} +4 -141
- package/dist/RainbowKitProvider-CKy7nmFG.js +271 -0
- package/dist/WalletButton-B3e-uEwx.d.ts +126 -0
- package/dist/components/index.d.ts +2 -1
- package/dist/components/index.js +2 -1
- package/dist/index.css +47 -47
- package/dist/index.d.ts +8 -3
- package/dist/index.js +3 -2
- package/dist/{injectedWallet-Bq0gF2WF.js → injectedWallet-CnP8-uv5.js} +19 -1
- package/dist/solana/index.d.ts +156 -0
- package/dist/solana/index.js +601 -0
- package/dist/{WalletButton-D8U16Q_4.js → useFingerprint-BoVxC_1f.js} +4560 -4583
- package/dist/{walletConnectors-C02JPPxf.js → walletConnectors-DwPMzHor.js} +1 -1
- package/dist/wallets/walletConnectors/index.js +1 -1
- package/package.json +16 -1
|
@@ -98,7 +98,7 @@ function getInjectedConnector({ flag, namespace, target }) {
|
|
|
98
98
|
const injectedWallet = () => ({
|
|
99
99
|
id: "injected",
|
|
100
100
|
name: "Browser Wallet",
|
|
101
|
-
iconUrl: async () => (await import("./injectedWallet-
|
|
101
|
+
iconUrl: async () => (await import("./injectedWallet-CnP8-uv5.js").then((n) => n.n)).default,
|
|
102
102
|
iconBackground: "#fff",
|
|
103
103
|
createConnector: getInjectedConnector({})
|
|
104
104
|
});
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
"use client";
|
|
2
|
-
import { a as injectedWallet, n as safeWallet, o as base, r as metaMaskWallet, s as baseAccount, t as walletConnectWallet } from "../../walletConnectors-
|
|
2
|
+
import { a as injectedWallet, n as safeWallet, o as base, r as metaMaskWallet, s as baseAccount, t as walletConnectWallet } from "../../walletConnectors-DwPMzHor.js";
|
|
3
3
|
|
|
4
4
|
export { base, baseAccount, injectedWallet, metaMaskWallet, safeWallet, walletConnectWallet };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "solariskit",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.5.0",
|
|
4
4
|
"description": "The best way to connect a wallet",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"blockchain",
|
|
@@ -29,6 +29,11 @@
|
|
|
29
29
|
"exports": {
|
|
30
30
|
".": "./dist/index.js",
|
|
31
31
|
"./styles.css": "./dist/index.css",
|
|
32
|
+
"./solana": {
|
|
33
|
+
"types": "./dist/solana/index.d.ts",
|
|
34
|
+
"import": "./dist/solana/index.js"
|
|
35
|
+
},
|
|
36
|
+
"./solana/styles.css": "./dist/index.css",
|
|
32
37
|
"./wallets": "./dist/wallets/walletConnectors/index.js",
|
|
33
38
|
"./components": "./dist/components/index.js"
|
|
34
39
|
},
|
|
@@ -47,6 +52,8 @@
|
|
|
47
52
|
"@rollup/plugin-replace": "^6.0.3",
|
|
48
53
|
"@safe-global/safe-apps-provider": "^0.18.6",
|
|
49
54
|
"@safe-global/safe-apps-sdk": "^9.1.0",
|
|
55
|
+
"@solana/connector": "^0.2.4",
|
|
56
|
+
"@solana/kit": "^5.5.1",
|
|
50
57
|
"@tanstack/react-query": "^5.101.2",
|
|
51
58
|
"@testing-library/dom": "^10.4.1",
|
|
52
59
|
"@testing-library/jest-dom": "^6.9.1",
|
|
@@ -81,6 +88,8 @@
|
|
|
81
88
|
"@base-org/account": "^2.5.1",
|
|
82
89
|
"@safe-global/safe-apps-provider": "^0.18.6",
|
|
83
90
|
"@safe-global/safe-apps-sdk": "^9.1.0",
|
|
91
|
+
"@solana/connector": "^0.2.4",
|
|
92
|
+
"@solana/kit": "^5.5.1",
|
|
84
93
|
"@tanstack/react-query": ">=5.0.0",
|
|
85
94
|
"@walletconnect/ethereum-provider": "^2.21.1",
|
|
86
95
|
"react": "^18 || ^19",
|
|
@@ -98,6 +107,12 @@
|
|
|
98
107
|
"@safe-global/safe-apps-sdk": {
|
|
99
108
|
"optional": true
|
|
100
109
|
},
|
|
110
|
+
"@solana/connector": {
|
|
111
|
+
"optional": true
|
|
112
|
+
},
|
|
113
|
+
"@solana/kit": {
|
|
114
|
+
"optional": true
|
|
115
|
+
},
|
|
101
116
|
"@walletconnect/ethereum-provider": {
|
|
102
117
|
"optional": true
|
|
103
118
|
}
|