Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 5d34c08

Browse files
authoredJan 7, 2025··
Release (#640)
* u * u * f * u * u * u * u * u
1 parent 1274bd9 commit 5d34c08

File tree

7 files changed

+35
-44
lines changed

7 files changed

+35
-44
lines changed
 

‎apps/connector/README.md

+13-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Status Desktop Wallet extended to decentralized applications in your browser.
66

77
Depends on:
88

9-
- Status Desktop https://github.com/status-im/status-desktop/tree/release/2.30.x
9+
- **[Status Desktop](https://github.com/status-im/status-desktop/releases)** >=2.32.x
1010

1111
Tested with these browsers:
1212

@@ -87,6 +87,18 @@ Firefox Developer Edition > Tools > Add-ons and Themes > click on gear icon (Too
8787

8888
> Note: Does not reload automatically, requires build and load on change.
8989
90+
### Status Desktop
91+
92+
#### Run
93+
94+
##### macOS
95+
96+
```bash
97+
FLAG_CONNECTOR_ENABLED=1 '/Volumes/Status Desktop/Status.app/Contents/MacOS/nim_status_client'
98+
```
99+
100+
> Tip: Point to the installer package location without dropping and replacing current app.
101+
90102
## Testing
91103

92104
Download latest build from last merged PR or build from source. To use the extension see the load steps from [Development](#development) section.

‎apps/connector/eslint.config.mjs

+7-3
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ export default [
55
...configs,
66
...tailwindcssConfigs,
77
{
8-
files: ['*.ts', '*.tsx'],
8+
files: ['**/*.ts', '**/*.tsx'],
99
rules: {
1010
'no-constant-binary-expression': 'error',
1111
'no-restricted-globals': ['error', 'process'],
@@ -15,10 +15,11 @@ export default [
1515
img: [],
1616
},
1717
],
18+
'no-empty': 'warn',
1819
},
1920
},
2021
{
21-
files: ['*.mjs'],
22+
files: ['**/*.mjs'],
2223
languageOptions: {
2324
parserOptions: {
2425
ecmaVersion: 'latest',
@@ -27,11 +28,14 @@ export default [
2728
},
2829
},
2930
{
30-
files: ['*.js'],
31+
files: ['**/*.js'],
3132
languageOptions: {
3233
parserOptions: {
3334
ecmaVersion: 'latest',
3435
},
3536
},
3637
},
38+
{
39+
ignores: ['.plasmo'],
40+
},
3741
]

‎apps/connector/package.json

+7-4
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,14 @@
5858
},
5959
"manifest": {
6060
"manifest_version": 3,
61-
"name": "A wallet connector by Status BETA",
62-
"description": "THIS EXTENSION IS FOR BETA TESTING. Status Desktop Wallet extended to decentralised applications in your browser.",
61+
"name": "A wallet connector by Status",
62+
"description": "Status Desktop Wallet extended to decentralised applications in your browser.",
63+
"externally_connectable": {
64+
"ids": [],
65+
"matches": []
66+
},
6367
"host_permissions": [
64-
"https://*/*",
65-
"https://chromewebstore.google.com/*"
68+
"https://*/*"
6669
],
6770
"permissions": [
6871
"storage"

‎apps/connector/src/contents/provider.ts

+6-16
Original file line numberDiff line numberDiff line change
@@ -96,24 +96,18 @@ export class Provider {
9696
this.#listeners.get('connect')?.({ chainId: '0x1' })
9797
this.#listeners.get('connected')?.({ chainId: '0x1' })
9898
this.connected = true
99-
100-
console.log('connected::')
10199
}
102100

103101
if (method === 'wallet_switchEthereumChain') {
104102
this.#listeners.get('chainChanged')?.(message.data)
105103
this.#listeners.get('networkChanged')?.(message.data)
106-
107-
console.log('chainChanged::')
108104
}
109105

110106
resolve(message.data)
111107

112108
return
113109
}
114110
case 'status:proxy:error': {
115-
console.error(message.error)
116-
117111
// note: for those dApps that make call after having permissions revoked
118112
if (
119113
message.error.message === 'dApp is not permitted by user' &&
@@ -154,21 +148,15 @@ export class Provider {
154148
}
155149

156150
public on(event: Event, handler: (args: unknown) => void): void {
157-
console.log('on::', event, handler)
158-
159151
this.#listeners.set(event, handler)
160152
}
161153

162154
/** @deprecated */
163-
public async close(...args: unknown[]): Promise<void> {
164-
console.log('close::', args)
165-
155+
public async close(): Promise<void> {
166156
this.disconnect()
167157
}
168158

169-
public removeListener(event: Event, handler: (args: unknown) => void): void {
170-
console.log('removeListener::', event, handler)
171-
159+
public removeListener(event: Event): void {
172160
// note: not all dapps remove these on disconnect
173161
if (event === 'close' || event === 'disconnect') {
174162
this.disconnect()
@@ -177,15 +165,17 @@ export class Provider {
177165
this.#listeners.delete(event)
178166
}
179167

168+
public async enable() {
169+
return true
170+
}
171+
180172
private async disconnect() {
181173
if (!this.connected) {
182174
return
183175
}
184176

185177
this.connected = false
186178

187-
console.log('disconnect::')
188-
189179
await this.request({
190180
method: 'wallet_revokePermissions',
191181
params: [

‎apps/connector/src/contents/proxy.ts

-4
Original file line numberDiff line numberDiff line change
@@ -39,17 +39,13 @@ const handleMessage = async (event: MessageEvent) => {
3939
}
4040

4141
try {
42-
console.log('request::', message.data)
43-
4442
const response = await desktopClient.send({
4543
...message.data,
4644
name: window.location.hostname,
4745
url: window.origin,
4846
iconUrl: getFaviconUrl() ?? '',
4947
})
5048

51-
console.log('response::', response)
52-
5349
event.ports[0].postMessage({
5450
type: 'status:proxy:success',
5551
data: response,

‎apps/connector/src/hooks/use-local-storage.tsx

+2-5
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,7 @@ export function useLocalStorage<T>(
1010
try {
1111
const item = window.localStorage.getItem(key)
1212
setStoredValue(item ? JSON.parse(item) : initialValue)
13-
} catch (error) {
14-
console.log(error)
13+
} catch {
1514
setStoredValue(initialValue)
1615
}
1716
}, [])
@@ -40,9 +39,7 @@ export function useLocalStorage<T>(
4039
setStoredValue(valueToStore)
4140
window.localStorage.setItem(key, JSON.stringify(valueToStore))
4241
window.dispatchEvent(new Event('storage'))
43-
} catch (error) {
44-
console.log(error)
45-
}
42+
} catch {}
4643
}
4744

4845
return [storedValue, setValue]

‎apps/connector/src/lib/desktop-client.ts

-11
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ export class DesktopClient {
1919
return
2020
}
2121

22-
console.log('stop::')
2322
this.#rpcClient?.destroy()
2423
this.#rpcClient = null
2524

@@ -28,7 +27,6 @@ export class DesktopClient {
2827

2928
public async send(args: DesktopRequestArguments) {
3029
if (!this.#rpcClient) {
31-
console.log('start::')
3230
this.#rpcClient = new WebSocketProvider(
3331
config.desktop.rpc.url,
3432
'mainnet',
@@ -43,11 +41,6 @@ export class DesktopClient {
4341

4442
await waitUntilOpen(this.#rpcClient.websocket)
4543

46-
console.log('client::', {
47-
method: config.desktop.rpc.method,
48-
params: [JSON.stringify(args)],
49-
})
50-
5144
return await this.#rpcClient.send(config.desktop.rpc.method, [
5245
JSON.stringify(args),
5346
])
@@ -78,10 +71,6 @@ async function waitUntilOpen(websocket: WebSocketLike) {
7871
reject(new Error('Timed out to connect to the RPC server'))
7972
}, 30 * 1000)
8073

81-
if (websocket.readyState === WebSocket.CONNECTING) {
82-
console.info('Waiting for the RPC server to connect')
83-
}
84-
8574
const onopen = websocket.onopen?.bind(websocket)
8675
websocket.onopen = event => {
8776
onopen?.(event)

0 commit comments

Comments
 (0)
Please sign in to comment.