-
Notifications
You must be signed in to change notification settings - Fork 0
/
manage-my-rwa.html
2674 lines (2008 loc) · 134 KB
/
manage-my-rwa.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
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>
<!-- Last Published: Thu Nov 23 2023 13:19:52 GMT+0000 (Coordinated Universal Time) -->
<html data-wf-domain="http://da-age.io" data-wf-page="64c10870834e365b75c97b45" data-wf-site="6421898f81ec56cd303380ec">
<head>
<meta charset="utf-8"/>
<title>DA-AGE Rewards - Home</title>
<meta content="DA-AGE Rewards - Home" property="og:title"/>
<meta content="DA-AGE Rewards - Home" property="twitter:title"/>
<meta content="width=device-width, initial-scale=1" name="viewport"/>
<link href="./Content/Styles/scking/css/sacking.css" rel="stylesheet" type="text/css"/>
<link href="https://fonts.googleapis.com" rel="preconnect"/>
<link href="https://fonts.gstatic.com" rel="preconnect" crossorigin="anonymous"/>
<link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/toastify-js/src/toastify.min.css">
<link href="./Content/Styles/images/favicon.png" rel="shortcut icon" type="image/x-icon"/>
<link href="./Content/Styles/images/webclip.png" rel="apple-touch-icon"/>
<link rel="alternate" hreflang="en" href="https://www.da-age.io">
<link rel="alternate" hreflang="zh" href="https://zh.da-age.io">
<script type="text/javascript" src="https://cdn.weglot.com/weglot.min.js"></script>
<script src="./Scripts/web3/web3.min.js"></script>
<script src="./Scripts/jQuery/jquery.min.js"></script>
<script src="./Content/Styles/js/metaData.js"></script>
<script src="./Content/Styles/js/metaDataS2.js"></script>
<script src="./Content/Styles/js/snapshot.js"></script>
<script src="./Scripts/web3/toastify.js"></script>
<script src="./Scripts/web3/keccak256.js"></script>
<script src="./Scripts/web3/merkletree.js"></script>
<script src="./Content/Styles/js/ethers.5.2.js"></script>
<script>
Weglot.initialize({
api_key: 'wg_fec8c057afeab8ee9b278e80d67c74d42'
});
</script>
<style>
.container-fluid {
color:#fff;
}
.container {
margin-right: auto!important;
padding: 0px;
}
.container ul {
display: flex;
flex-wrap: wrap;
flex-grow: 10;
padding: 0px;
}
.container ul li {
display: flex;
flex-direction: column;
margin:0 10px 10px;
align-items: center;
flex: 0 0 calc(100%/3 - 20px);
}
.container ul li span {
color:#fff;
margin-top: 10px;
}
.pages {
width: 300px;
margin:40px auto 0;
margin-right: auto!important;
display: flex;
justify-content: center;
margin-left: 100px;
}
.pages button {
margin:0 10px;
width: 80px;
height: 30px;
line-height: 30px;
color:#000;
}
.imgClass img {
width: 100%;
height: 100%;
transition: transform 0.2s;
}
.imgClass img:hover {
transform: scale(0.9);
}
#selectedButton{
background-color: #df0;
color:black;
}
#connect-wallet {
grid-area: span 1 / span 1 / span 1 / span 1;
align-self: center;
}
.select-1 {
border: 1px solid var(--yellow);
background-color: var(--nav-bar);
border-radius: 9px;
justify-content: flex-start;
margin-right: 8px;
padding-left: 10px;
padding-right: 10px;
display: block;
color: white;
text-align: center;
cursor: pointer;
text-align: left;
padding: 9px,10px;
width: 129.86px;
height: 40px;
}
.select-2 {
border: 1px solid var(--yellow);
background-color: var(--nav-bar);
border-radius: 9px;
justify-content: flex-start;
margin-right: 8px;
padding-left: 10px;
padding-right: 10px;
display: block;
color: white;
text-align: center;
cursor: pointer;
text-align: left;
padding: 9px,10px;
width: 98px;
height: 40px;
}
.select-3 {
border: 1px solid var(--yellow);
background-color: var(--nav-bar);
border-radius: 9px;
justify-content: flex-start;
margin-right: 8px;
padding-left: 10px;
padding-right: 10px;
display: block;
color: white;
text-align: center;
cursor: pointer;
text-align: left;
padding: 9px,10px;
width: 98px;
height: 40px;
}
.button-06 {
border: 1px solid var(--yellow);
background-color: var(--nav-bar);
border-radius: 20px;
justify-content: flex-start;
margin-right: 8px;
padding: 10px 10px;
display: inline-block;
text-align: center;
font-family: Inter, sans-serif;
font-size: 15px;
width: 129.86px;
height: 40px;
color:black;
}
.button-6 {
border: 1px solid var(--yellow);
background-color: var(--nav-bar);
border-radius: 20px;
justify-content: flex-start;
margin-right: 8px;
padding: 10px 10px;
display: inline-block;
text-align: center;
font-family: Inter, sans-serif;
font-size: 14px;
width: 73px;
height: 40px;
}
#w-node-d3581b41-8606-941f-4cb7-6db948465a6a-75c97b45 {
grid-area: span 1 / span 3 / span 1 / span 3;
}
.div-block-35-copy {
width: 100%;
display: flex;
justify-content: flex-start;
align-items: center;
margin-top: 17px;
overflow: hidden;
flex-wrap: wrap;
padding-bottom: 10px;
}
.load {
border: 1px solid var(--yellow);
background-color: var(--yellow);
color: var(--black);
text-align: center;
border-radius: 15px;
justify-content: flex-start;
margin-right: 8px;
padding-left: 10px;
padding-right: 10px;
display: block;
}
#HKRD {
grid-area: 4 / 1 / 5 / 3;
}
#EHKD {
grid-area: 4 / 1 / 5 / 3;
}
</style>
</style>
</head>
<body class="body-2">
<div data-w-id="7e6566d2-922c-c621-1b31-5927ada96992" data-animation="default" data-collapse="medium" data-duration="400" data-easing="ease" data-easing2="ease" role="banner" class="fn-navbar-box-second-3 w-nav">
<div class="fn-navbar-container-second-2">
<a href="#" class="fn-brand-box-4 w-nav-brand">
<img src="./Content/Styles/images/DAAGE_sss_sss.png" loading="lazy" alt=""/>
</a>
<nav role="navigation" class="fn-navbar-menu-box-second-2 w-nav-menu">
<div class="fn-navbar-menu-wrapper-second-2">
<div class="fn-navbar-links-wrapper-2">
<a href="#Marketplace" aria-current="page" class="fn-navbar-link-second-2 w-nav-link w--current">Earn Time Points</a>
<a href="#Round" class="fn-navbar-link-second-2 last-link-on-mobile w-nav-link">RWA Bonus Points Reward</a>
<div data-delay="0" data-hover="true" data-w-id="7e6566d2-922c-c621-1b31-5927ada9699d" class="fn-dorpdown-link-2 w-dropdown">
<div class="fn-navbar-link-second-2 w-dropdown-toggle">
<div>Handbook</div>
<div class="fn-dropdown-link-icon-2 w-embed">
<svg width="12" height="8" viewBox="0 0 186 105" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M-0.000732891 11.7072C-0.000732771 8.96624 1.04327 6.21424 3.14827 4.11424C7.34227 -0.0797578 14.1293 -0.0797575 18.3233 4.11424L92.6703 78.4663L167.022 4.11425C171.216 -0.0797507 178.009 -0.0797504 182.197 4.11425C186.391 8.30825 186.391 15.1013 182.197 19.2943L100.263 101.228C96.0693 105.422 89.2763 105.422 85.0883 101.228L3.14928 19.2942C1.04927 17.2012 -0.000733011 14.4542 -0.000732891 11.7072Z" fill="currentColor"/>
</svg>
</div>
</div>
<nav class="fn-navbar-link-list-2 first-look w-dropdown-list">
<a href="/marketplace/introduction-to-rwa-time-point-handbook.html" class="fn-dropdown-list-link-2 w-dropdown-link">Introduction to RWA Time Point Handbook</a>
<a href="/marketplace/rwa-time-point-calculation-handbook.html" class="fn-dropdown-list-link-2 w-dropdown-link">RWA Time Point Calculation Handbook</a>
</nav>
</div>
</div>
<div class="fn-button-wrapper-4">
<a id="connect-wallet" href="javascript:void(0);" class="fn-button-5 w-button">Connect Wallet</a>
</div>
</div>
</nav>
<div class="fn-menu-button-second-2 w-nav-button">
<div class="nav-menu-button-wrap-2">
<div class="fn-nav-line-8 green-line"></div>
<div class="fn-nav-line-5 green-line"></div>
<div class="fn-nav-line-7 green-line"></div>
</div>
</div>
</div>
</div>
<div class="fn-section-8">
<div class="fn-container-grid-4">
<div id="w-node-_5447f468-c654-1261-4904-5458ba23bec4-75c97b45" class="fh-hero-image-wrapper-second-2">
<img sizes="(max-width: 479px) 35.421875px, (max-width: 767px) 17vw, (max-width: 991px) 6vw, 542px" srcset="https://assets-global.website-files.com/6421898f81ec56cd303380ec/650d53ba590ae74a25839027_DA_AGE_KEY2-p-500.jpg 500w, https://assets-global.website-files.com/6421898f81ec56cd303380ec/650d53ba590ae74a25839027_DA_AGE_KEY2-p-800.jpg 800w, https://assets-global.website-files.com/6421898f81ec56cd303380ec/650d53ba590ae74a25839027_DA_AGE_KEY2-p-1080.jpg 1080w, https://assets-global.website-files.com/6421898f81ec56cd303380ec/650d53ba590ae74a25839027_DA_AGE_KEY2.jpg 1202w" src="https://assets-global.website-files.com/6421898f81ec56cd303380ec/650d53ba590ae74a25839027_DA_AGE_KEY2.jpg" loading="lazy" alt="" class="fn-cover-image-2"/>
</div>
<div id="w-node-_5447f468-c654-1261-4904-5458ba23bec6-75c97b45" class="fn-column-3">
<h1 class="fn-heading-13">Earn DA-AGE RWA Time Points</h1>
<p class="fn-paragraph">
RWA holder can earn Time Points each month, manage your RWA and earn your Time Points now!
</p>
<div class="fn-button-wrapper-3">
<a href="#Connect" id="w-node-_5447f468-c654-1261-4904-5458ba23becc-75c97b45" class="fn-button-3 w-button">Manage my RWA</a>
<a href="/marketplace/introduction-to-rwa-time-point-handbook.html" id="w-node-_5447f468-c654-1261-4904-5458ba23bece-75c97b45" class="fn-button-secondery-4 w-button">How it Works</a>
</div>
</div>
</div>
</div>
<div id="Connect" class="fn-section-9">
<div class="fn-container">
<div class="fn-cta-banner-dark">
<div id="w-node-aba0456c-82e9-3197-76de-9ccc6dc4a34e-75c97b45" class="fn-banner-dark-column">
<h1 class="fn-heading-2-copy">Earn Your RWA Time Points </h1>
<p class="fn-paragraph">Follow the step below to earn your Time Points: </p>
<div class="w-layout-grid grid-3">
<div id="w-node-aba0456c-82e9-3197-76de-9ccc6dc4a354-75c97b45" class="fn-features-icon w-embed">
<svg width="100%" height="100%" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.406 4.08626L10.406 0.0862548C10.278 0.0293847 10.1395 0 9.9995 0C9.85946 0 9.72097 0.0293847 9.593 0.0862548L0.593 4.08626C0.573 4.09525 0.559 4.11025 0.539 4.12125C0.511 4.13525 0.481 4.14425 0.455 4.16125C0.433 4.17625 0.416 4.19526 0.395 4.21126C0.321903 4.26558 0.257789 4.33104 0.205 4.40526C0.185 4.43326 0.164 4.45825 0.146 4.48625C0.116237 4.5391 0.0908196 4.59429 0.0699999 4.65125C0.0609999 4.67825 0.047 4.70326 0.039 4.73026C0.0138855 4.81809 0.000766547 4.90891 0 5.00025V15.0003C0 15.3963 0.232 15.7533 0.594 15.9143L9.594 19.9143C9.724 19.9723 9.862 20.0003 10 20.0003C10.1392 19.9967 10.2762 19.964 10.402 19.9043L10.406 19.9143L19.406 15.9143C19.5829 15.8358 19.7332 15.7077 19.8386 15.5454C19.9441 15.3832 20.0002 15.1938 20 15.0003V5.00025C20.0002 4.80674 19.9441 4.61735 19.8386 4.4551C19.7332 4.29284 19.5829 4.16471 19.406 4.08626ZM10 2.09525L16.538 5.00025L10 7.90525L8.692 7.32425L3.463 5.00025L10 2.09525ZM11 17.4613V9.65025L18 6.53925V14.3513L11 17.4613Z" fill="currentColor"></path>
</svg>
</div>
<h4 id="w-node-aba0456c-82e9-3197-76de-9ccc6dc4a355-75c97b45" class="heading-5">Step 1 : Connect your wallet </h4>
<a href="javascript:void(0);" id = "connect" class="fn-button-4 w-button">Connect</a>
<div id="w-node-aba0456c-82e9-3197-76de-9ccc6dc4a359-75c97b45" class="fn-features-icon w-embed">
<svg width="100%" height="100%" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.406 4.08626L10.406 0.0862548C10.278 0.0293847 10.1395 0 9.9995 0C9.85946 0 9.72097 0.0293847 9.593 0.0862548L0.593 4.08626C0.573 4.09525 0.559 4.11025 0.539 4.12125C0.511 4.13525 0.481 4.14425 0.455 4.16125C0.433 4.17625 0.416 4.19526 0.395 4.21126C0.321903 4.26558 0.257789 4.33104 0.205 4.40526C0.185 4.43326 0.164 4.45825 0.146 4.48625C0.116237 4.5391 0.0908196 4.59429 0.0699999 4.65125C0.0609999 4.67825 0.047 4.70326 0.039 4.73026C0.0138855 4.81809 0.000766547 4.90891 0 5.00025V15.0003C0 15.3963 0.232 15.7533 0.594 15.9143L9.594 19.9143C9.724 19.9723 9.862 20.0003 10 20.0003C10.1392 19.9967 10.2762 19.964 10.402 19.9043L10.406 19.9143L19.406 15.9143C19.5829 15.8358 19.7332 15.7077 19.8386 15.5454C19.9441 15.3832 20.0002 15.1938 20 15.0003V5.00025C20.0002 4.80674 19.9441 4.61735 19.8386 4.4551C19.7332 4.29284 19.5829 4.16471 19.406 4.08626ZM10 2.09525L16.538 5.00025L10 7.90525L8.692 7.32425L3.463 5.00025L10 2.09525ZM11 17.4613V9.65025L18 6.53925V14.3513L11 17.4613Z" fill="currentColor"></path>
</svg>
</div>
<h4 id="w-node-aba0456c-82e9-3197-76de-9ccc6dc4a35a-75c97b45" class="heading-5">Step 2: Press "Load My RWA,"then select and add your RWA to the pool to calculate Time Points.</h4>
<div id="w-node-_7b0df2d3-7aed-08ef-101b-ce1ed0b3c40a-75c97b45" class="fn-features-icon w-embed">
<svg width="100%" height="100%" viewBox="0 0 20 20" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M19.406 4.08626L10.406 0.0862548C10.278 0.0293847 10.1395 0 9.9995 0C9.85946 0 9.72097 0.0293847 9.593 0.0862548L0.593 4.08626C0.573 4.09525 0.559 4.11025 0.539 4.12125C0.511 4.13525 0.481 4.14425 0.455 4.16125C0.433 4.17625 0.416 4.19526 0.395 4.21126C0.321903 4.26558 0.257789 4.33104 0.205 4.40526C0.185 4.43326 0.164 4.45825 0.146 4.48625C0.116237 4.5391 0.0908196 4.59429 0.0699999 4.65125C0.0609999 4.67825 0.047 4.70326 0.039 4.73026C0.0138855 4.81809 0.000766547 4.90891 0 5.00025V15.0003C0 15.3963 0.232 15.7533 0.594 15.9143L9.594 19.9143C9.724 19.9723 9.862 20.0003 10 20.0003C10.1392 19.9967 10.2762 19.964 10.402 19.9043L10.406 19.9143L19.406 15.9143C19.5829 15.8358 19.7332 15.7077 19.8386 15.5454C19.9441 15.3832 20.0002 15.1938 20 15.0003V5.00025C20.0002 4.80674 19.9441 4.61735 19.8386 4.4551C19.7332 4.29284 19.5829 4.16471 19.406 4.08626ZM10 2.09525L16.538 5.00025L10 7.90525L8.692 7.32425L3.463 5.00025L10 2.09525ZM11 17.4613V9.65025L18 6.53925V14.3513L11 17.4613Z" fill="currentColor"></path>
</svg>
</div>
<h4 id="w-node-b204b586-044c-3b3e-bef8-caea7d972c65-75c97b45" class="heading-5">Step 3: Choose Your Preferred Method to Collect Your Time Points.</h4>
</div>
</div>
<img id="w-node-aba0456c-82e9-3197-76de-9ccc6dc4a35e-75c97b45" sizes="(max-width: 767px) 100vw, (max-width: 991px) 36vw, (max-width: 1439px) 37vw, 481.609375px" src="https://assets-global.website-files.com/6421898f81ec56cd303380ec/655ca214e7f3a06091821784_finally3-01.png" loading="lazy" alt="" srcset="https://assets-global.website-files.com/6421898f81ec56cd303380ec/655ca214e7f3a06091821784_finally3-01-p-500.png 500w, https://assets-global.website-files.com/6421898f81ec56cd303380ec/655ca214e7f3a06091821784_finally3-01.png 751w" class="fn-cta-banner-dark-image"/>
</div>
</div>
</div>
<div class="section-3">
<div class="brix---container-default-3 w-container">
<div class="brix---inner-container-700px-center">
<div data-w-id="40de4c3f-0dfc-98c3-7aa1-4f4c602e7235" style="-webkit-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-moz-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);-ms-transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);transform:translate3d(0, 10%, 0) scale3d(1, 1, 1) rotateX(0) rotateY(0) rotateZ(0) skew(0, 0);opacity:0" class="brix---text-center-2">
<div>DA-AGE RWA</div>
<div class="brix---color-neutral-803">
<h1 class="heading-8">Manage my RWA</h1>
<p class="paragraph-33">
Choose and Submit your RWAs to the Pool for Time Point calculation.<br/>You can mange your RWAs from below:
</p>
</div>
</div>
</div>
<div class="w-layout-grid grid-4">
<div id="w-node-_40de4c3f-0dfc-98c3-7aa1-4f4c602e7272-75c97b45" class="div-block-20">
<div class="fn-features-icon-2 w-embed">
<svg width="100%" height="100%" viewBox="0 0 22 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M20.2565 6.962C20.7305 7.582 20.7305 8.419 20.2565 9.038C18.7635 10.987 15.1815 15 10.9995 15C6.81752 15 3.23552 10.987 1.74252 9.038C1.51191 8.74113 1.38672 8.37592 1.38672 8C1.38672 7.62408 1.51191 7.25887 1.74252 6.962C3.23552 5.013 6.81752 1 10.9995 1C15.1815 1 18.7635 5.013 20.2565 6.962V6.962Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
<path d="M11 11C12.6569 11 14 9.65685 14 8C14 6.34315 12.6569 5 11 5C9.34315 5 8 6.34315 8 8C8 9.65685 9.34315 11 11 11Z" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"></path>
</svg>
</div>
<div>
<div class="brix---mg-bottom-8px">
<div class="text-block-15">No. of RWA in the pool used to calculate Time Point of next month for 30 days</div>
</div>
<div class="brix---color-accent-2">
<div id = "this-month" class="text-block-13">0</div>
</div>
</div>
</div>
<div id="w-node-_40de4c3f-0dfc-98c3-7aa1-4f4c602e7284-75c97b45" class="div-block-20">
<div class="fn-features-icon-2 w-embed">
<svg width="100%" height="100%" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M17.66 4.26005C17.66 4.19005 17.56 4.12005 17.51 4.05005L17.42 3.95005C17.1872 3.66255 16.8934 3.4303 16.56 3.27005L10.16 0.270055C9.80566 0.10677 9.42015 0.0222168 9.03 0.0222168C8.63985 0.0222168 8.25434 0.10677 7.9 0.270055L1.5 3.27005C1.16826 3.43302 0.875075 3.66484 0.64 3.95005L0.52 4.00005C0.461831 4.06018 0.411437 4.12738 0.37 4.20005C0.131436 4.57727 0.00326453 5.01375 0 5.46005V12.5201C0.00133799 12.997 0.139644 13.4636 0.398468 13.8642C0.657292 14.2649 1.02574 14.5828 1.46 14.7801L7.86 17.7801C8.21569 17.9448 8.60299 18.0302 8.995 18.0302C9.38701 18.0302 9.77431 17.9448 10.13 17.7801L16.53 14.7801C16.9631 14.5856 17.3315 14.2715 17.592 13.8746C17.8524 13.4778 17.994 13.0147 18 12.5401V5.46005C17.9949 5.03701 17.8775 4.62291 17.66 4.26005ZM8.71 2.06005C8.80155 2.02043 8.90024 1.99998 9 1.99998C9.09976 1.99998 9.19845 2.02043 9.29 2.06005L14.62 4.54005L9 7.15005L3.38 4.54005L8.71 2.06005ZM2.3 13.0001C2.21293 12.9663 2.1379 12.9074 2.08447 12.8308C2.03104 12.7542 2.00163 12.6634 2 12.5701V6.10005L8 8.89005V15.6101L2.3 13.0001ZM15.69 13.0001L10 15.6101V8.89005L16 6.10005V12.5401C16.0023 12.6394 15.9737 12.737 15.9182 12.8194C15.8626 12.9018 15.7829 12.9649 15.69 13.0001Z" fill="currentColor"></path>
</svg>
</div>
<div class="div-block-23">
<div class="brix---mg-bottom-8px">
<div class="text-block-15">No. of RWAs locked in the pool are being calculated Time Points</div>
</div>
<div class="brix---color-accent-2">
<div id = "next-month" class="text-block-13">0</div>
</div>
</div>
<div class="div-block-22"></div>
</div>
</div>
</div>
</div>
<section class="section-4">
<div class="div-block-28">
<div class="w-layout-grid grid-7">
<div id="w-node-_71cceb31-6c2f-8129-e344-f4058f8942d9-75c97b45" class="div-block-29">
<h4 id = "myRWA" class="heading-11">My RWA (0) </h4>
</br>
<div id="w-node-_10fda5b0-2ab4-6d85-3d7b-eb05f936f871-75c97b45"><p class="paragraph-38">*Please note that you MUST click the ADD button twice to add the RWA to the pool, the first click is to approve it, and after it approved, the second click is to add the RWA to the pool.</p></div>
<div class="w-layout-grid grid-8" class="div-block-29-copy">
<div id="w-node-d3581b41-8606-941f-4cb7-6db948465a6a-75c97b45" class="div-block-35-copy">
<select id="select1" class="select-1" style="width: 150px;margin-top: 10px;">
<option value="0">Location</option>
<option value="A">Location A</option>
<option value="B">Location B</option>
<option value="C">Location C</option>
</select>
<select id="select2" class="select-2" style="width: 150px;margin-top: 10px;">
<option value="0">Zone</option>
<option value="1">Zone 1</option>
<option value="2">Zone 2</option>
<option value="3">Zone 3</option>
<option value="4">Zone 4</option>
<option value="5">Zone 5</option>
</select>
<select id="select3" class="select-3" style="width: 150px;margin-top: 10px;">
<option value="0">S1</option>
<option value="1">S2</option>
</select>
<a href="#" id="selectedButton" class="button-06 w-button" style="margin-top: 10px;">Load My RWA</a>
<div style="flex: 1;text-align: right;">
<button id="submit" href="#" class="button-6 w-button" style="margin-top: 10px;">ADD</button>
</div>
</div>
<div id="w-node-_71cceb31-6c2f-8129-e344-f4058f8942e0-75c97b45">
<div class="horizontal-line design-system"></div>
</div>
<div class="container mt-3" style="grid-area: span 1 / span 3 / span 1 / span 3;">
<ul id = "myHolderList" class="d-flex flex-row bg-secondary mb-4">
</ul>
</div>
<div id="w-node-_71cceb31-6c2f-8129-e344-f4058f89432a-75c97b45">
<div class="horizontal-line design-system"></div>
</div>
<div id="w-node-_71cceb31-6c2f-8129-e344-f4058f89432c-75c97b45">
<p class="paragraph-38">Action Deadlines:To ensure that participants 'desired actions (additions) align with the time points calculation and distribution cycle, it is essential to complete them before our specific date of the month. Any actions taken after this deadline will be considered for the following month. <br/>
<br/>
RWA withdrawals are only available during the specified date period of the month. You must take action during the specified date period of the month. After this date, RWAs in your pool will be considered for continued calculations of Time Points. <br/>
</p>
</div>
</div>
</div>
<div id="w-node-_71cceb31-6c2f-8129-e344-f4058f894331-75c97b45" class="div-block-33">
<div class="w-layout-grid grid-8">
<div id="w-node-_71cceb31-6c2f-8129-e344-f4058f894333-75c97b45" class="div-block-35">
<h4 id = "stakingTokenIdSize" class="heading-11"> My RWA Pool </br>Locked up RWA for Calculation of Time Points</h4>
</div>
<p id="w-node-e84787ff-f1f9-0c32-665e-bb50de6aabdc-75c97b45" class="paragraph-37">Your RWA will be lockup for 30 days, you may not able to withdraw your RWA before the unlock date. You can withdraw your RWA on the withdrawal period. </p>
<div id="w-node-_71cceb31-6c2f-8129-e344-f4058f894336-75c97b45">
<div class="horizontal-line design-system"></div>
</div>
<div class="container mt-3" style="grid-area: span 1 / span 3 / span 1 / span 3;">
<ul id = "myList" class="d-flex flex-row bg-secondary-staking mb-4">
</ul>
</div>
<div id="w-node-_8e5ee0e4-2954-6461-14c8-a353bb7faadc-75c97b45" class="div-block-35">
<h6>Select the RWA to be unlocked. Please note that this feature is only available during the withdrawal period of the month.</h6>
<a href="#" id = "unLockNFT" class="button-6 w-button">Unlock </a>
</div>
<div id="w-node-c5429d7a-2bed-8934-7751-6c83bf575712-75c97b45">
<div class="horizontal-line design-system"></div>
</div>
</div>
</div>
</div>
</div>
</section>
<div id="Marketplace" class="fn-section-410">
<div class="fn-container-grid-14">
<div id="w-node-_2820db29-b425-1d03-3905-a6fb0541483d-75c97b45" class="fn-column-center-7">
<h2 class="fn-heading-32">Earn Time Points</h2>
<p class="fn-paragraph-11">Choose your way to collect your RWA Time Point now!</p>
</div>
<div id="w-node-_2820db29-b425-1d03-3905-a6fb05414842-75c97b45" data-current="Monthly" data-easing="ease" data-duration-in="300" data-duration-out="100" class="fn-pricing-tabs-2 w-tabs">
<div class="fn-pricing-tabs-menu-2 w-tab-menu">
<a data-w-tab="Monthly" class="fn-pricing-tabs-link-left-2 w-inline-block w-tab-link w--current">
<div class="text-block-30" id = "total_TP">
Time Points <br/>
0 TP<br/>
</div>
</a>
<a data-w-tab="Yearly" class="fn-pricing-tabs-link-right-2 w-inline-block w-tab-link">
<div class="text-block-31">
Top-Up Card (max+10% TP)<br/>Coming Soon
</div>
</a>
<a data-w-tab="credit card" class="fn-pricing-tabs-link-right-2-copy w-inline-block w-tab-link">
<div class="text-block-32">
Coming soon<br/>
</div>
</a>
</div>
<div class="fn-pricing-tabs-content-2 w-tab-content">
<div data-w-tab="Monthly" class="fn-pricing-tabs-content-wrapper-2 w-tab-pane w--tab-active">
<div class="fn-pricing-tabs-grid-2">
<div id="w-node-_2820db29-b425-1d03-3905-a6fb0541484d-75c97b45" class="fn-classic-pricing-card-5">
<h3>Your monthly RWA Time Points:</h3>
<div class="fn-pricing-info-wrapper-2">
<div class="fn-pricing-icon-4 w-embed">
<svg width="49" height="49" viewBox="0 0 49 49" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M47.9542 11.663C47.9542 11.4734 47.6833 11.2839 47.5479 11.0943L47.3042 10.8234C46.6736 10.0448 45.8781 9.41576 44.975 8.98177L27.6417 0.856774C26.682 0.414545 25.6379 0.185547 24.5812 0.185547C23.5246 0.185547 22.4805 0.414545 21.5208 0.856774L4.1875 8.98177C3.28903 9.42313 2.49499 10.051 1.85833 10.8234L1.53333 10.9589C1.37579 11.1217 1.23931 11.3037 1.12708 11.5005C0.480974 12.5221 0.133841 13.7043 0.125 14.913V34.0339C0.128624 35.3257 0.503202 36.5892 1.20418 37.6743C1.90517 38.7594 2.90305 39.6203 4.07917 40.1547L21.4125 48.2797C22.3758 48.726 23.4248 48.9572 24.4865 48.9572C25.5481 48.9572 26.5971 48.726 27.5604 48.2797L44.8937 40.1547C46.0666 39.6282 47.0645 38.7773 47.7699 37.7025C48.4753 36.6276 48.8587 35.3736 48.875 34.088V14.913C48.8611 13.7673 48.5434 12.6458 47.9542 11.663ZM23.7146 5.70469C23.9625 5.59736 24.2298 5.54199 24.5 5.54199C24.7702 5.54199 25.0375 5.59736 25.2854 5.70469L39.7208 12.4214L24.5 19.4901L9.27917 12.4214L23.7146 5.70469ZM6.35417 35.3339C6.11837 35.2424 5.91515 35.0828 5.77044 34.8754C5.62573 34.668 5.54608 34.4221 5.54167 34.1693V16.6464L21.7917 24.2026V42.4026L6.35417 35.3339ZM42.6188 35.3339L27.2083 42.4026V24.2026L43.4583 16.6464V34.088C43.4645 34.357 43.3871 34.6214 43.2367 34.8445C43.0863 35.0676 42.8704 35.2386 42.6188 35.3339Z" fill="currentColor"/>
</svg>
</div>
<div>
<h3 class="heading-24" id = "total_TP">0 TP</h3>
</div>
</div>
<div class="fn-heading-29">Empower Your RWA: Earn Time Points Effortlessly</div>
<blockquote class="block-quote-4">HK (RD) will launch very soon! Stay tuned! </blockquote>
<div class="fn-pricing-line-4"></div>
<ol role="list" class="fn-list-4">
<li class="fn-list-item-4">
<div class="fn-list-checkmark-4"></div>
<div class="text-block-24">RWA holders own the advertising time rights of digital advertising billboards, but do not own physical advertising billboards.</div>
</li>
<li class="fn-list-item-4">
<div class="fn-list-checkmark-4">
<div class="fn-list-checkmark-4"></div>
</div>
<div class="text-block-25">Selected RWAs will be locked in the pool for calculation, with advertising time points automatically calculated for RWA holders each month. Users must collect their own time points every month, otherwise the time points will be cancelled. </div>
</li>
<li class="fn-list-item-4">
<div class="fn-list-checkmark-4"></div>
<div class="text-block-27">For new users, all owned RWAs that were never added to the pool or transferred will retain rights to the first 6-month collection time point. If a user ever adds any RWA to the pool, they will not be considered a new user.</div>
</li>
<li class="fn-list-item-4">
<div class="fn-list-checkmark-4"></div>
<div class="text-block-29">The total time point will be calculated based on the number, location, and area of RWAs you have.</div>
</li>
<li class="fn-list-item-4">
<div class="fn-list-checkmark-4"></div>
<div class="text-block-29">The time points you accumulate can be accumulated for up to 1 year for redemption. If you do not redeem the time points after 1 year, they will be cancelled.</div>
</li>
<li class="fn-list-item-4">
<div class="fn-list-checkmark-4"></div>
<div class="text-block-29">If you sell or transfer your RWA to another wallet, your time points will not accrue.</div>
</li>
</ol>
<div class="spacer-s-5"></div>
<div class="sizing-2"></div>
</div>
<div id="w-node-_2820db29-b425-1d03-3905-a6fb05414871-75c97b45" class="fn-feature-pricing-card-7">
<div class="my-rwa">My RWAs</div>
<div class="w-layout-grid grid-10">
<h5 id="w-node-_3fe65e3d-18c5-799a-2d4d-9ca2cd1e2d81-75c97b45" class="heading-23">RWA</h5>
<h6 id="w-node-_92d26bd2-760d-a166-a5ea-50d180a85a3a-75c97b45" class="heading-14-copy">Location A</h6>
<h6 id="w-node-_5f16934b-8a3d-c002-e98e-0490a26b6bb4-75c97b45" class="heading-14-copy">Location B</h6>
<h6 id="w-node-_2eac04a7-c281-2c5c-7126-63b5d7fe9070-75c97b45" class="heading-14-copy">Location C</h6>
<h6 id="w-node-b1c8a1bd-e293-ba42-b6eb-42926080335b-75c97b45" class="heading-22-copy">ZONE 1 </h6>
<h5 id="My-RWAs-Zone1-LA" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone1-LB" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone1-LC" class="heading-16">0 PCS</h5>
<h6 id="w-node-b484c1bb-5426-7075-c6b6-cfd99a6090f5-75c97b45" class="heading-22-copy">Zone 2</h6>
<h5 id="My-RWAs-Zone2-LA" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone2-LB" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone2-LC" class="heading-16">0 PCS</h5>
<h6 id="w-node-fb852e6d-cc08-9727-c29f-e400a4500288-75c97b45" class="heading-22-copy">ZOne 3</h6>
<h5 id="My-RWAs-Zone3-LA" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone3-LB" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone3-LC" class="heading-16">0 PCS</h5>
<h6 id="w-node-_773a8b8c-7404-ac1b-fae1-9d27fd69c3aa-75c97b45" class="heading-22-copy">Zone 4</h6>
<h5 id="My-RWAs-Zone4-LA" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone4-LB" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone4-LC" class="heading-16">0 PCS</h5>
<h6 id="w-node-_90a8437c-ce5f-0195-1768-0fe649b27852-75c97b45" class="heading-22-copy">Zone 5</h6>
<h5 id="My-RWAs-Zone5-LA" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone5-LB" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone5-LC" class="heading-16">0 PCS</h5>
</div>
<div class="fn-pricing-line-4"></div>
<div class="w-layout-grid grid-11-copy">
<h5 id="w-node-b20573c8-f3f6-394a-3660-48a626695629-75c97b45" class="total-rwa">TOTAL RWA Locked</h5>
<h5 id="total_pcs" class="total-rwa-number" >0 PCS</h5>
<h5 id="w-node-_426d6c5f-81bf-223d-aeb4-763ce7ea3a42-75c97b45" class="total-rwa">RWA Time POINTS</h5>
<h5 id="TP" class="total-rwa-number">0 TP</h5>
<h5 id="reward_tp" class="total-rwa" style="display: none;">contributor reward tp</h5>
<h5 id="RWA_TP" class="total-rwa-number" style="display: none;">0 tp</h5>
<h5 id="w-node-_0aff56d6-b173-8715-8b18-1913801c7bbc-75c97b45" class="total-rwa">TOTAL TIME POINTs</h5>
<h5 id="total_TP" class="total-rwa-number-copy">0 TP</h5>
<p id="w-node-_2e689970-ab83-42f3-8e8e-8bd73beb81f2-75c97b45" class="paragraph-32">* When HK (RD) is launched, you can choose this currency.</p>
</div>
<div class="spacer-s-5"></div>
<div class="w-form">
<form id="email-form" name="email-form" data-name="Email Form" method="get" data-wf-page-id="64c10870834e365b75c97b45" data-wf-element-id="c796d9f8-ccd3-0034-bfb4-65e970ec8d6d">
<label class="w-checkbox">
<span id="checkbox-error" style="display: none; color: #df0;">Please check this box.</span>
<input type="checkbox" name="checkbox" id="checkbox" data-name="Checkbox" required="" class="w-checkbox-input"/>
<span class="w-form-label" for="checkbox">
I agree to use my one month Advertising Time rights to operate the Digital Billboard and get Time Points in return.<br/>
<br/>
</span>
</label>
<label class="w-checkbox">
<span id="checkbox-2-error" style="display: none; color: #df0;">Please check this box.</span>
<input type="checkbox" name="checkbox-2" id="checkbox-2" data-name="Checkbox 2" required="" class="w-checkbox-input"/>
<span class="w-form-label" for="checkbox-2">I agree to trade my RWA Advertising Time rights ONLY but not the RWA itself. </span>
</label>
<div class="spacer-s-5"></div> <!--Collect my Time Points -->
<input type="button" data-wait="Please wait..." class="submit-button-2 w-button" value="Collect my Time Points" id = "register"/>
</form>
<div class="success-message-2 w-form-done">
<div class="text-block-33">Please wait for this feature to be rolled out</div>
</div>
<div class="error-message-2 w-form-fail">
<div class="text-block-34">Please wait for this feature to be rolled out</div>
</div>
</div>
</div>
</div>
</div>
<div data-w-tab="Yearly" class="fn-pricing-tabs-content-wrapper-2 w-tab-pane">
<div class="fn-pricing-tabs-grid-2">
<div id="w-node-_7cc1ef8b-a55a-d534-b51a-d234515e2ddf-75c97b45" class="fn-classic-pricing-card-5">
<h3>Earn up to 10% Extra Time Point:</h3>
<div class="fn-pricing-info-wrapper-2">
<div class="fn-pricing-icon-4 w-embed">
<svg width="49" height="49" viewBox="0 0 49 49" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M47.9542 11.663C47.9542 11.4734 47.6833 11.2839 47.5479 11.0943L47.3042 10.8234C46.6736 10.0448 45.8781 9.41576 44.975 8.98177L27.6417 0.856774C26.682 0.414545 25.6379 0.185547 24.5812 0.185547C23.5246 0.185547 22.4805 0.414545 21.5208 0.856774L4.1875 8.98177C3.28903 9.42313 2.49499 10.051 1.85833 10.8234L1.53333 10.9589C1.37579 11.1217 1.23931 11.3037 1.12708 11.5005C0.480974 12.5221 0.133841 13.7043 0.125 14.913V34.0339C0.128624 35.3257 0.503202 36.5892 1.20418 37.6743C1.90517 38.7594 2.90305 39.6203 4.07917 40.1547L21.4125 48.2797C22.3758 48.726 23.4248 48.9572 24.4865 48.9572C25.5481 48.9572 26.5971 48.726 27.5604 48.2797L44.8937 40.1547C46.0666 39.6282 47.0645 38.7773 47.7699 37.7025C48.4753 36.6276 48.8587 35.3736 48.875 34.088V14.913C48.8611 13.7673 48.5434 12.6458 47.9542 11.663ZM23.7146 5.70469C23.9625 5.59736 24.2298 5.54199 24.5 5.54199C24.7702 5.54199 25.0375 5.59736 25.2854 5.70469L39.7208 12.4214L24.5 19.4901L9.27917 12.4214L23.7146 5.70469ZM6.35417 35.3339C6.11837 35.2424 5.91515 35.0828 5.77044 34.8754C5.62573 34.668 5.54608 34.4221 5.54167 34.1693V16.6464L21.7917 24.2026V42.4026L6.35417 35.3339ZM42.6188 35.3339L27.2083 42.4026V24.2026L43.4583 16.6464V34.088C43.4645 34.357 43.3871 34.6214 43.2367 34.8445C43.0863 35.0676 42.8704 35.2386 42.6188 35.3339Z" fill="currentColor"/>
</svg>
</div>
<div>
<h3 class="heading-26">0 HK(RD)</h3>
</div>
</div>
<div class="fn-heading-29">
DA AGE member <br/>TOP-UP CARD
</div>
<p class="paragraph-31">You can use the stored credit on your DA AGE member Top-up card to shop at stores that display the DA AGE logo. Enjoy shopping with DA AGE at many different locations, including convenience stores, restaurants, and shopping malls.</p>
<blockquote class="block-quote-4">HK(RD) will launch very soon! Stay tuned! </blockquote>
<div class="fn-pricing-line-4"></div>
<ol role="list" class="fn-list-4">
<li class="fn-list-item-4">
<div class="fn-list-checkmark-4"></div>
<div class="text-block-24">RWA holders own the advertising time rights of digital advertising billboards, but do not own physical advertising billboards.</div>
</li>
<li class="fn-list-item-4">
<div class="fn-list-checkmark-4">
<div class="fn-list-checkmark-4"></div>
</div>
<div class="text-block-25">Selected RWAs will be locked in the pool for calculation, with advertising time points automatically calculated for RWA holders every month. RWAs that have never been added to the pool or transfer will retain the right to collect time points for the first 6 months. </div>
</li>
<li class="fn-list-item-4">
<div class="fn-list-checkmark-4"></div>
<div class="text-block-27">The total time point will be calculated based on the number, location, and area of RWAs you have</div>
</li>
<li class="fn-list-item-4">
<div class="fn-list-checkmark-4"></div>
<div class="text-block-29">Your time points calculated in the pool can be accumulated for up to 1 year and will be cancelled after 1 year if you do not collect the time points to your account.</div>
</li>
<li class="fn-list-item-4">
<div class="fn-list-checkmark-4"></div>
<div class="text-block-29">If you sell or transfer your RWA to another wallet, your time points will not accrue.</div>
</li>
</ol>
<div class="spacer-s-5"></div>
<div class="sizing-2"></div>
</div>
<div id="w-node-_7cc1ef8b-a55a-d534-b51a-d234515e2e0c-75c97b45" class="fn-feature-pricing-card-7">
<div class="my-rwa">My RWAs</div>
<div class="w-layout-grid grid-10">
<h5 id="w-node-_533f1463-5c7d-cc41-d665-cc254b18018b-75c97b45" class="heading-23">RWA</h5>
<h6 id="w-node-_533f1463-5c7d-cc41-d665-cc254b18018d-75c97b45" class="heading-14-copy">Location A</h6>
<h6 id="w-node-_533f1463-5c7d-cc41-d665-cc254b18018f-75c97b45" class="heading-14-copy">Location B</h6>
<h6 id="w-node-_533f1463-5c7d-cc41-d665-cc254b180191-75c97b45" class="heading-14-copy">Location C</h6>
<h6 id="w-node-b1c8a1bd-e293-ba42-b6eb-42926080335b-75c97b45" class="heading-22-copy">ZONE 1 </h6>
<h5 id="My-RWAs-Zone1-LA" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone1-LB" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone1-LC" class="heading-16">0 PCS</h5>
<h6 id="w-node-b484c1bb-5426-7075-c6b6-cfd99a6090f5-75c97b45" class="heading-22-copy">Zone 2</h6>
<h5 id="My-RWAs-Zone2-LA" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone2-LB" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone2-LC" class="heading-16">0 PCS</h5>
<h6 id="w-node-fb852e6d-cc08-9727-c29f-e400a4500288-75c97b45" class="heading-22-copy">ZOne 3</h6>
<h5 id="My-RWAs-Zone3-LA" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone3-LB" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone3-LC" class="heading-16">0 PCS</h5>
<h6 id="w-node-_773a8b8c-7404-ac1b-fae1-9d27fd69c3aa-75c97b45" class="heading-22-copy">Zone 4</h6>
<h5 id="My-RWAs-Zone4-LA" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone4-LB" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone4-LC" class="heading-16">0 PCS</h5>
<h6 id="w-node-_90a8437c-ce5f-0195-1768-0fe649b27852-75c97b45" class="heading-22-copy">Zone 5</h6>
<h5 id="My-RWAs-Zone5-LA" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone5-LB" class="heading-16">0 PCS</h5>
<h5 id="My-RWAs-Zone5-LC" class="heading-16">0 PCS</h5>
</div>
<div class="fn-pricing-line-4"></div>
<div class="w-layout-grid grid-11">
<h5 id="w-node-_7cc1ef8b-a55a-d534-b51a-d234515e2e26-75c97b45" class="total-rwa">TOTAL RWA Locked</h5>
<h5 id="total_pcs" class="total-rwa-number">0 PCS</h5>
<h5 id="w-node-_477320c4-694b-dcdd-bf02-d26fd9737c2d-75c97b45" class="total-rwa">Total AD Time POINT</h5>
<h5 id="total_tp_two" class="total-rwa-number">0 TP</h5>
<h5 id="w-node-_8442214b-2542-5da1-b8ff-7fe114303424-75c97b45" class="total-rwa-number-copy"></h5>
<h5 id="w-node-_61170690-427c-ef55-3345-f007520e9ef2-75c97b45" class="total-rwa">Estimated Value</h5>
</div>
<div class="spacer-s-5"></div>
<div class="w-form">
<form id="email-form" name="email-form" data-name="Email Form" method="get" data-wf-page-id="64c10870834e365b75c97b45" data-wf-element-id="7cc1ef8b-a55a-d534-b51a-d234515e2e34">
<label class="w-checkbox">
<input type="checkbox" name="checkbox-3" id="checkbox-3" data-name="Checkbox 3" class="w-checkbox-input"/>
<span class="w-form-label" for="checkbox-3">
I agree to use my one month Advertising Time rights to operate the Digital Billboard and get Time Point in return.<br/>
</span>
</label>
<label class="w-checkbox">
<input type="checkbox" name="checkbox-2" id="checkbox-2" data-name="Checkbox 2" class="w-checkbox-input"/>
<span class="w-form-label" for="checkbox-2">
I agree to trade my RWA Advertising TIme rights ONLY but not the RWA itself.<br/>
</span>
</label>
<div class="spacer-s-5"></div>
<input type="button" data-wait="Please wait..." class="submit-button-2-copy w-button" value="(Coming soon)" id = "hkrd"/>
</form>
<div class="success-message-2 w-form-done">
<div class="text-block-33">Please wait for this feature to be rolled out</div>
</div>
<div class="error-message-2 w-form-fail">
<div class="text-block-34">Please wait for this feature to be rolled out.</div>
</div>
</div>
</div>
</div>
</div>
<div data-w-tab="credit card" class="w-tab-pane">
<h1 class="heading-19">
STAY TUNED!<br/>Something Exciting is coming soon!
</h1>
</div>
</div>
</div>
</div>
</div>
<div id="Round" class="fn-section-9 overflow-none">
<div class="fn-container">
<div class="fn-cta-banner">
<div class="fn-cta-banner-column">
<h1 class="fn-heading-14">
Bonus Points Reward
</h1>
<p class="fn-paragraph-dark">Collect More RWAs and earn extra Time Points!</p>
<a href="#" class="fn-button-dark-2 w-button">Coming Soon</a>
</div>
<img class="fn-banner-image-one" src="https://assets-global.website-files.com/6421898f81ec56cd303380ec/655ca2578812f16ecc9bf37c_clock3s.png" alt="" style="opacity:0" sizes="(max-width: 991px) 100vw, 250px" data-w-id="00f04e0e-b7b2-e8e9-fd06-534b7098486b" loading="lazy" srcset="https://assets-global.website-files.com/6421898f81ec56cd303380ec/655ca2578812f16ecc9bf37c_clock3s-p-500.png 500w, https://assets-global.website-files.com/6421898f81ec56cd303380ec/655ca2578812f16ecc9bf37c_clock3s.png 768w"/>
<img class="fn-banner-image-two" src="https://assets-global.website-files.com/6421898f81ec56cd303380ec/655ca2503cd08cfc68192d20_clock626s.png" alt="" style="opacity:0" sizes="(max-width: 991px) 100vw, 172px" data-w-id="00f04e0e-b7b2-e8e9-fd06-534b7098486c" loading="lazy" srcset="https://assets-global.website-files.com/6421898f81ec56cd303380ec/655ca2503cd08cfc68192d20_clock626s-p-500.png 500w, https://assets-global.website-files.com/6421898f81ec56cd303380ec/655ca2503cd08cfc68192d20_clock626s.png 768w"/>
<img class="fn-banner-image-three" src="https://assets-global.website-files.com/6421898f81ec56cd303380ec/655ca267692fd6a2c6c3fbf3_clock2s.png" alt="" style="opacity:0" sizes="(max-width: 991px) 100vw, 246px" data-w-id="00f04e0e-b7b2-e8e9-fd06-534b7098486d" loading="lazy" srcset="https://assets-global.website-files.com/6421898f81ec56cd303380ec/655ca267692fd6a2c6c3fbf3_clock2s-p-500.png 500w, https://assets-global.website-files.com/6421898f81ec56cd303380ec/655ca267692fd6a2c6c3fbf3_clock2s.png 768w"/>
</div>
</div>
</div>
<div id="FAQ" class="fn-section-9">
<div class="fn-container-grid2">
<div id="w-node-ef787643-75ce-f3a8-63ad-144f80aef353-75c97b45" class="fn-column-4">
<h1 class="heading-6">FAQ</h1>
</div>
<div id="w-node-ef787643-75ce-f3a8-63ad-144f80aef356-75c97b45" class="fn-faq-classic-wrapper">
<div class="fn-faq-item-toggle">
<div class="fn-faq-intro">
<div class="fn-heading-5-no-margin">What is the deadline for taking action to collect RWA Time Points?</div>
<div id="w-node-ef787643-75ce-f3a8-63ad-144f80aef35b-75c97b45" class="fn-faq-arrow-down w-embed">
<svg width="30" height="30" viewBox="0 0 30 30" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path d="M30 15C30 18.9782 28.4196 22.7936 25.6066 25.6066C22.7936 28.4196 18.9782 30 15 30C11.0218 30 7.20644 28.4196 4.3934 25.6066C1.58035 22.7936 0 18.9782 0 15C0 11.0218 1.58035 7.20644 4.3934 4.3934C7.20644 1.58035 11.0218 0 15 0C18.9782 0 22.7936 1.58035 25.6066 4.3934C28.4196 7.20644 30 11.0218 30 15ZM15.9375 8.4375C15.9375 8.18886 15.8387 7.9504 15.6629 7.77459C15.4871 7.59877 15.2486 7.5 15 7.5C14.7514 7.5 14.5129 7.59877 14.3371 7.77459C14.1613 7.9504 14.0625 8.18886 14.0625 8.4375L14.0625 19.2994L10.0387 15.2738C9.86271 15.0977 9.62395 14.9988 9.375 14.9988C9.12605 14.9988 8.88729 15.0977 8.71125 15.2738C8.53521 15.4498 8.43632 15.6885 8.43632 15.9375C8.43632 16.1865 8.53521 16.4252 8.71125 16.6012L14.3363 22.2262C14.4233 22.3136 14.5268 22.3828 14.6407 22.4301C14.7546 22.4773 14.8767 22.5017 15 22.5017C15.1233 22.5017 15.2454 22.4773 15.3593 22.4301C15.4732 22.3828 15.5767 22.3136 15.6637 22.2262L21.2887 16.6012C21.4648 16.4252 21.5637 16.1865 21.5637 15.9375C21.5637 15.6885 21.4648 15.4498 21.2887 15.2738C21.1127 15.0977 20.874 14.9988 20.625 14.9988C20.376 14.9988 20.1373 15.0977 19.9613 15.2738L15.9375 19.2994L15.9375 8.4375Z" fill="currentColor"/>
</svg>
</div>
</div>
<div class="spacer-s-2"></div>
<p class="fn-paragraph-no-margin-2">It is essential to complete any actions (such as adding RWAs to the pool) before the specific date of the month. Any actions taken after this deadline will be considered for the following month. </p>
</div>
<div class="fn-faq-item-toggle">
<div class="fn-faq-intro">
<div class="fn-heading-5-no-margin">Can you explain the process of selling AD Time Value?</div>
<div id="w-node-ef787643-75ce-f3a8-63ad-144f80aef363-75c97b45" class="fn-faq-arrow-down w-embed">
<svg width="30" height="30" viewBox="0 0 30 30" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path d="M30 15C30 18.9782 28.4196 22.7936 25.6066 25.6066C22.7936 28.4196 18.9782 30 15 30C11.0218 30 7.20644 28.4196 4.3934 25.6066C1.58035 22.7936 0 18.9782 0 15C0 11.0218 1.58035 7.20644 4.3934 4.3934C7.20644 1.58035 11.0218 0 15 0C18.9782 0 22.7936 1.58035 25.6066 4.3934C28.4196 7.20644 30 11.0218 30 15ZM15.9375 8.4375C15.9375 8.18886 15.8387 7.9504 15.6629 7.77459C15.4871 7.59877 15.2486 7.5 15 7.5C14.7514 7.5 14.5129 7.59877 14.3371 7.77459C14.1613 7.9504 14.0625 8.18886 14.0625 8.4375L14.0625 19.2994L10.0387 15.2738C9.86271 15.0977 9.62395 14.9988 9.375 14.9988C9.12605 14.9988 8.88729 15.0977 8.71125 15.2738C8.53521 15.4498 8.43632 15.6885 8.43632 15.9375C8.43632 16.1865 8.53521 16.4252 8.71125 16.6012L14.3363 22.2262C14.4233 22.3136 14.5268 22.3828 14.6407 22.4301C14.7546 22.4773 14.8767 22.5017 15 22.5017C15.1233 22.5017 15.2454 22.4773 15.3593 22.4301C15.4732 22.3828 15.5767 22.3136 15.6637 22.2262L21.2887 16.6012C21.4648 16.4252 21.5637 16.1865 21.5637 15.9375C21.5637 15.6885 21.4648 15.4498 21.2887 15.2738C21.1127 15.0977 20.874 14.9988 20.625 14.9988C20.376 14.9988 20.1373 15.0977 19.9613 15.2738L15.9375 19.2994L15.9375 8.4375Z" fill="currentColor"/>
</svg>
</div>
</div>
<div class="spacer-s-2"></div>
<p class="fn-paragraph-no-margin-2">By choosing to sell your AD Time Value, you trade one month of advertising time, transferring ownership to advertising companies in exchange for the Acquisition Price.</p>
</div>
</div>
<div id="w-node-ef787643-75ce-f3a8-63ad-144f80aef367-75c97b45" class="fn-faq-classic-wrapper">
<div class="fn-faq-item-toggle">
<div class="fn-faq-intro">
<div class="fn-heading-5-no-margin">Can I withdraw my RWAs after the deadline?</div>
<div id="w-node-ef787643-75ce-f3a8-63ad-144f80aef36c-75c97b45" class="fn-faq-arrow-down w-embed">
<svg width="30" height="30" viewBox="0 0 30 30" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path d="M30 15C30 18.9782 28.4196 22.7936 25.6066 25.6066C22.7936 28.4196 18.9782 30 15 30C11.0218 30 7.20644 28.4196 4.3934 25.6066C1.58035 22.7936 0 18.9782 0 15C0 11.0218 1.58035 7.20644 4.3934 4.3934C7.20644 1.58035 11.0218 0 15 0C18.9782 0 22.7936 1.58035 25.6066 4.3934C28.4196 7.20644 30 11.0218 30 15ZM15.9375 8.4375C15.9375 8.18886 15.8387 7.9504 15.6629 7.77459C15.4871 7.59877 15.2486 7.5 15 7.5C14.7514 7.5 14.5129 7.59877 14.3371 7.77459C14.1613 7.9504 14.0625 8.18886 14.0625 8.4375L14.0625 19.2994L10.0387 15.2738C9.86271 15.0977 9.62395 14.9988 9.375 14.9988C9.12605 14.9988 8.88729 15.0977 8.71125 15.2738C8.53521 15.4498 8.43632 15.6885 8.43632 15.9375C8.43632 16.1865 8.53521 16.4252 8.71125 16.6012L14.3363 22.2262C14.4233 22.3136 14.5268 22.3828 14.6407 22.4301C14.7546 22.4773 14.8767 22.5017 15 22.5017C15.1233 22.5017 15.2454 22.4773 15.3593 22.4301C15.4732 22.3828 15.5767 22.3136 15.6637 22.2262L21.2887 16.6012C21.4648 16.4252 21.5637 16.1865 21.5637 15.9375C21.5637 15.6885 21.4648 15.4498 21.2887 15.2738C21.1127 15.0977 20.874 14.9988 20.625 14.9988C20.376 14.9988 20.1373 15.0977 19.9613 15.2738L15.9375 19.2994L15.9375 8.4375Z" fill="currentColor"/>
</svg>
</div>
</div>
<div class="spacer-s-2"></div>
<p class="fn-paragraph-no-margin-2">RWA withdrawals are only available during the specified date period of the month. It 's crucial to take action within this period. After this date, RWAs in your pool will continue to be considered for the calculation of Time Points but won 't be eligible for withdrawal until the next withdrawal period.</p>
</div>
<div class="fn-faq-item-toggle">
<div class="fn-faq-intro">
<div class="fn-heading-5-no-margin">
<strong>How long can I accumulate RWA Time Points for?</strong>
</div>
<div id="w-node-ef787643-75ce-f3a8-63ad-144f80aef375-75c97b45" class="fn-faq-arrow-down w-embed">
<svg width="30" height="30" viewBox="0 0 30 30" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path d="M30 15C30 18.9782 28.4196 22.7936 25.6066 25.6066C22.7936 28.4196 18.9782 30 15 30C11.0218 30 7.20644 28.4196 4.3934 25.6066C1.58035 22.7936 0 18.9782 0 15C0 11.0218 1.58035 7.20644 4.3934 4.3934C7.20644 1.58035 11.0218 0 15 0C18.9782 0 22.7936 1.58035 25.6066 4.3934C28.4196 7.20644 30 11.0218 30 15ZM15.9375 8.4375C15.9375 8.18886 15.8387 7.9504 15.6629 7.77459C15.4871 7.59877 15.2486 7.5 15 7.5C14.7514 7.5 14.5129 7.59877 14.3371 7.77459C14.1613 7.9504 14.0625 8.18886 14.0625 8.4375L14.0625 19.2994L10.0387 15.2738C9.86271 15.0977 9.62395 14.9988 9.375 14.9988C9.12605 14.9988 8.88729 15.0977 8.71125 15.2738C8.53521 15.4498 8.43632 15.6885 8.43632 15.9375C8.43632 16.1865 8.53521 16.4252 8.71125 16.6012L14.3363 22.2262C14.4233 22.3136 14.5268 22.3828 14.6407 22.4301C14.7546 22.4773 14.8767 22.5017 15 22.5017C15.1233 22.5017 15.2454 22.4773 15.3593 22.4301C15.4732 22.3828 15.5767 22.3136 15.6637 22.2262L21.2887 16.6012C21.4648 16.4252 21.5637 16.1865 21.5637 15.9375C21.5637 15.6885 21.4648 15.4498 21.2887 15.2738C21.1127 15.0977 20.874 14.9988 20.625 14.9988C20.376 14.9988 20.1373 15.0977 19.9613 15.2738L15.9375 19.2994L15.9375 8.4375Z" fill="currentColor"/>
</svg>
</div>
</div>
<div class="spacer-s-2"></div>
<p class="fn-paragraph-no-margin-2">RWA Time Points can accumulate for up to 1 years. If not collected within this period, they will be canceled. Collect your time points regularly and redeem your time points for maximum benefits.</p>
</div>
<div class="fn-faq-item-toggle">
<div class="fn-faq-intro">
<div class="fn-heading-5-no-margin">
<strong>What happens if I sell or transfer my RWA to another wallet?</strong>
</div>
<div id="w-node-ef787643-75ce-f3a8-63ad-144f80aef375-75c97b45" class="fn-faq-arrow-down w-embed">
<svg width="30" height="30" viewBox="0 0 30 30" fill="currentColor" xmlns="http://www.w3.org/2000/svg">
<path d="M30 15C30 18.9782 28.4196 22.7936 25.6066 25.6066C22.7936 28.4196 18.9782 30 15 30C11.0218 30 7.20644 28.4196 4.3934 25.6066C1.58035 22.7936 0 18.9782 0 15C0 11.0218 1.58035 7.20644 4.3934 4.3934C7.20644 1.58035 11.0218 0 15 0C18.9782 0 22.7936 1.58035 25.6066 4.3934C28.4196 7.20644 30 11.0218 30 15ZM15.9375 8.4375C15.9375 8.18886 15.8387 7.9504 15.6629 7.77459C15.4871 7.59877 15.2486 7.5 15 7.5C14.7514 7.5 14.5129 7.59877 14.3371 7.77459C14.1613 7.9504 14.0625 8.18886 14.0625 8.4375L14.0625 19.2994L10.0387 15.2738C9.86271 15.0977 9.62395 14.9988 9.375 14.9988C9.12605 14.9988 8.88729 15.0977 8.71125 15.2738C8.53521 15.4498 8.43632 15.6885 8.43632 15.9375C8.43632 16.1865 8.53521 16.4252 8.71125 16.6012L14.3363 22.2262C14.4233 22.3136 14.5268 22.3828 14.6407 22.4301C14.7546 22.4773 14.8767 22.5017 15 22.5017C15.1233 22.5017 15.2454 22.4773 15.3593 22.4301C15.4732 22.3828 15.5767 22.3136 15.6637 22.2262L21.2887 16.6012C21.4648 16.4252 21.5637 16.1865 21.5637 15.9375C21.5637 15.6885 21.4648 15.4498 21.2887 15.2738C21.1127 15.0977 20.874 14.9988 20.625 14.9988C20.376 14.9988 20.1373 15.0977 19.9613 15.2738L15.9375 19.2994L15.9375 8.4375Z" fill="currentColor"/>
</svg>
</div>
</div>
<div class="spacer-s-2"></div>
<p class="fn-paragraph-no-margin-2">If you sell or transfer your RWA to another wallet, your Time Points will not accrue. Time Points are tied to the specific wallet that holds the RWA, so any changes in ownership will affect your ability to collect and use Time Points. Make sure to keep your RWA in the same wallet to maintain your Time Point accumulation.</p>
</div>
</div>
</div>
</div>
<div class="fn-footer-second">
<div class="fn-container-grid-5">
<div id="w-node-_89de2959-2443-07c2-4e38-60af83360a4e-83360a4c" class="fn-footer-line"></div>
<div id="w-node-_89de2959-2443-07c2-4e38-60af83360a4f-83360a4c" class="fn-legal-links-wrapper">
<a href="#" class="fn-brand-box-3 w-nav-brand">
<img src="https://assets-global.website-files.com/6421898f81ec56cd303380ec/642d5a98952aaf152d2447d9_DAAGE_sss_sss.png" loading="lazy" alt=""/>
</a>
<a href="#Marketplace" aria-current="page" class="fn-standard-white-link w--current">Earn Time Points</a>
<a href="#Round" class="fn-standard-white-link">RWA Bonus Rewards</a>
<a href="#FAQ" class="fn-standard-white-link">FAQ</a>
</div>
<div id="w-node-_89de2959-2443-07c2-4e38-60af83360a58-83360a4c" class="fn-legal-links-wrapper"></div>
</div>
</div>
<script src="https://d3e54v103j8qbb.cloudfront.net/js/jquery-3.5.1.min.dc5e7f18c8.js?site=6421898f81ec56cd303380ec" type="text/javascript" integrity="sha256-9/aliU8dGd2tb6OSsuzixeV4y/faTqgFtohetphbbj0=" crossorigin="anonymous"></script>
<script src="./Content/Styles/js/da-age-sk.js" type="text/javascript"></script>
</body>
<script type="text/javascript">
var paragraph = document.getElementById("w-node-e84787ff-f1f9-0c32-665e-bb50de6aabdc-75c97b45");
var currentDate = new Date();
var lastDay = new Date(currentDate.getFullYear(), currentDate.getMonth() + 1, 0).getDate();
paragraph.textContent = paragraph.textContent.replace(/31st Dec 2023/g, lastDay + "th " + getMonthName(currentDate.getMonth()) + " " + currentDate.getFullYear());
function getMonthName(monthIndex) {
var monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
return monthNames[monthIndex];
}
function getMonthName(monthIndex) {
var monthNames = ["January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December"];
return monthNames[monthIndex];
}
var stakingAbi = [{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"userAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"StakingDetailsEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"userAddress","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"UnlockStakingEvent","type":"event"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"getStakingNFTDetails","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_erc721Address","type":"address"}],"name":"setErc721TokenAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_stakeEnabled","type":"bool"}],"name":"setStakeState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_days","type":"uint256"}],"name":"stakingNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"unStakingNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"withDrawAllNfts","outputs":[],"stateMutability":"nonpayable","type":"function"}];
var stakingAddress = "0xC5e63465E6CC75D5fc635720B3Fe8CeC3955D8B8";//main "0xC5e63465E6CC75D5fc635720B3Fe8CeC3955D8B8";
var stakingS2Address = "0x96B9c08828E4B102a73002DDDC2CFa4566C25ed8" //test "0xb76A61A38081e7F7FFBEB606975e215c5A766413";
// mian 0xC5e63465E6CC75D5fc635720B3Fe8CeC3955D8B8
var network = "main"; // network type
var net_data_map = {
testnet: {
chainId: "0x13882",
chainName: "Polygon Amoy",
nativeCurrency: {
name: "MATIC",
symbol: "MATIC",
decimals: 18
},
rpcUrls: ["https://rpc-amoy.polygon.technology"],
blockExplorerUrls: ["https://amoy.polygonscan.com/"]
},
main: {
chainId: "0x89",
chainName: "Polygon Mainnet",
nativeCurrency: {
name: "MATIC",
symbol: "MATIC",
decimals: 18
},
rpcUrls: ["https://polygon-rpc.com/"],
blockExplorerUrls: ["https://polygonscan.com/"]
}
}
var nftAbi = [{
"inputs":[
{
"internalType":"address",
"name":"to",
"type":"address"
},
{
"internalType":"uint256",
"name":"tokenId",
"type":"uint256"
}
],
"name":"approve",
"outputs":[
],
"stateMutability":"payable",
"type":"function"
},
{
"inputs":[
{
"internalType":"address",
"name":"owner",
"type":"address"
}
],
"name":"tokensOfOwner",
"outputs":[
{
"internalType":"uint256[]",
"name":"",
"type":"uint256[]"
}
],
"stateMutability":"view",
"type":"function"
},
{
"inputs":[
{
"internalType":"uint256",
"name":"tokenId",
"type":"uint256"
}
],
"name":"getApproved",
"outputs":[
{
"internalType":"address",
"name":"",
"type":"address"
}
],
"stateMutability":"view",
"type":"function"
}
];
//main
var nftContractAddress = "0x7E1d80417f1724f5Ff050C3F84DC9A3850B6e48f";
var nftS2ContractAddress = "0x291B1BD67eC8D1E194dB36d92B17823186b54F44";
const provider = window.ethereum || window.web3 || (window.bitkeep && window.bitkeep.ethereum);
var web3 = new Web3(provider);
var gasMultiple = 1.5;
var gasMultiple1 = 1.3;
var nftContract = new web3.eth.Contract(nftAbi, nftContractAddress);
var nftS2Contract = new web3.eth.Contract(nftAbi, nftS2ContractAddress);
var stakingContract = new web3.eth.Contract(stakingAbi, stakingAddress);
var stakingS2Contract = new web3.eth.Contract(stakingAbi, stakingS2Address);
var isConnect = window.localStorage.getItem("selectedWallet");
var walletPlaceholderText = "Connect Wallet";
var wallet = new Proxy({ address: walletPlaceholderText }, {
set(obj, prop, value) {
if (prop === "address") {
if (value && value != walletPlaceholderText) {
$("#connect-wallet").html(`${value.slice(0, 5)}...${value.slice(-5, value.length)}`);
$("#connect").html(`${value.slice(0, 5)}...${value.slice(-5, value.length)}`);
//check
var result = getAddressIsFranchisee(value);
if(result){
document.getElementById("reward_tp").style.display = "inline-block";
document.getElementById("RWA_TP").style.display = "inline-block";
}
// asyncOperation(value);
} else {
$("#connect-wallet").html(walletPlaceholderText);
location.reload(true);
}