-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.mjs
987 lines (920 loc) · 24.4 KB
/
index.mjs
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
import { loadStdlib, ask } from '@reach-sh/stdlib'
import * as backend from './build/index.main.mjs'
const reach = loadStdlib()
const sleep = (mSecs) => new Promise((resolve) => setTimeout(resolve, mSecs))
const alertThis = async (message, positive = true) => {
if (positive) {
console.log(`[+] ${message}`)
} else {
console.log(`[‼] ${message}`)
}
await sleep(message.length * 100)
}
const noneNull = (byte) => {
let string = '',
i = 0
for (i; i < byte.length; i++)
if (String(byte[i]) !== String('\u0000')) string += byte[i]
return string
}
const deadline = { ETH: 2, ALGO: 20, CFX: 2000 }[reach.connector]
let [
user,
contractInstance,
contract,
proposals,
bounties,
createPromise,
contribPromise,
upvotePromise,
downvotePromise,
] = [{}, null, {}, [], [], {}, {}, {}, {}]
const connectAccount = async () => {
console.clear()
console.log(`Reach DAO by Team 18`)
console.log(``)
console.info(``)
console.log('Connect Account')
const createAcc = await ask.ask(
`Would you like to create an account? (Only available on DevNet) [y/n]`,
ask.yesno
)
if (createAcc) {
const account = await reach.newTestAccount(reach.parseCurrency(1000))
user = {
account,
balance: async () => {
const balAtomic = await reach.balanceOf(account)
const balance = reach.formatCurrency(balAtomic, 4)
return balance
},
}
} else {
const secret = await ask.ask(`What is your account secret?`, (x) => x)
try {
const account = await reach.newAccountFromSecret(secret)
user = {
account,
balance: async () => {
const balAtomic = await reach.balanceOf(account)
const balance = reach.formatCurrency(balAtomic, 4)
return balance
},
}
} catch (error) {
await alertThis('Failed to connect account', false)
await connectAccount()
}
}
await setRole()
}
const setRole = async () => {
;[
contractInstance,
contract,
proposals,
bounties,
createPromise,
contribPromise,
upvotePromise,
downvotePromise,
] = [null, {}, [], [], {}, {}, {}, {}]
console.clear()
console.log(`Reach DAO by Team 18`)
console.log(`Wallet Balance: ${await user.balance()}`)
console.log(``)
console.log('Select Role')
const isDeployer = await ask.ask('Are you the Admin? [y/n]', ask.yesno)
if (isDeployer) {
console.clear()
console.log(`Reach DAO by Team 18`)
console.log(`Wallet Balance: ${await user.balance()}`)
console.info(``)
console.log('Welcome Admin!')
const shouldDeploy = await ask.ask(
`Proceed to deployment? [y/n]`,
ask.yesno
)
if (shouldDeploy) {
await deploy()
} else {
await setRole()
}
} else {
console.clear()
console.log(`Reach DAO by Team 18`)
console.log(`Wallet Balance: ${await user.balance()}`)
console.info(``)
console.log('Hello Attacher!')
const info = await ask.ask(
'Please enter the contract information',
async (x) => {
await attach(x)
}
)
}
}
const attach = async (ctcInfoStr) => {
console.clear()
console.log(`Reach DAO by Team 18`)
console.log(`Wallet Balance: ${await user.balance()}`)
console.info(contract.ctcInfoStr ? contract.ctcInfoStr : '')
console.log('[.] Attaching')
try {
const ctc = user.account.contract(backend, JSON.parse(ctcInfoStr))
contractInstance = ctc
contract = { ctcInfoStr }
ctc.events.create.monitor(createProposal)
ctc.events.that.monitor(acknowledge)
await showInfoCenter()
} catch (error) {
await alertThis(`Unable to attach`, false)
await setRole()
}
}
const reevaluate = async ({
id,
blockCreated,
upvotes,
downvotes,
contribs,
}) => {
try {
const currentConsensusTime = await reach.getNetworkTime()
if (blockCreated + deadline < currentConsensusTime) {
if (upvotes > downvotes) {
const nBounty = proposals.filter((el) => Number(el.id) === id)[0]
bounties.push(nBounty)
const xXProposals = proposals.filter((el) => Number(el.id) !== id)
proposals = xXProposals
await alertThis(
'This proposal seems to have missed becoming a bounty, you can now find it on the Bounties List'
)
} else if (contribs > 0) {
const fProposals = proposals.map((el) => {
if (Number(el.id) === id) {
el['timedOut'] = true
el['didPass'] = false
}
return el
})
proposals = fProposals
await alertThis(
'This proposal already failed with funds, you can now find it on the Timed Out Proposals list'
)
} else {
const remainingProposals = proposals.filter((el) => {
if (Number(el.id) === id) {
el['isDown'] = true
}
return Number(el.id) !== id
})
proposals = remainingProposals
await alertThis(
'This appears to be a rogue proposal, and has been taken down'
)
}
} else {
await alertThis(
'Evaluation failed, please contact Reach DAO technical team on Discord',
false
)
}
} catch (error) {
await alertThis('Unable to reevaluate proposal', false)
}
}
const connectAndUpvote = async (id, ctcInfoStr) => {
try {
const ctc = user.account.contract(backend, JSON.parse(ctcInfoStr))
const upvotes = await ctc.apis.Voters.upvote()
await contractInstance.apis.Voters.upvoted(id, parseInt(upvotes))
} catch (error) {
await alertThis('Unable to process up vote', false)
upvotePromise?.reject && upvotePromise.reject()
}
}
const connectAndDownvote = async (id, ctcInfoStr) => {
try {
const ctc = user.account.contract(backend, JSON.parse(ctcInfoStr))
const downvotes = await ctc.apis.Voters.downvote()
await contractInstance.apis.Voters.downvoted(id, parseInt(downvotes))
} catch (error) {
await alertThis('Unable to process down vote', false)
downvotePromise?.reject && downvotePromise.reject()
}
}
const makeContribution = async (amount, id, ctcInfoStr) => {
try {
const ctc = user.account.contract(backend, JSON.parse(ctcInfoStr))
const contribs = await ctc.apis.Voters.contribute(
reach.parseCurrency(amount)
)
await contractInstance.apis.Voters.contributed(id, parseInt(contribs))
} catch (error) {
await alertThis('Unable to process contribution', false)
contribPromise?.reject && contribPromise.reject()
}
}
const connectAndClaimRefund = async (id, ctcInfoStr) => {
try {
const ctc = user.account.contract(backend, JSON.parse(ctcInfoStr))
const result = await ctc.apis.Voters.claimRefund()
if (result.didRefund) {
const conProposals = proposals.map((el) => {
if (Number(el.id) === id) {
el['contribs'] = reach.formatCurrency(result.balance, 4)
}
return el
})
proposals = conProposals
await alertThis('Success')
} else {
await alertThis(
`It seems you don't have funds to claim, did you contribute to this proposal?`,
false
)
}
refundResolve?.resolve && refundResolve.resolve(didRefund)
} catch (error) {
await alertThis('Request failed', false)
}
}
const updateProposals = async ({ what }) => {
try {
await contractInstance.apis.Voters.created({
id: parseInt(what[0]),
title: noneNull(what[1]),
link: noneNull(what[2]),
description: noneNull(what[3]),
owner: noneNull(what[4]),
contractInfo: what[5],
blockCreated: parseInt(what[6]),
})
} catch (error) {
await alertThis('Failed to update proposals', false)
createPromise?.resolve && createPromise.resolve()
}
}
const createProposal = async ({ what }) => {
proposals.push({
id: parseInt(what[0]),
title: noneNull(what[1]),
link: noneNull(what[2]),
description: noneNull(what[3]),
owner: noneNull(what[4]),
contract: JSON.stringify(what[5]),
blockCreated: parseInt(what[6]),
upvotes: 0,
downvotes: 0,
contribs: 0,
timedOut: false,
didPass: false,
isDown: false,
})
createPromise?.resolve &&
(async () => {
await alertThis('Created')
createPromise.resolve()
})()
}
const acknowledge = async ({ what }) => {
const ifState = (x) => x.padEnd(20, '\u0000')
switch (what[0]) {
case ifState('upvoted'):
const upProposals = proposals.map((el) => {
if (Number(el.id) === Number(parseInt(what[1]))) {
el['upvotes'] = parseInt(what[2])
}
return el
})
proposals = upProposals
upvotePromise?.resolve &&
(async () => {
await alertThis('Success')
upvotePromise.resolve()
})()
break
case ifState('downvoted'):
const downProposals = proposals.map((el) => {
if (Number(el.id) === Number(parseInt(what[1]))) {
el['downvotes'] = parseInt(what[2])
}
return el
})
proposals = downProposals
downvotePromise?.resolve &&
(async () => {
await alertThis('Success')
downvotePromise.resolve()
})()
break
case ifState('contributed'):
const conProposals = proposals.map((el) => {
if (Number(el.id) === Number(parseInt(what[1]))) {
el['contribs'] = reach.formatCurrency(what[2], 4)
}
return el
})
proposals = conProposals
contribPromise?.resolve &&
(async () => {
await alertThis('Success')
contribPromise.resolve()
})()
break
case ifState('timedOut'):
if (parseInt(what[2])) {
const nBounty = proposals.filter(
(el) => Number(el.id) === Number(parseInt(what[1]))
)[0]
bounties.push(nBounty)
const xXProposals = proposals.filter(
(el) => Number(el.id) !== Number(parseInt(what[1]))
)
proposals = xXProposals
} else {
const fProposals = proposals.map((el) => {
if (Number(el.id) === Number(parseInt(what[1]))) {
el['timedOut'] = true
el['didPass'] = false
}
return el
})
proposals = fProposals
}
break
case ifState('projectDown'):
const remainingProposals = proposals.filter((el) => {
if (Number(el.id) === Number(parseInt(what[1]))) {
el['isDown'] = true
}
return Number(el.id) !== Number(parseInt(what[1]))
})
proposals = remainingProposals
break
default:
break
}
}
const timeoutProposal = async ({ what }) => {
const ifState = (x) => x.padEnd(20, '\u0000')
switch (what[0]) {
case ifState('passed'):
try {
await contractInstance.apis.Voters.timedOut(parseInt(what[1]), 1)
} catch (error) {
console.log('[‼] A transaction clashed with a timeout')
}
break
case ifState('failed'):
try {
await contractInstance.apis.Voters.timedOut(parseInt(what[1]), 0)
} catch (error) {
console.log('[‼] A transaction clashed with a timeout')
}
break
case ifState('down'):
try {
await contractInstance.apis.Voters.projectDown(parseInt(what[1]))
} catch (error) {
console.log('[‼] A transaction clashed with a teardown')
}
break
default:
break
}
}
const deploy = async () => {
console.clear()
console.log(`Reach DAO by Team 18`)
console.log(`Wallet Balance: ${await user.balance()}`)
console.info(``)
console.log('[.] Deploying')
const ctc = user.account.contract(backend)
contractInstance = ctc
const interact = {
getProposal: {
id: 1,
title: 'Reach DAO',
link: 'https://github.com/Apostrophe-Corp/Reach-DAO/blob/main/README.md',
description: `A hub for Web3 Developers`,
owner: user.account.networkAccount.addr,
deadline: 0,
isProposal: false,
},
}
ctc.p.Deployer(interact)
const ctcInfoStr = JSON.stringify(await ctc.getInfo(), null)
ctc.events.create.monitor(createProposal)
ctc.events.that.monitor(acknowledge)
contract = { ctcInfoStr }
console.clear()
console.log(`Reach DAO by Team 18`)
console.log(`Wallet Balance: ${await user.balance()}`)
console.info(``)
console.log(`[+] Deployed`)
console.group(`Here is the contract information`)
console.log(`${contract.ctcInfoStr}`)
console.groupEnd(`Here is the contract information`)
await sleep(5000)
await showInfoCenter()
}
const makeProposal = async (proposal) => {
const proposalSetup = async () => {
const ctc = user.account.contract(backend)
ctc.p.Deployer({
getProposal: {
...proposal,
deadline: deadline,
isProposal: true,
},
})
ctc.events.log.monitor(timeoutProposal)
ctc.events.created.monitor(updateProposals)
}
await proposalSetup()
}
const showInfoCenter = async () => {
console.clear()
console.log(`Reach DAO by Team 18`)
console.log(`Wallet Balance: ${await user.balance()}`)
console.info(contract.ctcInfoStr ? contract.ctcInfoStr : '')
console.group(`Info Center`)
console.log(`Welcome! To the new Hub!`)
console.groupEnd(`Info Center`)
const respondTo = async (request) => {
switch (request) {
case 1:
await showProposals()
break
case 2:
await showBounties()
break
case 3:
await setRole()
break
case 0:
const confirmed = await ask.ask(`[‼] Confirm exit [y/n]`, ask.yesno)
if (confirmed) process.exit(0)
else await showInfoCenter()
break
default:
await showInfoCenter()
break
}
}
const userInput = await ask.ask(
`[+] Console Menu
1. View Proposals
2. View Bounties
3. Back to Select Roles
0. Exit Reach DAO`,
(input) => {
if (isNaN(input)) {
throw Error('[‼] Please enter a numeric value')
} else {
return Number(input)
}
}
)
await respondTo(userInput)
}
const showProposals = async () => {
console.clear()
console.log(`Reach DAO by Team 18`)
console.log(`Wallet Balance: ${await user.balance()}`)
console.info(contract.ctcInfoStr ? contract.ctcInfoStr : '')
console.group(`Proposals`)
console.log(`Get the chance to bring your ideas to life!`)
console.groupEnd(`Proposals`)
const getProposalInfo = async () => {
let [title, link, description] = ['', '', '']
title = await ask.ask(`[+] Enter the Proposal's Title (Max 25)`, (value) =>
String(value).slice(0, 25)
)
link = await ask.ask(
`[+] Enter the Link to the Proposal's details (Max 150)`,
(value) => String(value).slice(0, 150)
)
description = await ask.ask(
`[+] Enter a brief description of the Proposal (Max 180)`,
(value) => String(value).slice(0, 180)
)
const satisfied = await ask.ask(
`[‼] Are you satisfied with these details? [y/n]
Title: ${title}
Link: ${link}
Description: ${description}`,
ask.yesno
)
if (satisfied) {
let proposal = {
id:
proposals.length > 0
? proposals.length === 1
? proposals[0].id + 1
: Number(
proposals.reduce((a, b) => (a.id > b.id ? a.id : b.id))
) + 1
: 1,
title,
link,
description,
owner: user.account.networkAccount.addr,
}
console.log('[.] Creating proposal')
await makeProposal(proposal).then(async () => {
await new Promise((resolve) => {
createPromise['resolve'] = resolve
})
await showProposals()
})
} else {
await getProposalInfo()
}
}
const selectActiveProposal = async (page = 1) => {
let [section, activeProposals, proposalsOnDisplay] = [
page,
proposals.filter((el) => !el.timedOut),
[],
]
proposalsOnDisplay = activeProposals.filter(
(el, i) => i + 1 > (section - 1) * 3 && i + 1 <= section * 3
)
const lenOfProposals = proposalsOnDisplay.length
console.group('Active Proposals')
if (lenOfProposals) {
proposalsOnDisplay.forEach((p, i) => {
console.log(`ID: ${i + 1},
Title: ${p.title ?? 'Title'}
Description: ${p.description ?? 'Description'}
Owner: ${p.owner ?? user.account.networkAccount.addr}
Link: ${p.link ?? 'Link'}
Contributions: ${p.contribs ?? 0} ${reach.standardUnit}
Up_Votes: ${p.upvotes}
Down_Votes: ${p.downvotes}\n
`)
})
} else {
console.log('[+] None at the moment.')
}
console.groupEnd('Active Proposals')
await ask.ask(
lenOfProposals
? `[+] Enter the Proposal's ID of interest
${
section < Math.ceil(activeProposals.length / 3)
? 'Enter 99 to view the next list'
: ''
}
${section > 1 ? 'Enter 88 to view the previous list' : ''}
Or enter 0 to exit`
: '[+] Enter any key to exit',
lenOfProposals
? async (input) => {
if (input == 0) {
await showProposals()
} else if (
Number(input) <= proposalsOnDisplay.length &&
Number(input) >= 1
) {
const selectedProposal = proposalsOnDisplay[input - 1]
const action = await ask.ask(
`[+] What would you like to do?
1. Contribute
2. Up vote
3. Down vote
0. Cancel`,
(x) => {
if (isNaN(x)) {
throw Error('[‼] Please enter a numeric value')
} else {
return Number(x)
}
}
)
switch (action) {
case 1:
const amount = await ask.ask(
`[+] Please enter the amount in ${reach.standardUnit}`,
(x) => {
if (isNaN(x)) {
throw Error('[‼] Please enter a numeric value')
} else {
return Number(x)
}
}
)
console.log('[.] Processing contribution')
if (amount == 0) {
await alertThis('Contribution is too low', false)
} else {
await new Promise(async (resolve, reject) => {
contribPromise['resolve'] = resolve
contribPromise['reject'] = reject
await makeContribution(
amount,
selectedProposal.id,
selectedProposal.contract
)
}).catch(async () => {
await reevaluate(selectedProposal)
})
}
await selectActiveProposal(section)
break
case 2:
console.log('[.] Processing up vote')
await new Promise(async (resolve, reject) => {
upvotePromise['resolve'] = resolve
upvotePromise['reject'] = reject
await connectAndUpvote(
selectedProposal.id,
selectedProposal.contract
)
}).catch(async () => {
await reevaluate(selectedProposal)
})
await selectActiveProposal(section)
break
case 3:
console.log('[.] Processing down vote')
await new Promise(async (resolve, reject) => {
downvotePromise['resolve'] = resolve
downvotePromise['reject'] = reject
await connectAndDownvote(
selectedProposal.id,
selectedProposal.contract
)
}).catch(async () => {
await reevaluate(selectedProposal)
})
await selectActiveProposal(section)
break
case 0:
await selectActiveProposal(section)
break
default:
await selectActiveProposal(section)
break
}
} else if (input == 88 && section > 1) {
await selectActiveProposal(section - 1)
} else if (
input == 99 &&
section < Math.ceil(activeProposals.length / 3)
) {
await selectActiveProposal(section + 1)
} else {
console.log('[‼] Invalid response')
await sleep(2000)
await selectActiveProposal(section)
}
return
}
: async () => {
await showProposals()
}
)
}
const selectTimedOutProposal = async (page = 1) => {
let [section, timeoutProposals, proposalsOnDisplay] = [
page,
proposals.filter((el) => el.timedOut),
[],
]
proposalsOnDisplay = timeoutProposals.filter(
(el, i) => i + 1 > (section - 1) * 3 && i + 1 <= section * 3
)
const lenOfProposals = proposalsOnDisplay.length
console.group('Timed Out Proposals')
if (lenOfProposals) {
proposalsOnDisplay.forEach((p, i) => {
console.log(`ID: ${i + 1}
Title: ${p.title ?? 'Title'}
Description: ${p.description ?? 'Description'}
Owner: ${p.owner ?? user.account.networkAccount.addr}
Link: ${p.link ?? 'Link'}\n
`)
})
} else {
console.log('[+] None at the moment.')
}
console.groupEnd('Timed Out Proposals')
await ask.ask(
lenOfProposals
? `[+] Enter the Proposal's ID to claim a refund
${
section < Math.ceil(timeoutProposals.length / 3)
? 'Enter 99 to view the next list'
: ''
}
${section > 1 ? 'Enter 88 to view the previous list' : ''}
Or enter 0 to exit`
: '[+] Enter any key to exit',
lenOfProposals
? async (input) => {
if (input == 0) {
await showProposals()
} else if (
Number(input) <= proposalsOnDisplay.length &&
Number(input) >= 1
) {
const selectedProposal = proposalsOnDisplay[input - 1]
console.log(`[+] Processing request`)
await connectAndClaimRefund(
selectedProposal.id,
selectedProposal.contract
)
await showProposals()
} else if (input == 88 && section > 1) {
await selectActiveProposal(section - 1)
} else if (
input == 99 &&
section < Math.ceil(timeoutProposals.length / 3)
) {
await selectActiveProposal(section + 1)
} else {
console.log('[‼] Invalid response')
await sleep(2000)
await selectActiveProposal(section)
}
return
}
: async () => {
await showProposals()
}
)
}
const respondTo = async (request) => {
switch (request) {
case 1:
await getProposalInfo()
break
case 2:
await selectActiveProposal()
break
case 3:
await selectTimedOutProposal()
break
case 4:
await showBounties()
break
case 5:
await showInfoCenter()
break
case 6:
await setRole()
break
case 0:
const confirmed = await ask.ask(`[‼] Confirm exit [y/n]`, ask.yesno)
if (confirmed) process.exit(0)
else await showProposals()
break
default:
await showProposals()
break
}
}
const userInput = await ask.ask(
`[+] Console Menu
1. Make a Proposal
2. Select an Active Proposal
3. Select a Timed Out Proposal
4. View Bounties
5. View Info Center
6. Back to Select Roles
0. Exit Reach DAO`,
(input) => {
if (isNaN(input)) {
throw Error('[‼] Please enter a numeric value')
} else {
return Number(input)
}
}
)
await respondTo(userInput)
}
const showBounties = async () => {
console.clear()
console.log(`Reach DAO by Team 18`)
console.log(`Wallet Balance: ${await user.balance()}`)
console.info(contract.ctcInfoStr ? contract.ctcInfoStr : '')
console.group(`Bounties`)
console.log(`Lets Hack and claim the Bounty...`)
console.groupEnd(`Bounties`)
const selectActiveBounty = async (page = 1) => {
let [i, section, activeBounties, bountiesOnDisplay] = [
0,
page,
bounties,
[],
]
bountiesOnDisplay = activeBounties.filter(
(el, i) => i + 1 > (section - 1) * 3 && i + 1 <= section * 3
)
const lenOfBounties = bountiesOnDisplay.length
console.group('Active Bounties')
if (lenOfBounties) {
bountiesOnDisplay.forEach((b, i) => {
console.log(`ID: ${i + 1}
Title: ${b.title ?? 'Title'}
Description: ${b.description ?? 'Description'}
Owner: ${b.owner ?? user.account.networkAccount.addr}
Link: ${b.link ?? 'Link'}
Grand_Prize: 99999 ${reach.standardUnit}\n
`)
})
} else {
console.log('[+] None at the moment.')
}
console.groupEnd('Active Bounties')
await ask.ask(
lenOfBounties
? `[+] Enter the Bounty's ID of interest
${
section < Math.ceil(activeBounties.length / 3)
? 'Enter 99 to view the next list'
: ''
}
${section > 1 ? 'Enter 88 to view the previous list' : ''}
Or enter 0 to exit`
: '[+] Enter any key to exit',
lenOfBounties
? async (input) => {
if (input == 0) {
await showBounties()
} else if (
Number(input) <= bountiesOnDisplay.length &&
Number(input) >= 1
) {
await alertThis(`[+] Thanks for showing your interest in this quest.
Stick around a while and our Guild would be fully operational.
Until then, get your weapons, armor and, party members ready!!!`)
await sleep(5000)
await showBounties()
} else if (input == 88 && section > 1) {
await selectActiveBounty(section - 1)
} else if (
input == 99 &&
section < Math.ceil(activeBounties.length / 3)
) {
await selectActiveBounty(section + 1)
} else {
console.log('[‼] Invalid response')
await sleep(2000)
await selectActiveBounty(section)
}
return
}
: async () => {
await showBounties()
}
)
}
const respondTo = async (request) => {
switch (request) {
case 1:
await selectActiveBounty()
break
case 2:
await showInfoCenter()
break
case 3:
await showProposals()
break
case 4:
await setRole()
break
case 0:
const confirmed = await ask.ask(`[‼] Confirm exit [y/n]`, ask.yesno)
if (confirmed) process.exit(0)
else await showBounties()
break
default:
await showBounties()
break
}
}
const userInput = await ask.ask(
`[+] Console Menu
1. Select an Active Bounty
2. View Info Center
3. View Proposals
4. Back to Select Roles
0. Exit Reach DAO`,
(input) => {
if (isNaN(input)) {
throw Error('[‼] Please enter a numeric value')
} else {
return Number(input)
}
}
)
await respondTo(userInput)
}
await connectAccount()
ask.done()
process.exit(0)