-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
972 lines (826 loc) · 40.6 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Favicon -->
<!-- 16x16 and 32x32 pixels for desktop browsers -->
<link rel="icon" type="image/png" sizes="16x16" href="/images/icon-16.png">
<link rel="icon" type="image/png" sizes="32x32" href="/images/icon-32.png">
<!-- For iOS devices -->
<link rel="apple-touch-icon" sizes="180x180" href="/images/icon-180.png">
<!-- For Android devices -->
<link rel="manifest" href="manifest.webmanifest">
<!-- For Windows devices -->
<meta name="msapplication-TileColor" content="#E6E6E6">
<meta name="msapplication-TileImage" content="/images/icon-144.png">
<meta name="theme-color" content="#E6E6E6">
<link rel="icon" type="image/svg+xml" href="images/icon.svg" >
<!-- OpenGraph meta tags for social sharing -->
<meta property="og:title" content="WalletUncon - the WalletUnconference at DEVConnect Istanbul">
<meta property="og:description" content="WalletUncon is a one day unconference on wallets, standards, usability, and more. Come learn from some foundational overview talks, and then split into groups for discussion.">
<meta property="og:image" content="https://walletuncon.org/images/open-graph.png">
<meta property="og:url" content="https://walletuncon.org">
<meta property="og:type" content="website">
<!-- X preview -->
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:site" content="@walletuncon">
<meta name="twitter:creator" content="@walletuncon">
<meta name="twitter:title" content="WalletUncon - the WalletUnconference at DEVConnect Istanbul">
<meta name="twitter:description" content="WalletUncon is a one day unconference on wallets, standards, usability, and more. Come learn from some foundational overview talks, and then split into groups for discussion.">
<meta name="twitter:image" content="https://walletuncon.org/images/open-graph.png">
<title>WalletUncon</title>
<style>
/****************************************************************************
*****************************************************************************
*****************************************************************************
normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css
*****************************************************************************
*****************************************************************************
****************************************************************************/
/* Sections
========================================================================== */
/**
* 1. Correct the line height in all browsers.
* 2. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
line-height: 1.15; /* 1 */
-webkit-text-size-adjust: 100%; /* 2 */
}
/* Sections
========================================================================== */
/**
* Remove the margin in all browsers.
*/
body {
margin: 0;
}
/**
* Render the `main` element consistently in IE.
*/
main {
display: block;
}
/**
* Correct the font size and margin on `h1` elements within `section` and
* `article` contexts in Chrome, Firefox, and Safari.
*/
h1 {
font-size: 2em;
margin: 0.67em 0;
}
/* Grouping content
========================================================================== */
/**
* 1. Add the correct box sizing in Firefox.
* 2. Show the overflow in Edge and IE.
*/
hr {
box-sizing: content-box; /* 1 */
height: 0; /* 1 */
overflow: visible; /* 2 */
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
pre {
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
}
/* Text-level semantics
========================================================================== */
/**
* Remove the gray background on active links in IE 10.
*/
a {
background-color: transparent;
}
/**
* 1. Remove the bottom border in Chrome 57-
* 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
*/
abbr[title] {
border-bottom: none; /* 1 */
text-decoration: underline; /* 2 */
text-decoration: underline dotted; /* 2 */
}
/**
* Add the correct font weight in Chrome, Edge, and Safari.
*/
b,
strong {
font-weight: bolder;
}
/**
* 1. Correct the inheritance and scaling of font size in all browsers.
* 2. Correct the odd `em` font sizing in all browsers.
*/
code,
kbd,
samp {
font-family: monospace, monospace; /* 1 */
font-size: 1em; /* 2 */
}
/**
* Add the correct font size in all browsers.
*/
small {
font-size: 80%;
}
/**
* Prevent `sub` and `sup` elements from affecting the line height in
* all browsers.
*/
sub,
sup {
font-size: 75%;
line-height: 0;
position: relative;
vertical-align: baseline;
}
sub {
bottom: -0.25em;
}
sup {
top: -0.5em;
}
/* Embedded content
========================================================================== */
/**
* Remove the border on images inside links in IE 10.
*/
img {
border-style: none;
}
/* Forms
========================================================================== */
/**
* 1. Change the font styles in all browsers.
* 2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
font-family: inherit; /* 1 */
font-size: 100%; /* 1 */
line-height: 1.15; /* 1 */
margin: 0; /* 2 */
}
/**
* Show the overflow in IE.
* 1. Show the overflow in Edge.
*/
button,
input { /* 1 */
overflow: visible;
}
/**
* Remove the inheritance of text transform in Edge, Firefox, and IE.
* 1. Remove the inheritance of text transform in Firefox.
*/
button,
select { /* 1 */
text-transform: none;
}
/**
* Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type="button"],
[type="reset"],
[type="submit"] {
-webkit-appearance: button;
}
/**
* Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
border-style: none;
padding: 0;
}
/**
* Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
outline: 1px dotted ButtonText;
}
/**
* Correct the padding in Firefox.
*/
fieldset {
padding: 0.35em 0.75em 0.625em;
}
/**
* 1. Correct the text wrapping in Edge and IE.
* 2. Correct the color inheritance from `fieldset` elements in IE.
* 3. Remove the padding so developers are not caught out when they zero out
* `fieldset` elements in all browsers.
*/
legend {
box-sizing: border-box; /* 1 */
color: inherit; /* 2 */
display: table; /* 1 */
max-width: 100%; /* 1 */
padding: 0; /* 3 */
white-space: normal; /* 1 */
}
/**
* Add the correct vertical alignment in Chrome, Firefox, and Opera.
*/
progress {
vertical-align: baseline;
}
/**
* Remove the default vertical scrollbar in IE 10+.
*/
textarea {
overflow: auto;
}
/**
* 1. Add the correct box sizing in IE 10.
* 2. Remove the padding in IE 10.
*/
[type="checkbox"],
[type="radio"] {
box-sizing: border-box; /* 1 */
padding: 0; /* 2 */
}
/**
* Correct the cursor style of increment and decrement buttons in Chrome.
*/
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
height: auto;
}
/**
* 1. Correct the odd appearance in Chrome and Safari.
* 2. Correct the outline style in Safari.
*/
[type="search"] {
-webkit-appearance: textfield; /* 1 */
outline-offset: -2px; /* 2 */
}
/**
* Remove the inner padding in Chrome and Safari on macOS.
*/
[type="search"]::-webkit-search-decoration {
-webkit-appearance: none;
}
/**
* 1. Correct the inability to style clickable types in iOS and Safari.
* 2. Change font properties to `inherit` in Safari.
*/
::-webkit-file-upload-button {
-webkit-appearance: button; /* 1 */
font: inherit; /* 2 */
}
/* Interactive
========================================================================== */
/*
* Add the correct display in Edge, IE 10+, and Firefox.
*/
details {
display: block;
}
/*
* Add the correct display in all browsers.
*/
summary {
display: list-item;
}
/* Misc
========================================================================== */
/**
* Add the correct display in IE 10+.
*/
template {
display: none;
}
/**
* Add the correct display in IE 10.
*/
[hidden] {
display: none;
}
/****************************************************************************
*****************************************************************************
*****************************************************************************
DESIGN SYSTEM TOKENS
*****************************************************************************
*****************************************************************************
****************************************************************************/
/* Default colors (Light mode) */
:root {
--blue: #094EFF;
--gray-0: #f8f8f8;
--gray-50: #E6E6E6;
--gray-100: #cacaca;
--gray-800: #373737;
--gray-900: #292929;
--accent-color: var(--blue);
--fg-color: var(--gray-900);
--border-color: var(--gray-0);
--bg-color: var(--gray-50);
--spacing-unit: 8px;
}
/* Override colors for Dark mode */
@media (prefers-color-scheme: dark) {
:root {
--fg-color: var(--gray-50);
--bg-color: var(--gray-900);
--border-color: var(--gray-800);
}
}
/* Font definition for CommitMono-450-Regular.otf */
@font-face {
font-family: 'CommitMono';
src: url('fonts/CommitMono-450-Regular.otf') format('opentype');
font-weight: 450;
font-style: normal;
font-display: swap; /* Optional, enhances font rendering performance */
}
/* Font definition for CommitMono-700-Regular.otf */
@font-face {
font-family: 'CommitMono';
src: url('fonts/CommitMono-700-Regular.otf') format('opentype');
font-weight: 700;
font-style: normal;
font-display: swap; /* Optional, enhances font rendering performance */
}
/****************************************************************************
*****************************************************************************
*****************************************************************************
THE GOODS
*****************************************************************************
*****************************************************************************
****************************************************************************/
html,body {
background-color: var(--bg-color);
color: var(--fg-color);
font-family: 'CommitMono', monospace; /* monospace is the fallback font */
font-size: 16px;
line-height: 150%;
box-sizing: border-box;
}
h1,h2,h3,h4,h5,h6 {
font-size: 1rem;
}
h1 {
font-size: 1.67rem;
}
a {
color: var(--accent-color);
}
/****************************************************************************
*****************************************************************************
*****************************************************************************
THE GOODS
*****************************************************************************
*****************************************************************************
****************************************************************************/
/* Helpers
========================================================================== */
.accent-text { color: var(--accent-color) }
/* only show for screen readers: https://cloudfour.com/thinks/see-no-evil-hidden-content-and-accessibility/ */
.sr-only {
border: 0;
clip: rect(0 0 0 0);
clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
-webkit-clip-path: polygon(0px 0px, 0px 0px, 0px 0px);
height: 1px;
margin: -1px;
overflow: hidden;
padding: 0;
position: absolute;
width: 1px;
white-space: nowrap;
}
.btn {
background: var(--fg-color);
padding: 12px 16px;
text-decoration: none;
font-weight: 700;
color: var(--bg-color);
text-align: center;
display: inline-block;
box-sizing: border-box;
border: 3px ridge var(--bg-color);
border-radius: 3px;
}
@media screen and (max-width: 699px) {
.btn {
width: 100%;
}
}
.btn-primary {
background-color: var(--accent-color);
color: var(--gray-50);
border: 3px ridge var(--accent-color);
}
/* Page Header
========================================================================== */
html {
min-width: 320px;
}
.page-header {
padding: calc(var(--spacing-unit) * 5);
text-align: center;
border-bottom: 3px groove var(--border-color);
}
@media screen and (min-width: 700px) {
.page-header h1 {
display: flex;
justify-content: center;
align-items: center;
gap: 16px;
}
.page-header h2 {
margin-top: -32px;
margin-left: 44px;
}
}
.page-header .logo-type {
max-width: 100%;
}
.page-content {
max-width: 700px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: calc(var(--spacing-unit) * 3);
padding: calc(var(--spacing-unit) * 5);
}
/* Conference Pitch
========================================================================== */
.conference-pitch {
display: flex;
flex-direction: column;
}
@media screen and (min-width: 700px) {
.conference-pitch {
gap: calc(var(--spacing-unit) * 3);
}
}
.marquee-text {
padding: 16px 32px;
background-color: #EAFF09;
color: var(--gray-900);
border: 3px groove #EAFF09;
}
.intro-text {
padding: 16px 32px;
background-color: var(--accent-color);
color: var(--gray-50);
}
.intro-text a,
.intro-text a:hover {
color: var(--gray-0);
}
@media screen and (min-width: 700px) {
.actions {
display: flex;
justify-content: center;
gap: calc(var(--spacing-unit) * 2);
}
}
@media screen and (max-width: 699px) {
.registration-button {
position: fixed;
bottom: 40px;
left: 40px;
width: calc(100vw - 80px);
z-index: 100000;
}
}
/* Sessions
========================================================================== */
.speaker-cards {
/* display: grid; */
columns: 1;
gap: calc(var(--spacing-unit) * 2);
}
.speaker-card {
background-color: var(--border-color);
max-width: 100%;
column-width: 2;
border: 3px groove var(--border-color);
display: block;
box-sizing: border-box;
margin-bottom: calc(var(--spacing-unit) * 2);
}
@media screen and (min-width: 480px) {
.speaker-cards {
columns: 2;
}
}
/* Schedule
========================================================================== */
.schedule {
padding: 24px;
border: 3px groove var(--border-color);
}
/* FAQs
========================================================================== */
.conference-details {
display: flex;
flex-direction: column;
}
/* First two flex items */
.conference-detail-block {
padding: 32px;
flex: 1;
border: 3px groove var(--border-color);
}
.conference-detail-block *:first-child {
margin-top: 0;
}
.conference-detail-block *:last-child {
margin-bottom: 0;
}
.conference-detail-block:not(:last-child) {
border-bottom: none;
}
ul {
padding-left: 0;
list-style-type: circle;
}
li {
margin-bottom: 1rem;
}
/* Page Footer
========================================================================== */
.page-footer {
text-align: center;
padding: 0 40px 132px;
line-height: 140%;
padding: calc(var(--spacing-unit) * 5);
}
.social-links {
display: flex;
justify-content: center;
align-items: center;
gap: 32px;
margin: 16px;
}
.social-links a {
text-decoration: none;
}
.social-links svg {
vertical-align: middle;
margin-right: 4px;
}
</style>
<script>
function shuffleItems(containerEl) {
for (var i = containerEl.children.length; i >= 0; i--) {
containerEl.appendChild(containerEl.children[Math.random() * i | 0]);
}
}
document.addEventListener('DOMContentLoaded', function() {
var organizers = document.querySelector('#organizer-cards');
var speakers = document.querySelector('#speaker-cards');
shuffleItems(organizers);
shuffleItems(speakers);
});
</script>
</head>
<body>
<header class="page-header">
<h1>
<svg class="logo-symbol" width="90" height="113" viewBox="0 0 90 113" fill="none" xmlns="http://www.w3.org/2000/svg">
<g clip-path="url(#clip0_24_90)">
<path d="M55.8621 3.09297V32.1421H86.8966V80.8563H55.8621V109.907L51.2069 107.229L5.37517 80.8563L4.65517 80.4419L3.10345 79.5496V33.4489L5.37517 32.1421L6.2069 31.6642L10.0303 29.4636L51.2069 5.77148L55.8621 3.09297ZM55.8621 0C55.3267 0 54.7898 0.137637 54.3103 0.414458L49.6552 3.09297L8.47862 26.7851L4.65517 28.9857L3.825 29.4621L1.55172 30.7704C0.591207 31.3225 0 32.3447 0 33.4489V79.5496C0 80.6553 0.591207 81.676 1.55172 82.2281L3.10345 83.1204L3.8219 83.5349L49.6536 109.907L54.3088 112.586C54.7883 112.862 55.3252 113 55.8605 113C56.3959 113 56.9328 112.862 57.4122 112.586C58.3728 112.033 58.964 111.011 58.964 109.907V83.9493H86.895C88.6097 83.9493 89.9985 82.5652 89.9985 80.8563V32.1421C89.9985 30.4332 88.6097 29.0491 86.895 29.0491H58.964V3.09297C58.964 1.98723 58.3728 0.966552 57.4122 0.414458C56.9328 0.137637 56.3959 0 55.8605 0L55.8621 0Z" fill="currentColor"/>
<path d="M52.7586 8.44995V32.1421H11.582L52.7586 8.44995Z" fill="currentColor"/>
<path d="M83.7931 35.2351V77.7634H55.8621V60.234L54.3104 59.3417L12.4138 35.2351H83.7931Z" fill="currentColor"/>
<path d="M52.7586 62.0202V104.55L6.20691 77.7634V35.2351L52.7586 62.0202Z" fill="currentColor"/>
</g>
<defs>
<clipPath id="clip0_24_90">
<rect width="90" height="113" fill="white"/>
</clipPath>
</defs>
</svg>
<svg class="logo-type" width="408" height="47" viewBox="0 0 408 47" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M27.416 45H7.57598L0.599976 0.199951H10.52L17.432 44.808H17.496L24.856 0.199951H44.824L52.952 44.872H53.016L58.84 0.199951H68.824L62.872 45H43.032L34.84 0.327953H34.776L27.416 45Z" fill="currentColor"/>
<path d="M81.4 45.832C75.128 45.832 68.6 42.504 68.6 35.784C68.6 29.128 75.832 26.376 81.72 26.056L95.032 25.352V24.776C95.032 20.424 91 19.336 86.52 19.336C81.528 19.336 78.264 21.512 78.264 24.52H69.368C69.368 15.816 75.768 12.04 86.52 12.04C98.424 12.04 104.44 16.648 104.44 26.824V44.936H95.16V33.544C95.16 44.104 85.176 45.832 81.4 45.832ZM84.984 39.048C88.824 38.792 95.16 37.768 95.16 33.288V31.624L86.328 32.072C84.216 32.2 78.392 32.392 78.392 35.4C78.392 38.216 82.552 39.176 84.984 39.048Z" fill="currentColor"/>
<path d="M107.662 45V0.199951H117.71V45H107.662Z" fill="currentColor"/>
<path d="M120.912 45V0.199951H130.96V45H120.912Z" fill="currentColor"/>
<path d="M152.018 46.28C141.138 46.28 134.226 40.328 134.226 29.32C134.226 17.8 140.626 12.232 151.762 12.232C163.026 12.232 169.81 18.12 169.81 29.384V31.88L143.314 31.944C143.314 36.168 147.73 38.216 152.146 38.216C156.562 38.216 159.442 36.744 160.018 34.568H169.298C167.698 42.824 161.618 46.28 152.018 46.28ZM143.314 25.928L160.274 26.12C160.274 22.28 155.41 20.296 151.826 20.296C147.858 20.296 143.314 22.088 143.314 25.928Z" fill="currentColor"/>
<path d="M187.86 7.36795C187.86 11.72 189.972 13 194.132 13H197.14V21.064H187.86V32.2C187.86 34.632 188.756 35.912 190.804 35.912H197.14V45H187.284C181.332 45 178.196 40.968 178.196 34.568V21.064H171.412V13H187.22C182.228 13 178.132 12.872 178.132 3.84795V0.199951H187.86V7.36795Z" fill="currentColor"/>
<path d="M200.734 27.72V0.199951H207.838V27.528C207.838 36.808 214.942 38.152 223.006 38.152C230.75 38.152 238.302 36.744 238.302 27.528V0.199951H245.406V27.72C245.406 41.992 234.846 45 223.006 45C211.166 45 200.734 41.928 200.734 27.72Z" fill="currentColor"/>
<path d="M256.527 27.784V45H249.295V13H256.527V26.056C256.527 15.688 265.487 11.976 271.311 11.976C275.919 11.976 285.647 13.384 285.647 26.248V45H278.415V27.784C278.415 21.64 274.063 18.568 268.751 18.568C263.119 18.568 256.527 21.704 256.527 27.784Z" fill="currentColor"/>
<path d="M289.546 29.192C289.546 18.568 297.162 12.488 307.466 12.488C315.978 12.488 325.706 16.264 325.834 25.992H318.538C317.578 20.744 312.458 19.016 308.042 19.016C299.53 19.016 296.714 23.752 296.714 29.192C296.714 34.632 299.274 39.496 307.85 39.496C312.266 39.496 317.514 37.832 318.538 32.584H325.834C325.642 42.632 315.722 46.088 307.786 46.088C296.97 46.088 289.546 40.264 289.546 29.192Z" fill="currentColor"/>
<path d="M329.546 29C329.546 17.608 336.522 12.36 348.49 12.36C360.266 12.36 367.05 17.224 367.05 29C367.05 40.008 360.074 45.512 348.49 45.512C337.482 45.512 329.546 40.008 329.546 29ZM336.714 28.936C336.714 36.36 341.45 39.176 348.49 39.176C355.85 39.176 359.882 35.592 359.882 28.936C359.882 22.024 355.786 18.76 348.49 18.76C341.13 18.76 336.714 22.28 336.714 28.936Z" fill="currentColor"/>
<path d="M378.152 27.784V45H370.92V13H378.152V26.056C378.152 15.688 387.112 11.976 392.936 11.976C397.544 11.976 407.272 13.384 407.272 26.248V45H400.04V27.784C400.04 21.64 395.688 18.568 390.376 18.568C384.744 18.568 378.152 21.704 378.152 27.784Z" fill="currentColor"/>
</svg>
<span class="sr-only">WalletUncon</span>
</h1>
<h2 class="accent-text">Nov 17th, 2023 @ <a href="https://devconnect.org">DevConnect Istanbul</a></h2>
</header>
<div class="page-content">
<section class="conference-pitch">
<div class="actions">
<a href="https://app.streameth.org/devconnect/wallet_unconference" class="btn btn-secondary registration-button">
<span aria-hidden="true">⌱</span>
Recordings
</a>
</div>
<div class="actions">
<a href="http://notes.2023.walletuncon.org" class="btn btn-primary registration-button">
<span aria-hidden="true">◰</span>
Notes
</a>
</div>
</section>
<div>
<a id="speakers"></a>
<h1>Scheduled Speakers<sup><small>{in random order}</small></sup></h1>
<p>
There will be <a href="https://hackmd.io/PSAuGF9nR2-isyWoaCtLYw?view#Agenda">scheduled lightning talks</a> in the morning. And <a href="https://hackmd.io/PSAuGF9nR2-isyWoaCtLYw?view#Agenda">scheduled breakout sessions</a> in the afternoon. The time and location of <a href="https://hackmd.io/PSAuGF9nR2-isyWoaCtLYw?view#Unscheduled-Proposals">unscheduled sessions</a> will be finalized the day of the conference.
</p>
<div class="speaker-cards" id="speaker-cards">
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/V3SFRN/">
<img class="speaker-card" src="/images/speaker-cards/aaliyah.png" alt="Aaliyah Pierre - Fostering Inclusive Web3 Wallet Design"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/BWLNCC/">
<img class="speaker-card" src="/images/speaker-cards/agost.png" alt="Agost Biro - How to avoid asking for permission?"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/MZNEKF/">
<img class="speaker-card" src="/images/speaker-cards/antony.png" alt="Antony Denyer - Designing standards for mempool innovation using eth_sendRawTransaction"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/EDKSYB/">
<img class="speaker-card" src="/images/speaker-cards/ariutokintumi.png" alt="ariutokintumi - hello Mempool; pushBoundaries, invokeRollAMate"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/MHYNWA/">
<img class="speaker-card" src="/images/speaker-cards/baki.png" alt="Baki Er - Bringing Web2 Habits to Web3 with Battle-tested Security"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/GCF7RA/">
<img class="speaker-card" src="/images/speaker-cards/boidushya.png" alt="Boidushya - EIP-6963: Multi-Injected Provider Discovery"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/X3TVG3/">
<img class="speaker-card" src="/images/speaker-cards/booga.png" alt="Booga - The Great Wall..et accessibility in Web3"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/EHPNDP/">
<img class="speaker-card" src="/images/speaker-cards/cali.png" alt="Cali - CAIP-222: Improving UX for wallet authentication"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/8LJKXF/">
<img class="speaker-card" src="/images/speaker-cards/dan.png" alt="Dan Finlay - Decoding the Enigma: A model for transaction safety"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/E8ZEP7/">
<img class="speaker-card" src="/images/speaker-cards/dawson.png" alt="Dawson - The Shopping Cart: A Batched Approach to Wallet Transactions"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/3VU7MJ/">
<img class="speaker-card" src="/images/speaker-cards/dc.png" alt="DC Posch - Address and payment request standards"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/XHFBVP/">
<img class="speaker-card" src="/images/speaker-cards/eva.png" alt="Eva Shon - Understanding Account Abstraction bundling's relationship to mevboost block building"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/8MC3PZ/">
<img class="speaker-card" src="/images/speaker-cards/federico.png" alt="Federico Kunze Külllmer - Revolutionizing Crypto Wallet UX: A Glimpse into the Future"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/ADXSA8/">
<img class="speaker-card" src="/images/speaker-cards/filipa.png" alt="Filipa Ribeiro - Designing Iron Wallet: a developer-centric crypto wallet to give web3 developers the tools they deserve"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/RS9UVY/">
<img class="speaker-card" src="/images/speaker-cards/franco.png" alt="Franco Riccobaldi - Enhancing Wallet Safety Against Compromised dApps"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/ZFXYQQ/">
<img class="speaker-card" src="/images/speaker-cards/harish.png" alt="Harish Raisinghani - Applying Atomic Design Principles to Modular Wallet Development"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/K8K7GU/">
<img class="speaker-card" src="/images/speaker-cards/harpalsinh.png" alt="Harpalsinh Jadeja - Death by a thousand accounts"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/79HLD3/">
<img class="speaker-card" src="/images/speaker-cards/HarryR.png" alt="HarryR - Intents for multi-chain low-code non-custodial DeFi wallets"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/JK8Y9B/">
<img class="speaker-card" src="/images/speaker-cards/hassan.png" alt="Hassan - How we help get to the next billion through specs"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/TEVZGD/">
<img class="speaker-card" src="/images/speaker-cards/ira.png" alt="Ira Nezhynska - Speculative design for reverse-engineering your wallet's reputation"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/LWQU79/">
<img class="speaker-card" src="/images/speaker-cards/ivo.png" alt="Ivo Georgiev - Schnorr signatures and AA: a match made in heaven"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/RTUWX9/">
<img class="speaker-card" src="/images/speaker-cards/jenny.png" alt="Jenny Pollack - Working definitions for emerging web3 standards"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/9QGLLM/">
<img class="speaker-card" src="/images/speaker-cards/konrad.png" alt="Konrad Urban - How can wallets deal with the multichain nightmare?"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/RS9UVY/">
<img class="speaker-card" src="/images/speaker-cards/matias.png" alt="Matias Sequeira - Enahancing Wallet Safety Against Compromised dApps"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/7ARNY3/">
<img class="speaker-card" src="/images/speaker-cards/matt.png" alt="Matt Hamilton - Dude, Where's My Data? Data Wallets to the Rescue"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/3VU7MJ/">
<img class="speaker-card" src="/images/speaker-cards/nalin.png" alt="Nalin B - Address and payment request standards"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/3RZGCS/">
<img class="speaker-card" src="/images/speaker-cards/nichanan.png" alt="Nichanan Kesonpat - The Path to Interoperability for Embedded Wallets"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/S8CYZP/">
<img class="speaker-card" src="/images/speaker-cards/pablo.png" alt="Pablo Sabbatella - Unmasking the Connections: The Power and NEcessity of Web3 Mapping"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/CHPTSV/">
<img class="speaker-card" src="/images/speaker-cards/parsa.png" alt="Parsa Attari - MPC + AA: The Unexpected Dynamic Duo"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/JREZKR/">
<img class="speaker-card" src="/images/speaker-cards/rui.png" alt="Rui - Passkey: Bridgin Ultimate Experience to Web3"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/RHTURT/">
<img class="speaker-card" src="/images/speaker-cards/shahriar.png" alt="Shariar Javidi - Deployment Validation Files: A Proposal to Ensure Sanity of the Deployed Smart Contracts"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/MUJNRV/">
<img class="speaker-card" src="/images/speaker-cards/stani.png" alt="Stani Kulechov - The future of wallets"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/M7MAZ8/">
<img class="speaker-card" src="/images/speaker-cards/thibault.png" alt="Thibaut Sardan - How does Account Abstraction look like on Polkadot"/>
</a>
<a href="https://cfp.walletuncon.org/walletuncon-2023/talk/GBSLLC/">
<img class="speaker-card" src="/images/speaker-cards/uliana.png" alt="Uliana Skladchikova - The Coming Evolution of BLockchain Explorers and Wallets"/>
</a>
</div>
</div>
<div>
<a id="faqs"></a>
<h1>FAQs</h1>
<section class="conference-details">
<div class="conference-detail-block">
<h3>Why should you come?</h3>
<p>WalletUncon is a one day <a href="#unconference-definition">unconference</a> on blockchain wallets, standards, usability, and more.</p>
<p>Are you actively working on designing or improving a Wallet in the web3 space? Then this is your chance to put forward a problem, a solution, or a collaboration proposal that you've been thinking about for a while, or even just an idea you've been thinking about that could have a massive impact to the web3 ecosystem. </p>
</div>
<div class="conference-detail-block">
<h3>Who’ll be there?</h3>
<p>Our collaborative event includes web3 enthusiasts, infrastructure heads, producty creatives, and wallet-focused builders, all of whom can bring their respective insights to any collaborative conversation about user design, security, and/or ergonomics.</p>
</div>
<div class="conference-detail-block full">
<h3>Who should come?</h3>
<p>All DevConnnect attendees are welcome-- Wallet implementers, DApp and smart contract implementers or EIP/CAIP enthusiasts-- as long as you commit to sharing ideas respectively and productively (DevCon's <a href="https://devcon.org" target="blank" noreferrer>code of conduct</a> applies!).</p>
</div>
<div class="conference-detail-block full">
<a id="unconference-definition"></a>
<h3>What is an unconference?</h3>
<p>Don't expect a conference — expect an unconference! We'll give you a primer the morning of, but encourage you to familiarize yourself with the format<sup><a href="#footnote-1">1</a></sup>. We've prepared <a href="https://docs.google.com/presentation/d/15LGx-NSt9_mTZweGjmPoUnQ7owthpg3brLRS2AaIUn8/edit#slide=id.g23bca70b10b_0_1">a primer</a>.</p>
<p>The goal is for everyone to participate, and for all of us to walk away with next steps. Lightning talks to focus us in the morning and Fishbowl style workshops & discussions in the afternoon to go deep.</p>
<p>If you're running a workshop session you won't need to prepare a traditional presentation and lecture for 30 minutes. Just bring a topic with some good questions or opinions and we'll help get the right people in the room.</p>
</div>
<div class="conference-detail-block full">
<ol>
<li><a id="footnote-1"></a>A history of the unconference format: <a href="https://en.wikipedia.org/wiki/Unconference">https://en.wikipedia.org/wiki/Unconference</a>
</li>
</ol>
</div>
</section>
</div>
<div>
<a id="organizers"></a>
<h1>Organizing Team</h1>
<div class="conference-detail-block full">
<p>This event was made possible by the efforts and contributions of (in random order):</p>
<ul id="organizer-cards">
<li><a href="https://twitter.com/bmann">Boris Mann</a></li>
<li><a href="https://twitter.com/by_caballero">bumblefudge</a></li>
<li><a href="https://twitter.com/PryvitKyle">Kyle Den Hartog</a></li>
<li><a href="https://ligi.de">Ligi</a></li>
<li><a href="https://twitter.com/depatchedmode">depatchedmode</a></li>
<li><a href="https://twitter.com/tanyaef_">Tanya</li>
<li><a href="https://twitter.com/ulerdogan">Ulaş Erdogan</a></li>
</ul>
</div>
</div>
</div>
<footer class="page-footer">
<span class="accent-text">Copy anything from this site, if you want. 2023.</span>
<div class="social-links">
<a aria-label="Follow WalletUncon on Bluesky"
target="_blank"
href="https://bsky.app/profile/walletuncon.org">
Bluesky: @walletuncon.org
</a>
<a aria-label="Follow WalletUncon on Github"
target="_blank"
href="https://github.com/WalletUnCon">
Github: WalletUnCon
</a>
<a aria-label="Follow WalletUncon on Twitter / X"
target="_blank"
href="https://twitter.com/WalletUncon">
Twitter/X: @WalletUncon
</a>
</div>
</footer>
</body>
</html>