-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
info.plist
425 lines (400 loc) · 13.2 KB
/
info.plist
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>bundleid</key>
<string>zarifpour.etherscan</string>
<key>category</key>
<string>Internet</string>
<key>connections</key>
<dict>
<key>B2496DEF-C902-4D76-BD7C-DC86D9DB4C04</key>
<array>
<dict>
<key>destinationuid</key>
<string>882A5947-06A0-49ED-8443-D55F88AEF74A</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
<key>BBFB364B-0164-4127-823F-FB71BB608C05</key>
<array>
<dict>
<key>destinationuid</key>
<string>51C6A401-41A1-461F-9C42-C904FA75DC36</string>
<key>modifiers</key>
<integer>0</integer>
<key>modifiersubtext</key>
<string></string>
<key>vitoclose</key>
<false/>
</dict>
</array>
</dict>
<key>createdby</key>
<string>Daniel Zarifpour</string>
<key>description</key>
<string>Get in-line Etherscan suggestions and view source on DethCode.</string>
<key>disabled</key>
<false/>
<key>name</key>
<string>Etherscan Suggest (with DethCode)</string>
<key>objects</key>
<array>
<dict>
<key>config</key>
<dict>
<key>browser</key>
<string></string>
<key>skipqueryencode</key>
<false/>
<key>skipvarencode</key>
<false/>
<key>spaces</key>
<string></string>
<key>url</key>
<string>https://etherscan.io/token/{query}</string>
</dict>
<key>type</key>
<string>alfred.workflow.action.openurl</string>
<key>uid</key>
<string>882A5947-06A0-49ED-8443-D55F88AEF74A</string>
<key>version</key>
<integer>1</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>alfredfiltersresults</key>
<false/>
<key>alfredfiltersresultsmatchmode</key>
<integer>0</integer>
<key>argumenttreatemptyqueryasnil</key>
<true/>
<key>argumenttrimmode</key>
<integer>0</integer>
<key>argumenttype</key>
<integer>1</integer>
<key>escaping</key>
<integer>102</integer>
<key>keyword</key>
<string>{var:search_keyword}</string>
<key>queuedelaycustom</key>
<integer>3</integer>
<key>queuedelayimmediatelyinitially</key>
<true/>
<key>queuedelaymode</key>
<integer>0</integer>
<key>queuemode</key>
<integer>1</integer>
<key>runningsubtext</key>
<string>Getting suggestions…</string>
<key>script</key>
<string>// Define a function to check if a string is a valid Ethereum address
function isValidEthereumAddress(address) {
return /^0x[a-fA-F0-9]{40}$/.test(address);
}
// Define a function to create Alfred items from an array of suggestion objects
function makeItems(suggestions) {
return suggestions.map((suggestion) => {
const title = suggestion.title;
const address = suggestion.address || title; // Default to title if no address is provided
return {
uid: title,
title: title,
subtitle: "Open “" + title + "” on Etherscan",
arg: address,
};
});
}
// Retrieve the previous search term and suggestions from Alfred's environment variables
const oldArg = $.NSProcessInfo.processInfo.environment.objectForKey("oldArg").js;
const oldResults = $.NSProcessInfo.processInfo.environment.objectForKey("oldResults").js;
// Define the main function that generates the list of suggestions for Alfred
function run(argv) {
// If the user did not type anything, return an empty list of suggestions
if (!argv[0]) {
return JSON.stringify({ items: [] });
}
// If the user is currently typing, return the previous suggestions as well as the new ones from the current search
if (argv[0] !== oldArg) {
const previousTitles = oldResults ? oldResults.split("\n").map(title => ({ title })) : [];
return JSON.stringify({
rerun: 0.1,
skipknowledge: true,
variables: { oldResults: oldResults, oldArg: argv[0] },
items: makeItems(
[{ title: argv[0] }].concat(previousTitles)
),
});
}
// If the user is not currently typing, make a request to the Etherscan autocomplete API to retrieve new suggestions
const encodedQuery = encodeURIComponent(argv[0]);
const queryURL = $.NSURL.URLWithString(`https://etherscan.io/searchHandler?term=${encodedQuery}&filterby=0`);
const requestData = $.NSData.dataWithContentsOfURL(queryURL);
const requestString = $.NSString.alloc.initWithDataEncoding(
requestData,
$.NSUTF8StringEncoding
).js;
const newResults = JSON.parse(requestString).filter((result) => result.title !== argv[0]);
// If input is a valid Ethereum address and no results, add the address as a suggestion
if (isValidEthereumAddress(argv[0]) && newResults.length === 0) {
newResults.push({ title: argv[0], address: argv[0] });
}
// Return the new suggestions as Alfred items, and store them along with the current search term in the environment variables for later use
return JSON.stringify({
skipknowledge: true,
variables: { oldResults: newResults.map(result => result.title).join("\n"), oldArg: argv[0] }, // Store only the titles
items: makeItems(newResults),
});
}</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
<string></string>
<key>subtext</key>
<string>Search Etherscan with suggestions</string>
<key>title</key>
<string>Search Etherscan</string>
<key>type</key>
<integer>7</integer>
<key>withspace</key>
<true/>
</dict>
<key>type</key>
<string>alfred.workflow.input.scriptfilter</string>
<key>uid</key>
<string>B2496DEF-C902-4D76-BD7C-DC86D9DB4C04</string>
<key>version</key>
<integer>3</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>alfredfiltersresults</key>
<false/>
<key>alfredfiltersresultsmatchmode</key>
<integer>0</integer>
<key>argumenttreatemptyqueryasnil</key>
<true/>
<key>argumenttrimmode</key>
<integer>0</integer>
<key>argumenttype</key>
<integer>1</integer>
<key>escaping</key>
<integer>102</integer>
<key>keyword</key>
<string>{var:code_keyword}</string>
<key>queuedelaycustom</key>
<integer>3</integer>
<key>queuedelayimmediatelyinitially</key>
<true/>
<key>queuedelaymode</key>
<integer>0</integer>
<key>queuemode</key>
<integer>1</integer>
<key>runningsubtext</key>
<string>Getting suggestions…</string>
<key>script</key>
<string>// Define a function to check if a string is a valid Ethereum address
function isValidEthereumAddress(address) {
return /^0x[a-fA-F0-9]{40}$/.test(address);
}
// Define a function to create Alfred items from an array of suggestion objects
function makeItems(suggestions) {
return suggestions.map((suggestion) => {
const title = suggestion.title;
const address = suggestion.address || title; // Default to title if no address is provided
return {
uid: title,
title: title,
subtitle: "Open “" + title + "” on DethCode",
arg: address,
};
});
}
// Retrieve the previous search term and suggestions from Alfred's environment variables
const oldArg = $.NSProcessInfo.processInfo.environment.objectForKey("oldArg").js;
const oldResults = $.NSProcessInfo.processInfo.environment.objectForKey("oldResults").js;
// Define the main function that generates the list of suggestions for Alfred
function run(argv) {
// If the user did not type anything, return an empty list of suggestions
if (!argv[0]) {
return JSON.stringify({ items: [] });
}
// If the user is currently typing, return the previous suggestions as well as the new ones from the current search
if (argv[0] !== oldArg) {
const previousTitles = oldResults ? oldResults.split("\n").map(title => ({ title })) : [];
return JSON.stringify({
rerun: 0.1,
skipknowledge: true,
variables: { oldResults: oldResults, oldArg: argv[0] },
items: makeItems(
[{ title: argv[0] }].concat(previousTitles)
),
});
}
// If the user is not currently typing, make a request to the Etherscan autocomplete API to retrieve new suggestions
const encodedQuery = encodeURIComponent(argv[0]);
const queryURL = $.NSURL.URLWithString(`https://etherscan.io/searchHandler?term=${encodedQuery}&filterby=0`);
const requestData = $.NSData.dataWithContentsOfURL(queryURL);
const requestString = $.NSString.alloc.initWithDataEncoding(
requestData,
$.NSUTF8StringEncoding
).js;
const newResults = JSON.parse(requestString).filter((result) => result.title !== argv[0]);
// If input is a valid Ethereum address and no results, add the address as a suggestion
if (isValidEthereumAddress(argv[0]) && newResults.length === 0) {
newResults.push({ title: argv[0], address: argv[0] });
}
// Return the new suggestions as Alfred items, and store them along with the current search term in the environment variables for later use
return JSON.stringify({
skipknowledge: true,
variables: { oldResults: newResults.map(result => result.title).join("\n"), oldArg: argv[0] }, // Store only the titles
items: makeItems(newResults),
});
}</string>
<key>scriptargtype</key>
<integer>1</integer>
<key>scriptfile</key>
<string></string>
<key>subtext</key>
<string>Search Etherscan with suggestions</string>
<key>title</key>
<string>Open in DethCode</string>
<key>type</key>
<integer>7</integer>
<key>withspace</key>
<true/>
</dict>
<key>type</key>
<string>alfred.workflow.input.scriptfilter</string>
<key>uid</key>
<string>BBFB364B-0164-4127-823F-FB71BB608C05</string>
<key>version</key>
<integer>3</integer>
</dict>
<dict>
<key>config</key>
<dict>
<key>browser</key>
<string></string>
<key>skipqueryencode</key>
<false/>
<key>skipvarencode</key>
<false/>
<key>spaces</key>
<string></string>
<key>url</key>
<string>https://etherscan.deth.net/token/{query}</string>
</dict>
<key>type</key>
<string>alfred.workflow.action.openurl</string>
<key>uid</key>
<string>51C6A401-41A1-461F-9C42-C904FA75DC36</string>
<key>version</key>
<integer>1</integer>
</dict>
</array>
<key>readme</key>
<string># Etherscan Suggest (with DethCode)
Get in-line suggestions from [Etherscan](https://etherscan.io) via the **Keywords** `eth` (to open in Etherscan) and `deth` (to open the contract's source code on [DethCode](https://etherscan.deth.net)). Press <kbd>↩</kbd> to proceed — both the contract's name and its address are valid inputs.
![etherscan-workflow.png](/resources/etherscan-workflow.png)
![dethcode-workflow.png](/resources/dethcode-workflow.png)
## Updating the Search Keywords
1. Go to **Alfred Preferences**.
2. Open the **Workflows** tab.
3. Select **Etherscan Suggest (with DethCode)**.
4. Click **Configure Workflow...** to set or modify the **Keywords**.
## Credits
This workflow is inspired by the [Google Suggest](https://alfred.app/workflows/alfredapp/google-suggest/) workflow created by Vítor Galvão.
"This workflow was adapted with the help of ChatGPT, a large language model trained by OpenAI. ChatGPT provided guidance and support during the development process."
If you enjoyed this workflow, explore my other one: [You.com Suggest](https://github.com/zarifpour/alfred-you-suggest/tree/main).
---
Adapted with ❤️ by [Daniel Zarifpour](https://links.dev/z).</string>
<key>uidata</key>
<dict>
<key>51C6A401-41A1-461F-9C42-C904FA75DC36</key>
<dict>
<key>xpos</key>
<real>310</real>
<key>ypos</key>
<real>375</real>
</dict>
<key>882A5947-06A0-49ED-8443-D55F88AEF74A</key>
<dict>
<key>xpos</key>
<real>315</real>
<key>ypos</key>
<real>230</real>
</dict>
<key>B2496DEF-C902-4D76-BD7C-DC86D9DB4C04</key>
<dict>
<key>xpos</key>
<real>125</real>
<key>ypos</key>
<real>230</real>
</dict>
<key>BBFB364B-0164-4127-823F-FB71BB608C05</key>
<dict>
<key>xpos</key>
<real>125</real>
<key>ypos</key>
<real>375</real>
</dict>
</dict>
<key>userconfigurationconfig</key>
<array>
<dict>
<key>config</key>
<dict>
<key>default</key>
<string>eth</string>
<key>placeholder</key>
<string></string>
<key>required</key>
<false/>
<key>trim</key>
<true/>
</dict>
<key>description</key>
<string>Key to start Etherscan suggestions</string>
<key>label</key>
<string>Search keyword</string>
<key>type</key>
<string>textfield</string>
<key>variable</key>
<string>search_keyword</string>
</dict>
<dict>
<key>config</key>
<dict>
<key>default</key>
<string>deth</string>
<key>placeholder</key>
<string></string>
<key>required</key>
<false/>
<key>trim</key>
<true/>
</dict>
<key>description</key>
<string>Key to open code on DethCode</string>
<key>label</key>
<string>Code keyword</string>
<key>type</key>
<string>textfield</string>
<key>variable</key>
<string>code_keyword</string>
</dict>
</array>
<key>version</key>
<string>1.1.0</string>
<key>webaddress</key>
<string>https://links.dev/z</string>
</dict>
</plist>