-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsidepanel.html
More file actions
1581 lines (1515 loc) · 108 KB
/
sidepanel.html
File metadata and controls
1581 lines (1515 loc) · 108 KB
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
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WhiteOwl AI</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Oxanium:wght@600;700;800&display=swap" rel="stylesheet">
<link rel="stylesheet" href="sidepanel.css">
</head>
<body>
<div id="wo-root">
<div id="wo-header">
<div class="wo-logo">
<span class="wo-logo-owl"><img src="logo.png" style="width:28px;height:28px;object-fit:contain;border-radius:50%"></span>
<span><span class="wo-brand-mark">WhiteOwl</span> <strong>AI</strong></span>
</div>
<div class="wo-header-pills">
<div class="wo-net-label">SOL</div>
<div class="wo-status offline" id="wo-conn">Offline</div>
</div>
</div>
<div id="wo-tabs">
<button class="wo-tab active" data-tab="token">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"></polygon><line x1="12" y1="22" x2="12" y2="15.5"></line><polyline points="22 8.5 12 15.5 2 8.5"></polyline><polyline points="2 15.5 12 8.5 22 15.5"></polyline><line x1="12" y1="2" x2="12" y2="8.5"></line></svg>
<span>Token</span>
</button>
<button class="wo-tab" data-tab="chat">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m3 21 1.9-5.7a8.5 8.5 0 1 1 3.8 3.8z"></path></svg>
<span>Chat</span>
</button>
<button class="wo-tab" data-tab="inspector">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 7V5a2 2 0 0 1 2-2h2"></path><path d="M17 3h2a2 2 0 0 1 2 2v2"></path><path d="M21 17v2a2 2 0 0 1-2 2h-2"></path><path d="M7 21H5a2 2 0 0 1-2-2v-2"></path></svg>
<span>Inspector</span>
</button>
<button class="wo-tab" data-tab="wallet">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="5" width="20" height="14" rx="2"></rect><path d="M2 10h20"></path></svg>
<span>Wallet</span>
</button>
</div>
<div class="wo-tab-content active" data-tab="token">
<div id="wo-token-card">
<div class="wo-no-token" id="wo-no-token">
<div class="wo-no-token-stage">
<div class="wo-no-token-art-wrap">
<img class="wo-no-token-art" src="2.png" alt="" aria-hidden="true">
</div>
</div>
<div class="wo-no-token-card">
<div class="wo-no-token-eyebrow"><span class="wo-nt-pulse"></span> Awaiting token signal</div>
<div class="wo-no-token-title">No token detected</div>
<div class="wo-no-token-sub">Navigate to any token on pump.fun — analysis appears instantly.</div>
</div>
</div>
<div id="wo-token-info" style="display:none">
<div class="wo-tk-header">
<div class="wo-tk-icon" id="wo-tk-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="12 2 22 8.5 22 15.5 12 22 2 15.5 2 8.5 12 2"></polygon><line x1="12" y1="22" x2="12" y2="15.5"></line><polyline points="22 8.5 12 15.5 2 8.5"></polyline><polyline points="2 15.5 12 8.5 22 15.5"></polyline><line x1="12" y1="2" x2="12" y2="8.5"></line></svg>
</div>
<div class="wo-tk-meta">
<div class="wo-tk-name-row">
<span class="wo-tk-name" id="wo-tk-name"></span>
<span class="wo-tk-ticker" id="wo-tk-ticker"></span>
</div>
<div class="wo-tk-mint" id="wo-tk-mint"></div>
</div>
</div>
<div class="wo-tk-stats" id="wo-tk-stats"></div>
<div class="wo-tk-live" id="wo-tk-live"></div>
<div class="wo-tk-actions">
<button class="wo-tk-action-btn wo-tk-action-primary" id="wo-analyze-btn">
<span class="wo-tk-action-icon"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="13 2 3 14 12 14 11 22 21 10 12 10 13 2"></polygon></svg></span>
<span class="wo-tk-action-label">Analyze</span>
</button>
<button class="wo-tk-action-btn wo-tk-action-default" id="wo-rate-btn">
<span class="wo-tk-action-icon"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"></path></svg></span>
<span class="wo-tk-action-label">Rate</span>
</button>
<button class="wo-tk-action-btn wo-tk-action-green" id="wo-deep-btn">
<span class="wo-tk-action-icon"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg></span>
<span class="wo-tk-action-label">Search</span>
</button>
</div>
</div>
</div>
<div id="wo-token-result" style="display:none;padding:12px;overflow-y:auto;flex:1"></div>
</div>
<div class="wo-tab-content" data-tab="chat">
<div class="wo-chat-topbar" id="wo-chat-topbar">
<button class="wo-chat-topbar-btn" id="wo-chat-list-btn" title="Chat list" aria-expanded="false" aria-controls="wo-chat-list-overlay">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="18" x2="21" y2="18"></line></svg>
</button>
<div class="wo-chat-topbar-title" id="wo-chat-title">New Chat</div>
<button class="wo-chat-topbar-btn" id="wo-chat-new-btn" title="New chat">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line></svg>
</button>
</div>
<div class="wo-chat-stage" id="wo-chat-stage">
<div class="wo-chat-list-overlay" id="wo-chat-list-overlay" aria-hidden="true">
<button class="wo-chat-list-backdrop" id="wo-chat-list-backdrop" aria-label="Close chat list"></button>
<div class="wo-chat-list-panel" id="wo-chat-list-panel">
<div class="wo-chat-list-head">
<div class="wo-chat-list-head-copy">
<div class="wo-chat-list-head-label">Chat Sessions</div>
<div class="wo-chat-list-head-sub">Jump between threads without leaving the desk</div>
</div>
<button class="wo-chat-list-close" id="wo-chat-list-close" title="Close chat list" aria-label="Close chat list">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>
</button>
</div>
<div class="wo-chat-list-items" id="wo-chat-list-items"></div>
</div>
</div>
<div class="wo-chat-shell">
<div class="wo-chat-hero">
<div class="wo-chat-hero-mark">
<span class="wo-chat-hero-owl"><img src="logo.png" style="width:100%;height:100%;object-fit:contain;border-radius:50%"></span>
</div>
<div class="wo-chat-hero-copy">
<div class="wo-chat-hero-kicker">WhiteOwl Signal Desk</div>
<div class="wo-chat-hero-title">Editorial command layer for live token context</div>
<div class="wo-chat-hero-sub">Read flow, decode narratives and route fast intelligence without drowning the panel in noise.</div>
</div>
</div>
<div id="wo-messages">
<div class="wo-msg sys">Connect to WhiteOwl to start chatting</div>
</div>
</div>
<div id="wo-quick">
<button class="wo-qbtn" data-cmd="trenches"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="18" y1="20" x2="18" y2="10"></line><line x1="12" y1="20" x2="12" y2="4"></line><line x1="6" y1="20" x2="6" y2="14"></line></svg> Trenches</button>
<button class="wo-qbtn" data-cmd="monitor"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><path d="M12 2a14.5 14.5 0 0 0 0 20 14.5 14.5 0 0 0 0-20"></path><path d="M2 12h20"></path></svg> Monitor</button>
<button class="wo-qbtn" data-cmd="trending"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z"></path></svg> Trending</button>
<button class="wo-qbtn" data-cmd="news"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M4 22h16a2 2 0 0 0 2-2V4a2 2 0 0 0-2-2H8a2 2 0 0 0-2 2v16a2 2 0 0 1-2 2Zm0 0a2 2 0 0 1-2-2v-9c0-1.1.9-2 2-2h2"></path><path d="M18 14h-8"></path><path d="M15 18h-5"></path><path d="M10 6h8v4h-8V6Z"></path></svg> News</button>
<button class="wo-qbtn" data-cmd="portfolio"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="7" width="20" height="14" rx="2" ry="2"></rect><path d="M16 21V5a2 2 0 0 0-2-2h-4a2 2 0 0 0-2 2v16"></path></svg> Portfolio</button>
</div>
<div id="wo-input-area">
<div id="wo-quote-preview"><span class="wo-quote-text"></span><span class="wo-quote-close" id="wo-quote-close-btn">×</span></div>
<textarea id="wo-input" placeholder="Ask WhiteOwl anything..." rows="1"></textarea>
<button id="wo-send-btn">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
</button>
</div>
</div>
</div>
<div class="wo-tab-content" data-tab="inspector">
<div id="wo-inspector-content">
<div class="wo-insp-hero">
<div class="wo-insp-hero-visual">
<div class="wo-insp-eye-video-wrap">
<video class="wo-insp-eye-video" autoplay muted loop playsinline preload="auto">
<source src="ex.mp4" type="video/mp4">
</video>
</div>
</div>
<div class="wo-insp-hero-copy">
<div class="wo-insp-header">
<div class="wo-insp-icon"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M3 7V5a2 2 0 0 1 2-2h2"></path><path d="M17 3h2a2 2 0 0 1 2 2v2"></path><path d="M21 17v2a2 2 0 0 1-2 2h-2"></path><path d="M7 21H5a2 2 0 0 1-2-2v-2"></path></svg></div>
<div>
<div class="wo-insp-title">Context Inspector</div>
<div class="wo-insp-sub">Capture fragments, not clutter</div>
</div>
</div>
<div class="wo-insp-hero-text">Freeze the exact on-page signal you care about and pipe it into the desk with clean, minimal context.</div>
<div class="wo-insp-hero-actions">
<button class="wo-btn wo-btn-primary wo-btn-sm" id="wo-insp-start-btn">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg> Start Inspector
</button>
<div class="wo-insp-actions" id="wo-insp-actions">
<button class="wo-btn wo-btn-success wo-btn-xs" id="wo-insp-send-btn">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="20 6 9 17 4 12"></polyline></svg> Send All
</button>
<button class="wo-btn wo-btn-danger wo-btn-xs" id="wo-insp-clear-btn">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="3 6 5 6 21 6"></polyline><path d="M19 6v14a2 2 0 0 1-2 2H7a2 2 0 0 1-2-2V6m3 0V4a2 2 0 0 1 2-2h4a2 2 0 0 1 2 2v2"></path><line x1="10" y1="11" x2="10" y2="17"></line><line x1="14" y1="11" x2="14" y2="17"></line></svg> Clear
</button>
</div>
</div>
</div>
</div>
<div class="wo-insp-active-bar" id="wo-insp-active">
<div class="wo-insp-pulse"></div>
<span>Inspector active — click any element</span>
<button class="wo-btn wo-btn-danger wo-btn-xs" id="wo-insp-stop-btn2">Stop</button>
</div>
<div class="wo-insp-captures" id="wo-insp-list">
<div class="wo-insp-empty"><span class="wo-insp-empty-count" id="wo-insp-count">0 captured</span>No elements captured yet.</div>
</div>
</div>
</div>
<div class="wo-tab-content" data-tab="wallet">
<div class="wo-wlt-topbar" id="wo-wlt-topbar">
<button class="wo-wlt-topbar-back" id="wo-wlt-back-ai">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 18 9 12 15 6"></polyline></svg>
</button>
<div class="wo-wlt-topbar-title">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round" class="wo-wlt-topbar-icon"><rect x="2" y="5" width="20" height="14" rx="2"></rect><path d="M2 10h20"></path></svg>
<span>Wallet</span>
</div>
<div class="wo-wlt-topbar-right">
<div class="wo-status" id="wo-wlt-conn-badge">Mainnet</div>
</div>
</div>
<div class="wo-wlt-views-area">
<div class="wo-wlt-view" id="wo-wlt-pin">
<div class="wo-pin-screen">
<div class="wo-pin-logo">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 10 0v4"></path></svg>
</div>
<div class="wo-pin-title" id="wo-pin-title">Enter PIN</div>
<div class="wo-pin-subtitle" id="wo-pin-subtitle">6-digit PIN to access your wallet</div>
<div class="wo-pin-dots" id="wo-pin-dots">
<span></span><span></span><span></span><span></span><span></span><span></span>
</div>
<div class="wo-pin-error" id="wo-pin-error"></div>
<div class="wo-pin-numpad" id="wo-pin-numpad"></div>
<button class="wo-pin-forgot" id="wo-pin-forgot">Forgot PIN · Reset</button>
</div>
</div>
<div class="wo-wlt-view" id="wo-wlt-setup">
<div class="wo-wlt-setup-scroll">
<div class="wo-wlt-setup-header">
<img class="wo-wlt-setup-art" src="6.png" alt="" aria-hidden="true">
<div class="wo-wlt-setup-owl">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="5" width="20" height="14" rx="2"></rect><path d="M2 10h20"></path></svg>
</div>
<h2>Solana Wallet</h2>
<p>Choose how to get started</p>
</div>
<div class="wo-wlt-options" id="wo-wlt-options">
<button class="wo-wlt-option" id="wo-wlt-gen-seed-btn">
<div class="wo-wlt-option-icon gen">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polygon points="12 2 15.09 8.26 22 9.27 17 14.14 18.18 21.02 12 17.77 5.82 21.02 7 14.14 2 9.27 8.91 8.26 12 2"></polygon></svg>
</div>
<div class="wo-wlt-option-body">
<div class="wo-wlt-option-title">Generate with Seed Phrase</div>
<div class="wo-wlt-option-sub">Random address + 12-word recovery</div>
</div>
<svg class="wo-wlt-option-arrow" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="9 18 15 12 9 6"></polyline></svg>
</button>
<button class="wo-wlt-option" id="wo-wlt-gen-vanity-btn">
<div class="wo-wlt-option-icon gen">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M20.24 12.24a6 6 0 0 0-8.49-8.49L5 10.5V19h8.5z"></path><line x1="16" y1="8" x2="2" y2="22"></line><line x1="17.5" y1="15" x2="9" y2="15"></line></svg>
</div>
<div class="wo-wlt-option-body">
<div class="wo-wlt-option-title">Generate Wo-address</div>
<div class="wo-wlt-option-sub">Address starts with Wo (private key only)</div>
</div>
<svg class="wo-wlt-option-arrow" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="9 18 15 12 9 6"></polyline></svg>
</button>
<button class="wo-wlt-option" id="wo-wlt-import-btn">
<div class="wo-wlt-option-icon key">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="m21 2-2 2m-7.61 7.61a5.5 5.5 0 1 1-7.778 7.778 5.5 5.5 0 0 1 7.777-7.777zm0 0L15.5 7.5m0 0 3 3L22 7l-3-3m-3.5 3.5L19 4"></path></svg>
</div>
<div class="wo-wlt-option-body">
<div class="wo-wlt-option-title">Import Private Key</div>
<div class="wo-wlt-option-sub">Paste your base58 private key</div>
</div>
<svg class="wo-wlt-option-arrow" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="9 18 15 12 9 6"></polyline></svg>
</button>
<button class="wo-wlt-option" id="wo-wlt-gen-burn-btn">
<div class="wo-wlt-option-icon burn">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M8.5 14.5A2.5 2.5 0 0 0 11 12c0-1.38-.5-2-1-3-1.072-2.143-.224-4.054 2-6 .5 2.5 2 4.9 4 6.5 2 1.6 3 3.5 3 5.5a7 7 0 1 1-14 0c0-1.153.433-2.294 1-3a2.5 2.5 0 0 0 2.5 2.5z"></path></svg>
</div>
<div class="wo-wlt-option-body">
<div class="wo-wlt-option-title">Burn Wallet</div>
<div class="wo-wlt-option-sub">Auto-approve all dApp requests (no popups)</div>
</div>
<svg class="wo-wlt-option-arrow" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="9 18 15 12 9 6"></polyline></svg>
</button>
<button class="wo-wlt-option" id="wo-wlt-seed-btn">
<div class="wo-wlt-option-icon seed">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22V8"></path><path d="M5 12H2a10 10 0 0 0 20 0h-3"></path><path d="M8 8a4 4 0 0 1 8 0"></path></svg>
</div>
<div class="wo-wlt-option-body">
<div class="wo-wlt-option-title">Recover from Seed Phrase</div>
<div class="wo-wlt-option-sub">12 or 24 words (BIP39)</div>
</div>
<svg class="wo-wlt-option-arrow" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="9 18 15 12 9 6"></polyline></svg>
</button>
<button class="wo-wlt-option" id="wo-wlt-multisig-btn">
<div class="wo-wlt-option-icon multisig">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M17 21v-2a4 4 0 00-4-4H5a4 4 0 00-4 4v2"/><circle cx="9" cy="7" r="4"/><path d="M23 21v-2a4 4 0 00-3-3.87M16 3.13a4 4 0 010 7.75"/></svg>
</div>
<div class="wo-wlt-option-body">
<div class="wo-wlt-option-title">Multisig Vaults</div>
<div class="wo-wlt-option-sub">M-of-N shared wallets (Squads v4)</div>
</div>
<svg class="wo-wlt-option-arrow" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2"><polyline points="9 18 15 12 9 6"></polyline></svg>
</button>
</div>
<div class="wo-wlt-form" id="wo-wlt-import-form">
<div class="wo-wlt-form-title">Import Private Key</div>
<textarea id="wo-wlt-pk-input" class="wo-wlt-textarea" placeholder="Enter base58-encoded private key..." rows="3" autocomplete="off" spellcheck="false"></textarea>
<div class="wo-wlt-form-name">
<input type="text" id="wo-wlt-pk-name" class="wo-wlt-input" placeholder="Wallet name (optional)">
</div>
<div style="display:flex;gap:8px;margin-top:4px">
<button class="wo-btn wo-btn-sm" id="wo-wlt-import-cancel">Cancel</button>
<button class="wo-btn wo-btn-primary wo-btn-sm wo-btn-full" id="wo-wlt-import-confirm">Import Wallet</button>
</div>
<div class="wo-wlt-form-status" id="wo-import-status"></div>
</div>
<div class="wo-wlt-form" id="wo-wlt-seed-form">
<div class="wo-wlt-form-title">Recover from Seed Phrase</div>
<textarea id="wo-wlt-seed-input" class="wo-wlt-textarea" placeholder="Enter 12 or 24-word seed phrase, separated by spaces..." rows="4" autocomplete="off" spellcheck="false"></textarea>
<div class="wo-wlt-form-name">
<input type="text" id="wo-wlt-seed-name" class="wo-wlt-input" placeholder="Wallet name (optional)">
</div>
<div style="display:flex;gap:8px;margin-top:4px">
<button class="wo-btn wo-btn-sm" id="wo-wlt-seed-cancel">Cancel</button>
<button class="wo-btn wo-btn-primary wo-btn-sm wo-btn-full" id="wo-wlt-seed-confirm">Recover Wallet</button>
</div>
<div class="wo-wlt-form-status" id="wo-seed-status"></div>
</div>
</div>
</div>
<div class="wo-wlt-view" id="wo-wlt-home">
<div class="wo-wlt-home-scroll">
<div class="wo-wlt-balance-card">
<video class="wo-wlt-hero-art" src="result_transparent.webm" autoplay loop muted playsinline aria-hidden="true"></video>
<div class="wo-wlt-balance-net">Solana Mainnet</div>
<div class="wo-wlt-balance" id="wo-wlt-balance">
<span class="wo-wlt-bal-num" id="wo-wlt-bal-num">—</span>
<span class="wo-wlt-bal-sym">SOL</span>
<button class="wo-bal-refresh" id="wo-bal-refresh" title="Refresh balance">
<svg viewBox="0 0 24 24" width="16" height="16" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M23 4v6h-6"/><path d="M1 20v-6h6"/><path d="M3.51 9a9 9 0 0 1 14.85-3.36L23 10"/><path d="M20.49 15a9 9 0 0 1-14.85 3.36L1 14"/></svg>
</button>
</div>
<div class="wo-wlt-bal-usd" id="wo-wlt-bal-usd"></div>
<div class="wo-wlt-addr-row">
<div class="wo-wlt-addr-text" id="wo-wlt-addr-short">—</div>
<button class="wo-wlt-addr-copy" id="wo-wlt-addr-copy" title="Copy address">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"></rect><path d="M5 15H4a2 2 0 0 1-2-2V4a2 2 0 0 1 2-2h9a2 2 0 0 1 2 2v1"></path></svg>
</button>
</div>
<div class="wo-wlt-wallet-name" id="wo-wlt-wallet-name"></div>
<div class="wo-wlt-connected-site" id="wo-wlt-connected-site" style="display:none">
<span class="wo-conn-dot"></span>
<span class="wo-conn-label" id="wo-wlt-conn-label">Not connected</span>
</div>
</div>
<div class="wo-wlt-actions">
<button class="wo-wlt-action" data-view="deposit">
<div class="wo-wlt-action-icon deposit">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2v20M2 12h20"></path></svg>
</div>
<span>Deposit</span>
</button>
<button class="wo-wlt-action" data-view="send">
<div class="wo-wlt-action-icon send">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
</div>
<span>Send</span>
</button>
<button class="wo-wlt-action" id="wo-wlt-private-send-btn">
<div class="wo-wlt-action-icon private-send">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3"/><line x1="1" y1="1" x2="23" y2="23"/></svg>
</div>
<span>Private</span>
</button>
</div>
<div class="wo-wlt-tabs">
<button class="wo-wlt-tab active" data-wlt-tab="tokens">Tokens</button>
<button class="wo-wlt-tab" data-wlt-tab="nfts">NFTs</button>
<button class="wo-wlt-tab" data-wlt-tab="activity">Activity</button>
<button class="wo-wlt-tab" data-wlt-tab="swap">Swap</button>
<button class="wo-wlt-tab wo-wlt-tab-soon" data-wlt-tab="bridge" disabled>Bridge <span class="wo-soon-badge">Soon</span></button>
<button class="wo-wlt-tab wo-wlt-tab-settings" data-wlt-tab="settings">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="wo-wlt-tab-icon"><circle cx="12" cy="12" r="3"></circle><path d="M19.4 15a1.65 1.65 0 0 0 .33 1.82l.06.06a2 2 0 0 1-2.83 2.83l-.06-.06a1.65 1.65 0 0 0-1.82-.33 1.65 1.65 0 0 0-1 1.51V21a2 2 0 0 1-4 0v-.09A1.65 1.65 0 0 0 9 19.4a1.65 1.65 0 0 0-1.82.33l-.06.06a2 2 0 0 1-2.83-2.83l.06-.06A1.65 1.65 0 0 0 4.68 15a1.65 1.65 0 0 0-1.51-1H3a2 2 0 0 1 0-4h.09A1.65 1.65 0 0 0 4.6 9a1.65 1.65 0 0 0-.33-1.82l-.06-.06a2 2 0 0 1 2.83-2.83l.06.06A1.65 1.65 0 0 0 9 4.68a1.65 1.65 0 0 0 1-1.51V3a2 2 0 0 1 4 0v.09a1.65 1.65 0 0 0 1 1.51 1.65 1.65 0 0 0 1.82-.33l.06-.06a2 2 0 0 1 2.83 2.83l-.06.06A1.65 1.65 0 0 0 19.4 9a1.65 1.65 0 0 0 1.51 1H21a2 2 0 0 1 0 4h-.09a1.65 1.65 0 0 0-1.51 1z"></path></svg>
<span>Settings</span>
</button>
</div>
<div class="wo-wlt-tab-content" id="wo-wlt-tab-tokens" style="display:flex">
<div id="wo-wlt-token-list"><div class="wo-wlt-empty-sm">Loading tokens…</div></div>
</div>
<div class="wo-wlt-tab-content" id="wo-wlt-tab-nfts" style="display:none">
<div id="wo-wlt-nft-list"><div class="wo-wlt-empty-sm">Loading NFTs…</div></div>
</div>
<div class="wo-wlt-tab-content" id="wo-wlt-tab-activity" style="display:none">
<div id="wo-wlt-recent-list"><div class="wo-wlt-empty-sm">No recent transactions</div></div>
</div>
<div class="wo-wlt-tab-content" id="wo-wlt-tab-swap" style="display:none">
<div class="wo-swap-panel">
<div class="wo-swap-box">
<div class="wo-swap-field">
<div class="wo-swap-field-top">
<span class="wo-swap-field-label">You pay</span>
<span class="wo-swap-from-bal-row"><button class="wo-swap-max-btn" id="wo-swap-max" title="Use max balance">MAX</button><span class="wo-swap-field-bal" id="wo-swap-from-bal">Balance: —</span></span>
</div>
<div class="wo-swap-field-row">
<input type="number" class="wo-swap-input" id="wo-swap-from-amt" placeholder="0.0" min="0" step="any">
<button class="wo-swap-token-btn" id="wo-swap-from-token">
<span>SOL</span>
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>
</button>
</div>
</div>
<button class="wo-swap-flip" id="wo-swap-flip" title="Swap direction">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="12" y1="5" x2="12" y2="19"></line><polyline points="19 12 12 19 5 12"></polyline></svg>
</button>
<div class="wo-swap-field">
<div class="wo-swap-field-top">
<span class="wo-swap-field-label">You receive</span>
<span class="wo-swap-field-bal" id="wo-swap-to-bal">Balance: —</span>
</div>
<div class="wo-swap-field-row">
<input type="number" class="wo-swap-input" id="wo-swap-to-amt" placeholder="0.0" readonly>
<button class="wo-swap-token-btn" id="wo-swap-to-token">
<span>USDC</span>
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="6 9 12 15 18 9"></polyline></svg>
</button>
</div>
</div>
</div>
<div class="wo-swap-details">
<div class="wo-swap-detail-row">
<span>Slippage</span>
<div class="wo-swap-slippage-row">
<button class="wo-swap-slip-btn active" data-slip="0.5">0.5%</button>
<button class="wo-swap-slip-btn" data-slip="1">1%</button>
<button class="wo-swap-slip-btn" data-slip="3">3%</button>
<input type="number" class="wo-swap-slip-custom" id="wo-swap-slip-custom" placeholder="Custom" min="0.01" max="50" step="0.1">
</div>
</div>
<div class="wo-swap-detail-row" id="wo-swap-rate-row" style="display:none">
<span>Rate</span>
<span id="wo-swap-rate">—</span>
</div>
<div class="wo-swap-detail-row" id="wo-swap-impact-row" style="display:none">
<span>Price Impact</span>
<span id="wo-swap-impact">—</span>
</div>
</div>
<div class="wo-swap-route-row" id="wo-swap-route-row" style="display:none">
<span class="wo-swap-route-rate" id="wo-swap-route-rate"></span>
<button class="wo-swap-route-toggle" id="wo-swap-route-toggle" title="Toggle route details">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="17 1 21 5 17 9"></polyline><path d="M3 11V9a4 4 0 0 1 4-4h14"></path><polyline points="7 23 3 19 7 15"></polyline><path d="M21 13v2a4 4 0 0 1-4 4H3"></path></svg>
</button>
</div>
<button class="wo-btn wo-btn-primary wo-btn-sm wo-swap-confirm" id="wo-swap-confirm" style="width:100%;margin-top:10px">
Swap
</button>
<div class="wo-wlt-form-status" id="wo-swap-status"></div>
<div class="wo-swap-quotes-section" id="wo-swap-quotes-section" style="display:none">
<div class="wo-swap-quotes-hd">
<span class="wo-swap-quotes-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="width:14px;height:14px"><path d="M20.59 13.41l-7.17 7.17a2 2 0 0 1-2.83 0L2 12V2h10l8.59 8.59a2 2 0 0 1 0 2.82z"/><line x1="7" y1="7" x2="7.01" y2="7"/></svg>
</span>
<span class="wo-swap-quotes-title">Quotes</span>
<span class="wo-swap-quotes-count" id="wo-swap-quotes-count"></span>
<span class="wo-swap-quotes-via" id="wo-swap-quotes-via"></span>
<span class="wo-swap-quotes-info" title="Comparing prices across multiple aggregators">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="width:12px;height:12px"><circle cx="12" cy="12" r="10"/><line x1="12" y1="16" x2="12" y2="12"/><line x1="12" y1="8" x2="12.01" y2="8"/></svg>
</span>
</div>
<div class="wo-swap-quotes-list" id="wo-swap-quotes-list"></div>
</div>
</div>
</div>
<div class="wo-wlt-tab-content" id="wo-wlt-tab-bridge" style="display:none">
<div class="wo-bridge-panel" id="wo-bridge-panel">
<div class="wo-bridge-locked" id="wo-bridge-locked" style="display:none">
<div class="wo-bridge-locked-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 10 0v4"></path></svg>
</div>
<div class="wo-bridge-locked-title">Bridge Unavailable</div>
<div class="wo-bridge-locked-sub">Enable EVM Networks in Settings or add an EVM wallet to use the cross-chain bridge.</div>
<button class="wo-btn wo-btn-sm wo-btn-primary" id="wo-bridge-go-settings">Open Settings</button>
</div>
<div class="wo-bridge-active" id="wo-bridge-active">
<div class="wo-bridge-evm-notice hidden" id="wo-bridge-evm-notice">
<div class="wo-bridge-evm-notice-icon">⚠</div>
<div class="wo-bridge-evm-notice-text"><strong>EVM Networks</strong> are required for cross-chain bridges. Enable them to use bridging.</div>
<button class="wo-bridge-evm-enable-btn" id="wo-bridge-evm-enable">Enable</button>
</div>
<div class="wo-swap-box">
<div class="wo-swap-field">
<div class="wo-swap-field-top">
<span class="wo-swap-field-label">From</span>
<span class="wo-swap-field-bal" id="wo-bridge-from-bal">Balance: —</span>
</div>
<div class="wo-bridge-chain-row">
<button class="wo-bridge-chain-btn" id="wo-bridge-from-chain">
<span>Solana</span>
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><polyline points="6 9 12 15 18 9"></polyline></svg>
</button>
<button class="wo-swap-token-btn" id="wo-bridge-from-token">
<span>SOL</span>
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><polyline points="6 9 12 15 18 9"></polyline></svg>
</button>
</div>
<div class="wo-swap-field-row">
<input type="number" class="wo-swap-input" id="wo-bridge-from-amt" placeholder="0.0" min="0" step="any">
</div>
</div>
<button class="wo-swap-flip" id="wo-bridge-flip" title="Swap chains">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><line x1="12" y1="5" x2="12" y2="19"></line><polyline points="19 12 12 19 5 12"></polyline></svg>
</button>
<div class="wo-swap-field">
<div class="wo-swap-field-top">
<span class="wo-swap-field-label">To</span>
</div>
<div class="wo-bridge-chain-row">
<button class="wo-bridge-chain-btn" id="wo-bridge-to-chain">
<span>Ethereum</span>
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><polyline points="6 9 12 15 18 9"></polyline></svg>
</button>
<button class="wo-swap-token-btn" id="wo-bridge-to-token">
<span>ETH</span>
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><polyline points="6 9 12 15 18 9"></polyline></svg>
</button>
</div>
<div class="wo-swap-field-row">
<input type="number" class="wo-swap-input" id="wo-bridge-to-amt" placeholder="0.0" readonly>
</div>
</div>
</div>
<div class="wo-bridge-routes" id="wo-bridge-routes" style="display:none"></div>
<div class="wo-bridge-routes-loading" id="wo-bridge-routes-loading" style="display:none">Searching best routes…</div>
<div class="wo-bridge-no-routes" id="wo-bridge-no-routes" style="display:none">No routes found</div>
<div class="wo-swap-details">
<div class="wo-swap-detail-row" id="wo-bridge-fee-row" style="display:none">
<span>Bridge Fee</span>
<span id="wo-bridge-fee">—</span>
</div>
<div class="wo-swap-detail-row" id="wo-bridge-time-row" style="display:none">
<span>Est. Time</span>
<span id="wo-bridge-time">—</span>
</div>
<div class="wo-swap-detail-row" id="wo-bridge-via-row" style="display:none">
<span>Via</span>
<span id="wo-bridge-via">—</span>
</div>
</div>
<button class="wo-btn wo-btn-primary wo-btn-sm wo-swap-confirm" id="wo-bridge-confirm" style="width:100%;margin-top:10px">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="width:14px;height:14px"><path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line></svg>
Bridge
</button>
<div class="wo-wlt-form-status" id="wo-bridge-status"></div>
</div>
</div>
</div>
<div class="wo-wlt-tab-content" id="wo-wlt-tab-settings" style="display:none">
<div class="wo-wlt-settings-inline">
<button class="wo-sett-cat" data-sett-cat="wallets">
<div class="wo-sett-cat-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="5" width="20" height="14" rx="2"></rect><path d="M2 10h20"></path></svg>
</div>
<div><div class="wo-sett-row-name">Wallets</div><div class="wo-sett-row-sub">Manage your wallets</div></div>
<div class="wo-sett-chevron"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><polyline points="9 18 15 12 9 6"></polyline></svg></div>
</button>
<button class="wo-sett-cat" data-sett-cat="networks">
<div class="wo-sett-cat-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"></circle><line x1="2" y1="12" x2="22" y2="12"></line><path d="M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"></path></svg>
</div>
<div><div class="wo-sett-row-name">Networks</div><div class="wo-sett-row-sub">RPC, EVM chains</div></div>
<div class="wo-sett-chevron"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><polyline points="9 18 15 12 9 6"></polyline></svg></div>
</button>
<button class="wo-sett-cat" data-sett-cat="security">
<div class="wo-sett-cat-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="3" y="11" width="18" height="11" rx="2" ry="2"></rect><path d="M7 11V7a5 5 0 0 1 10 0v4"></path></svg>
</div>
<div><div class="wo-sett-row-name">Security</div><div class="wo-sett-row-sub">PIN, Guardian, Auto-lock</div></div>
<div class="wo-sett-chevron"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5"><polyline points="9 18 15 12 9 6"></polyline></svg></div>
</button>
</div>
</div>
</div>
</div>
<div class="wo-wlt-view" id="wo-wlt-deposit">
<div class="wo-wlt-nav">
<button class="wo-wlt-back" data-back="home">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 18 9 12 15 6"></polyline></svg>
</button>
<span class="wo-wlt-nav-title">Deposit SOL</span>
<span></span>
</div>
<div class="wo-deposit-content">
<div class="wo-deposit-qr" id="wo-deposit-qr">
<div class="wo-qr-inner" id="wo-qr-inner">
<canvas id="wo-qr-canvas" width="180" height="180"></canvas>
</div>
</div>
<div class="wo-deposit-label">Your Solana Address</div>
<div class="wo-deposit-addr-box">
<div class="wo-deposit-addr-text" id="wo-deposit-addr-text">—</div>
<button class="wo-btn wo-btn-sm wo-btn-primary" id="wo-deposit-copy">Copy</button>
</div>
<div class="wo-deposit-hint">Send only SOL on the Solana network to this address</div>
</div>
</div>
<div class="wo-wlt-view" id="wo-wlt-send-picker">
<div class="wo-wlt-nav">
<button class="wo-wlt-back" data-back="home">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 18 9 12 15 6"></polyline></svg>
</button>
<span class="wo-wlt-nav-title">Choose Asset</span>
<span></span>
</div>
<div class="wo-send-picker-content">
<div class="wo-send-picker-hero">
<div class="wo-send-picker-kicker">Send</div>
<div class="wo-send-picker-title">Pick what you want to move</div>
<div class="wo-send-picker-subtitle">Tokens stay in the main lane. NFTs live in their own gallery below.</div>
</div>
<div class="wo-send-picker-search">
<span class="wo-send-picker-search-icon">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="11" cy="11" r="7"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line></svg>
</span>
<input type="text" id="wo-send-picker-q" class="wo-wlt-input" placeholder="Search assets, symbols, or contracts...">
</div>
<div id="wo-send-picker-list"><div class="wo-wlt-empty-sm">Loading…</div></div>
</div>
</div>
<div class="wo-wlt-view" id="wo-wlt-send">
<div class="wo-wlt-nav">
<button class="wo-wlt-back" data-back="send-picker">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 18 9 12 15 6"></polyline></svg>
</button>
<span class="wo-wlt-nav-title">Send SOL</span>
<span></span>
</div>
<div class="wo-send-content">
<div class="wo-send-avail" id="wo-send-avail">Available: — SOL</div>
<div class="wo-send-field">
<label class="wo-send-label">Recipient Address</label>
<input type="text" id="wo-send-to" class="wo-wlt-input" placeholder="Solana wallet address...">
</div>
<div class="wo-send-field">
<label class="wo-send-label">Amount (SOL)</label>
<div class="wo-send-amt-row">
<input type="number" id="wo-send-amt" class="wo-wlt-input" placeholder="0.000" min="0" step="0.001">
<button class="wo-btn wo-btn-xs" id="wo-send-max">MAX</button>
</div>
</div>
<div class="wo-send-fee-hint">≈ 0.000005 SOL network fee</div>
<button class="wo-btn wo-btn-primary wo-btn-sm" id="wo-send-confirm" style="margin-top:12px;width:100%">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="width:14px;height:14px"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
Send
</button>
<div class="wo-wlt-form-status" id="wo-send-status"></div>
</div>
</div>
<div class="wo-wlt-view" id="wo-wlt-send-token">
<div class="wo-wlt-nav">
<button class="wo-wlt-back" data-back="send-picker">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 18 9 12 15 6"></polyline></svg>
</button>
<span class="wo-wlt-nav-title" id="wo-send-token-title">Send Token</span>
<span></span>
</div>
<div class="wo-send-content">
<div class="wo-send-avail" id="wo-send-token-avail">Available: —</div>
<div class="wo-send-token-info" id="wo-send-token-info"></div>
<div class="wo-send-field">
<label class="wo-send-label">Recipient Address</label>
<input type="text" id="wo-send-token-to" class="wo-wlt-input" placeholder="Solana wallet address...">
</div>
<div class="wo-send-field" id="wo-send-token-amt-field">
<label class="wo-send-label">Amount</label>
<div class="wo-send-amt-row">
<input type="number" id="wo-send-token-amt" class="wo-wlt-input" placeholder="0.000" min="0" step="any">
<button class="wo-btn wo-btn-xs" id="wo-send-token-max">MAX</button>
</div>
</div>
<div class="wo-send-fee-hint">≈ 0.000005 SOL network fee + ATA creation if needed</div>
<button class="wo-btn wo-btn-primary wo-btn-sm" id="wo-send-token-confirm" style="margin-top:12px;width:100%">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="width:14px;height:14px"><line x1="22" y1="2" x2="11" y2="13"></line><polygon points="22 2 15 22 11 13 2 9 22 2"></polygon></svg>
Send
</button>
<div class="wo-wlt-form-status" id="wo-send-token-status"></div>
</div>
</div>
<div class="wo-wlt-view" id="wo-wlt-private-send">
<div class="wo-wlt-nav">
<button class="wo-wlt-back" data-back="home">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 18 9 12 15 6"></polyline></svg>
</button>
<span class="wo-wlt-nav-title">Private Send</span>
<span></span>
</div>
<div class="wo-send-content">
<div class="wo-private-send-info">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="width:16px;height:16px;flex-shrink:0"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3"/><line x1="1" y1="1" x2="23" y2="23"/></svg>
<span>Funds are routed through <strong>Houdini Swap</strong> privacy pools. The recipient cannot trace the sender — on-chain link is fully broken.</span>
</div>
<div class="wo-psend-warnings">
<div class="wo-psend-warn-item">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="width:14px;height:14px;flex-shrink:0"><circle cx="12" cy="12" r="10"/><polyline points="12 6 12 12 16 14"/></svg>
<span>Takes a few minutes</span>
</div>
<div class="wo-psend-warn-item">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="width:14px;height:14px;flex-shrink:0"><line x1="12" y1="1" x2="12" y2="23"/><path d="M17 5H9.5a3.5 3.5 0 0 0 0 7h5a3.5 3.5 0 0 1 0 7H6"/></svg>
<span>Higher fees (service + network)</span>
</div>
</div>
<div class="wo-send-avail" id="wo-psend-avail">Available: — SOL</div>
<div class="wo-send-field">
<label class="wo-send-label">Recipient Address</label>
<input type="text" id="wo-psend-to" class="wo-wlt-input" placeholder="Solana wallet address...">
</div>
<div class="wo-send-field">
<label class="wo-send-label">Amount (SOL)</label>
<div class="wo-send-amt-row">
<input type="number" id="wo-psend-amt" class="wo-wlt-input" placeholder="0.000" min="0" step="0.001">
<button class="wo-btn wo-btn-xs" id="wo-psend-max">MAX</button>
</div>
</div>
<div class="wo-psend-quote" id="wo-psend-quote" style="display:none">
<div class="wo-psend-quote-row"><span>Recipient gets</span><strong id="wo-psend-q-receive">—</strong></div>
<div class="wo-psend-quote-row"><span>Service fee</span><span id="wo-psend-q-fee">—</span></div>
<div class="wo-psend-quote-row"><span>Est. time</span><span id="wo-psend-q-eta">2-5 min</span></div>
</div>
<button class="wo-btn wo-btn-primary wo-btn-sm" id="wo-psend-confirm" style="margin-top:12px;width:100%">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="width:14px;height:14px"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3"/><line x1="1" y1="1" x2="23" y2="23"/></svg>
Private Send
</button>
<div class="wo-wlt-form-status" id="wo-psend-status"></div>
<div class="wo-psend-progress" id="wo-psend-progress" style="display:none">
<div class="wo-psend-step" id="wo-psend-s1" data-step="deposit"><span class="wo-psend-step-dot"></span><span>Sending to Houdini…</span></div>
<div class="wo-psend-step" id="wo-psend-s2" data-step="confirming"><span class="wo-psend-step-dot"></span><span>Confirming deposit…</span></div>
<div class="wo-psend-step" id="wo-psend-s3" data-step="exchanging"><span class="wo-psend-step-dot"></span><span>Routing privately…</span></div>
<div class="wo-psend-step" id="wo-psend-s4" data-step="sending"><span class="wo-psend-step-dot"></span><span>Delivering to recipient…</span></div>
<div class="wo-psend-step" id="wo-psend-s5" data-step="finished"><span class="wo-psend-step-dot"></span><span>Complete ✓</span></div>
</div>
<div class="wo-psend-powered">Powered by <strong>Houdini Swap</strong></div>
</div>
</div>
<div class="wo-wlt-view" id="wo-wlt-history">
<div class="wo-wlt-nav">
<button class="wo-wlt-back" data-back="home">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 18 9 12 15 6"></polyline></svg>
</button>
<span class="wo-wlt-nav-title">Transaction History</span>
<button class="wo-wlt-refresh" id="wo-hist-refresh" title="Refresh">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="23 4 23 10 17 10"></polyline><polyline points="1 20 1 14 7 14"></polyline><path d="M3.51 9a9 9 0 0 1 14.85-3.36L23 10M1 14l4.64 4.36A9 9 0 0 0 20.49 15"></path></svg>
</button>
</div>
<div class="wo-wlt-tx-scroll">
<div id="wo-wlt-tx-list"><div class="wo-wlt-empty">No transactions found</div></div>
</div>
</div>
<div class="wo-wlt-view" id="wo-wlt-settings">
<div class="wo-wlt-nav">
<button class="wo-wlt-back" data-back="home">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 18 9 12 15 6"></polyline></svg>
</button>
<span class="wo-wlt-nav-title">Settings</span>
<span></span>
</div>
<div class="wo-sett-menu-scroll">
<div class="wo-sett-who-card">
<div class="wo-sett-who-av" id="wo-sett-avatar">W</div>
<div class="wo-sett-who-info">
<div class="wo-sett-who-name" id="wo-sett-active-name">Wallet</div>
<div class="wo-sett-who-addr" id="wo-sett-active-addr">—</div>
</div>
</div>
<div class="wo-sett-cats">
<button class="wo-sett-cat" data-sett-cat="wallets">
<div class="wo-sett-ci wo-sett-ci-wallets">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><rect x="2" y="5" width="20" height="15" rx="3"/><path d="M2 10h20M16 14h.01"/></svg>
</div>
<div class="wo-sett-cat-texts">
<div class="wo-sett-cat-name">Wallets</div>
<div class="wo-sett-cat-sub" id="wo-cat-sub-wallets">Manage your wallets</div>
</div>
<svg class="wo-sett-cat-chev" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"></polyline></svg>
</button>
<button class="wo-sett-cat" data-sett-cat="networks">
<div class="wo-sett-ci wo-sett-ci-networks">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><path d="M2 12h20M12 2a15.3 15.3 0 0 1 4 10 15.3 15.3 0 0 1-4 10 15.3 15.3 0 0 1-4-10 15.3 15.3 0 0 1 4-10z"/></svg>
</div>
<div class="wo-sett-cat-texts">
<div class="wo-sett-cat-name">Networks</div>
<div class="wo-sett-cat-sub">Solana · EVM · Custom RPC</div>
</div>
<svg class="wo-sett-cat-chev" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"></polyline></svg>
</button>
<button class="wo-sett-cat" data-sett-cat="security">
<div class="wo-sett-ci wo-sett-ci-security">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 22s8-4 8-10V5l-8-3-8 3v7c0 6 8 10 8 10z"/></svg>
</div>
<div class="wo-sett-cat-texts">
<div class="wo-sett-cat-name">Security & Actions</div>
<div class="wo-sett-cat-sub">PIN · Auto-lock · Export</div>
</div>
<svg class="wo-sett-cat-chev" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"></polyline></svg>
</button>
<button class="wo-sett-cat" data-sett-cat="connected-sites">
<div class="wo-sett-ci" style="background:rgba(34,197,94,0.12);color:#22c55e">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"/><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"/></svg>
</div>
<div class="wo-sett-cat-texts">
<div class="wo-sett-cat-name">Connected Sites</div>
<div class="wo-sett-cat-sub" id="wo-cat-sub-connsites">Manage dApp connections</div>
</div>
<svg class="wo-sett-cat-chev" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"></polyline></svg>
</button>
<button class="wo-sett-cat" data-sett-cat="services">
<div class="wo-sett-ci" style="background:rgba(168,85,247,0.12);color:#a855f7">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M12 2L2 7l10 5 10-5-10-5z"/><path d="M2 17l10 5 10-5"/><path d="M2 12l10 5 10-5"/></svg>
</div>
<div class="wo-sett-cat-texts">
<div class="wo-sett-cat-name">Services</div>
<div class="wo-sett-cat-sub">Houdini Swap · API keys</div>
</div>
<svg class="wo-sett-cat-chev" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"></polyline></svg>
</button>
</div>
<div class="wo-sett-footer">WhiteOwl · v1.0</div>
</div>
</div>
<div class="wo-wlt-view" id="wo-wlt-sett-connected-sites">
<div class="wo-wlt-nav">
<button class="wo-wlt-back" data-back="settings">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 18 9 12 15 6"></polyline></svg>
</button>
<span class="wo-wlt-nav-title">Connected Sites</span>
<span></span>
</div>
<div class="wo-sett-scroll">
<div class="wo-sett-section">
<div class="wo-sett-section-hd">Active Connections</div>
<div id="wo-conn-sites-list" class="wo-conn-sites-list">
<div class="wo-conn-empty">No connected sites</div>
</div>
<button class="wo-btn wo-btn-danger wo-btn-sm wo-btn-block" id="wo-disconnect-all-btn" style="margin-top:12px;display:none">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="width:13px;height:13px"><path d="M18.36 6.64a9 9 0 1 1-12.73 0"/><line x1="12" y1="2" x2="12" y2="12"/></svg>
Disconnect All
</button>
</div>
</div>
</div>
<div class="wo-wlt-view" id="wo-wlt-sett-wallets">
<div class="wo-wlt-nav">
<button class="wo-wlt-back" data-back="settings">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 18 9 12 15 6"></polyline></svg>
</button>
<span class="wo-wlt-nav-title">Wallets</span>
<span></span>
</div>
<div class="wo-sett-scroll">
<div class="wo-sett-section">
<div class="wo-sett-section-hd">My Wallets</div>
<div id="wo-wlt-list"></div>
<div class="wo-sett-add-btn-wrap">
<button class="wo-btn wo-btn-success wo-btn-sm wo-btn-block" id="wo-wlt-add-btn">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="width:13px;height:13px"><line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line></svg>
Add Wallet
</button>
</div>
</div>
</div>
</div>
<div class="wo-wlt-view" id="wo-wlt-sett-networks">
<div class="wo-wlt-nav">
<button class="wo-wlt-back" data-back="settings">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 18 9 12 15 6"></polyline></svg>
</button>
<span class="wo-wlt-nav-title">Networks</span>
<span></span>
</div>
<div class="wo-sett-scroll">
<div class="wo-sett-section">
<div class="wo-sett-section-hd">Networks</div>
<div class="wo-sett-row">
<div class="wo-sett-row-info">
<div class="wo-net-icon sol">
<svg viewBox="0 0 397.7 311.7" xmlns="http://www.w3.org/2000/svg" style="width:20px;height:20px"><defs><linearGradient id="sol-grad" x1="360" y1="351" x2="-95" y2="-44" gradientUnits="userSpaceOnUse"><stop offset="0%" stop-color="#9945ff"/><stop offset="100%" stop-color="#14f195"/></linearGradient></defs><path fill="url(#sol-grad)" d="M64.6 237.9c2.4-2.4 5.7-3.8 9.2-3.8h317.4c5.8 0 8.7 7 4.6 11.1l-62.7 62.7c-2.4 2.4-5.7 3.8-9.2 3.8H6.5c-5.8 0-8.7-7-4.6-11.1l62.7-62.7zm0-164.6c2.4-2.4 5.7-3.8 9.2-3.8h317.4c5.8 0 8.7 7 4.6 11.1l-62.7 62.7c-2.4 2.4-5.7 3.8-9.2 3.8H6.5c-5.8 0-8.7-7-4.6-11.1l62.7-62.7zM333.1 3.8C330.7 1.4 327.4 0 323.9 0H6.5C.7 0-2.2 7 1.9 11.1l62.7 62.7c2.4 2.4 5.7 3.8 9.2 3.8h317.4c5.8 0 8.7-7 4.6-11.1L333.1 3.8z"/></svg>
</div>
<div>
<div class="wo-sett-row-name">Solana</div>
<div class="wo-sett-row-sub">Always enabled</div>
</div>
</div>
<div class="wo-toggle on disabled"></div>
</div>
<button class="wo-sett-row wo-sett-row-btn" id="wo-sol-rpc-btn">
<div class="wo-sett-row-info">
<div class="wo-net-icon" style="background:rgba(153,69,255,0.12);color:#a78bfa">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><path d="M13 2 4 14h6l-1 8 9-12h-6l1-8z"></path></svg>
</div>
<div>
<div class="wo-sett-row-name">Solana RPC</div>
<div class="wo-sett-row-sub" id="wo-sol-rpc-label">api.mainnet-beta.solana.com</div>
</div>
</div>
<div class="wo-sett-chevron"><svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2.5" stroke-linecap="round" stroke-linejoin="round"><polyline points="9 18 15 12 9 6"></polyline></svg></div>
</button>
<div id="wo-networks-list"></div>
<div class="wo-sett-add-btn-wrap">
<button class="wo-btn wo-btn-sm wo-btn-block" id="wo-add-net-btn" style="border-color:rgba(139,92,246,0.25);color:var(--primary2)">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="width:13px;height:13px"><line x1="12" y1="5" x2="12" y2="19"></line><line x1="5" y1="12" x2="19" y2="12"></line></svg>
Add Custom Network
</button>
</div>
</div>
</div>
</div>
<div class="wo-wlt-view" id="wo-wlt-sett-services">
<div class="wo-wlt-nav">
<button class="wo-wlt-back" data-back="settings">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 18 9 12 15 6"></polyline></svg>
</button>
<span class="wo-wlt-nav-title">Services</span>
<span></span>
</div>
<div class="wo-sett-scroll">
<div class="wo-sett-section">
<div class="wo-sett-section-hd" style="display:flex;align-items:center;gap:6px">
<span style="color:#a855f7">🎩</span> Houdini Swap
<button class="wo-houdini-info-btn" id="wo-houdini-info-btn" title="What is Houdini Swap?">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="width:14px;height:14px"><circle cx="12" cy="12" r="10"/><path d="M9.09 9a3 3 0 0 1 5.83 1c0 2-3 3-3 3"/><line x1="12" y1="17" x2="12.01" y2="17"/></svg>
</button>
</div>
<div class="wo-sett-row-desc">Private Send uses Houdini Swap to break on-chain links between sender and recipient.</div>
<label class="wo-sett-field-label">API Key</label>
<div class="wo-sett-field-row">
<input type="password" id="wo-houdini-key" class="wo-sett-field-input" placeholder="Your Houdini API key" autocomplete="off" spellcheck="false">
<button class="wo-sett-field-eye" id="wo-houdini-key-eye" title="Show/hide">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="width:14px;height:14px"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3"/></svg>
</button>
</div>
<label class="wo-sett-field-label" style="margin-top:10px">API Secret</label>
<div class="wo-sett-field-row">
<input type="password" id="wo-houdini-secret" class="wo-sett-field-input" placeholder="Your Houdini API secret" autocomplete="off" spellcheck="false">
<button class="wo-sett-field-eye" id="wo-houdini-secret-eye" title="Show/hide">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" style="width:14px;height:14px"><path d="M1 12s4-8 11-8 11 8 11 8-4 8-11 8-11-8-11-8z"/><circle cx="12" cy="12" r="3"/></svg>
</button>
</div>
<div class="wo-sett-field-status" id="wo-houdini-status"></div>
<button class="wo-btn wo-btn-sm wo-btn-primary wo-btn-block" id="wo-houdini-save" style="margin-top:12px">Save Houdini Keys</button>
</div>
</div>
</div>
<div class="wo-houdini-popup-overlay" id="wo-houdini-popup" style="display:none">
<div class="wo-houdini-popup">
<div class="wo-houdini-popup-hd">
<span>🎩 Houdini Swap</span>
<button class="wo-modal-close" id="wo-houdini-popup-close">×</button>
</div>
<div class="wo-houdini-popup-body">
<p><strong>What is Houdini Swap?</strong></p>
<p>Houdini Swap is a non-custodial privacy transaction protocol. It uses liquidity pools and routing to break the on-chain link between sender and recipient.</p>
<p><strong>How to get API keys:</strong></p>
<ol>
<li>Go to <strong>houdiniswap.com</strong></li>
<li>Register as a Partner in the developer section</li>
<li>Generate an API Key + Secret in your dashboard</li>
<li>Paste them here</li>
</ol>
<p><strong>Fees:</strong> Houdini charges a small service fee (shown in the quote before sending).</p>
<p><strong>Time:</strong> Private sends typically take 2–5 minutes.</p>
</div>
</div>
</div>
<div class="wo-wlt-view" id="wo-wlt-sett-security">
<div class="wo-wlt-nav">
<button class="wo-wlt-back" data-back="settings">
<svg viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"><polyline points="15 18 9 12 15 6"></polyline></svg>
</button>
<span class="wo-wlt-nav-title">Security & Actions</span>
<span></span>
</div>
<div class="wo-sett-scroll">
<div class="wo-sett-section">