-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboardroom_openapi.yaml
1750 lines (1744 loc) · 66.9 KB
/
boardroom_openapi.yaml
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
openapi: 3.0.0
info:
title: Boardroom API
description: API for Boardroom governance protocols
version: 1.0.0
servers:
- url: 'https://api.boardroom.info/v1/'
description: Boardroom Governance API
paths:
/protocols:
get:
summary: Get all protocols
description: Get all protocols of boardroom
operationId: getProtocols
tags:
- protocol
parameters:
- name: excludeTokenInfo
in: query
description: 'boolean to exclude token info, default is false.'
required: false
schema:
type: boolean
example: false
- name: includeContractMetadata
in: query
description: 'boolean to include contract metadata, default is false.'
required: false
schema:
type: boolean
example: false
- name: limit
in: query
description: Response size limit
required: false
schema:
type: number
- name: cursor
in: query
description: Pagination cursor to retrieve next page
required: false
schema:
type: string
- name: cnames
in: query
description: Comma separated cnames of protocols
required: false
schema:
type: string
- name: pinned
in: query
description: >-
Comma separated cnames of protocols, response will be in the order
of pinned protocols at the start.
required: false
schema:
type: string
example: 'aave,ens'
responses:
'200':
description: Response
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Protocol'
examples:
default:
value: >-
{"data":[{"cname":"aave","name":"Aave","totalProposals":28,"totalVotes":1270,"uniqueVoters":733,"icons":[{"adapter":"default","size":"thumb","url":"https://assets.coingecko.com/coins/images/12645/thumb/AAVE.png?1601374110"}],"tokens":[{"adapter":"default","symbol":"aave","network":"ethereum","contractAddress":"0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9","marketPrices":[{"currency":"usd","price":387.86}]}]}]}
security:
- api-key: []
'/protocols/{cname}':
get:
summary: Get a single protocol
description: Retrieve details of a specific protocol by its `cname`.
operationId: getProtocolDetails
tags:
- protocol
parameters:
- name: cname
in: path
description: Protocol cname.
required: true
schema:
type: string
example: aave
- name: excludeTokenInfo
in: query
description: 'boolean to exclude token info, default is false.'
required: false
schema:
type: boolean
example: false
- name: includeContractMetadata
in: query
description: 'boolean to include contract metadata, default is false.'
required: false
schema:
type: boolean
example: false
responses:
'200':
description: Response
content:
application/json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/Protocol'
examples:
default:
value: >-
{"data":{"cname":"aave","name":"Aave","totalProposals":28,"totalVotes":1270,"uniqueVoters":733,"icons":[{"adapter":"default","size":"thumb","url":"https://assets.coingecko.com/coins/images/12645/thumb/AAVE.png?1601374110"},{"adapter":"default","size":"small","url":"https://assets.coingecko.com/coins/images/12645/small/AAVE.png?1601374110"},{"adapter":"default","size":"large","url":"https://assets.coingecko.com/coins/images/12645/large/AAVE.png?1601374110"}],"tokens":[{"adapter":"default","symbol":"aave","network":"ethereum","contractAddress":"0x7fc66500c84a76ad7e9c93437bfc5ac33e2ddae9","marketPrices":[{"currency":"usd","price":384.14}]}]}}
security:
- api-key: []
'/protocols/{cname}/proposals':
get:
summary: Get all proposals for a protocol
description: Get all proposals for a specific protocol identified by `cname`.
operationId: getProtocolProposals
tags:
- proposal
parameters:
- name: cname
in: path
description: Protocol cname.
required: true
schema:
type: string
example: aave
- name: limit
in: query
description: Response size limit
required: false
schema:
type: number
- name: cursor
in: query
description: Pagination cursor to retrieve next page
required: false
schema:
type: string
- name: status
in: query
description: 'Status of the proposal. Supported values: pending, active, closed.'
required: false
schema:
type: string
enum:
- pending
- active
- closed
- name: proposer
in: query
description: Proposer address.
schema:
type: string
example: '0x8d5237037A590A2dB531F3CfB8f42605cF306f34'
- name: orderByIndexedAt
in: query
description: 'Order in which data is indexed. Supported values: asc, desc.'
schema:
type: string
enum:
- asc
- desc
- name: includeFlagged
in: query
description: Should the response include flagged proposals. Defaults to false.
schema:
type: string
responses:
'200':
description: Response
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Proposal'
nextCursor:
type: string
examples:
default:
value: >-
{"data":[{"refId":"cHJvcG9zYWw6YWF2ZTpkZWZhdWx0OjI3","id":"27","title":"Add
DPI on Aave
V2","content":"Summary","protocol":"aave","adapter":"default","proposer":"0x7f4C5938AF9731e9feadc09C3FA782508198532E","totalVotes":20,"blockNumber":13044092,"startTime":{"blockNumber":13044092},"endTime":{"blockNumber":13063292},"startTimestamp":1629221854,"endTimestamp":1629475458,"currentState":"active","choices":["NAY","YAE"],"results":[{"total":411686.47,"choice":1}],"events":[{"time":{"blockNumber":12986707},"event":"executed","timestamp":1628455780}]}],"nextCursor":"eyJ=="}
security:
- api-key: []
/proposals:
get:
summary: Get proposals across all protocols
description: Get proposals across all protocols
operationId: getProposals
tags:
- proposal
parameters:
- name: status
in: query
description: 'Status of the proposal. Supported values: pending, active, closed.'
required: false
schema:
type: string
enum:
- pending
- active
- closed
- name: cursor
in: query
description: Pagination cursor to retrieve next page
required: false
schema:
type: string
- name: limit
in: query
description: Response size limit
required: false
schema:
type: number
- name: cnames
in: query
description: Comma separated cnames of protocols
required: false
schema:
type: string
- name: proposer
in: query
description: Proposer address.
required: false
schema:
type: string
example: '0x8d5237037A590A2dB531F3CfB8f42605cF306f34'
- name: proposers
in: query
description: Comma separated addresses of proposers.
required: false
schema:
type: string
- name: excludeVotedOnBy
in: query
description: Filter proposals voted on by an address.
schema:
type: string
- name: lite
in: query
description: >-
Return lite version of the response. Filters results, choices and
total votes.
schema:
type: boolean
- name: orderByIndexedAt
in: query
description: 'Order in which data is indexed. Supported values: asc, desc.'
schema:
type: string
enum:
- asc
- desc
- name: includeVoteFunctionInfo
in: query
description: 'Include voting contract, vote function selectors and inputs.'
schema:
type: boolean
- name: includeFlagged
in: query
description: Should the response include flagged proposals. Defaults to false.
schema:
type: string
responses:
'200':
description: Response
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Proposal'
nextCursor:
type: string
examples:
default:
value: >-
{"data":[{"refId":"cHJvcG9zYWw6YWF2ZTpkZWZhdWx0OjI3","id":"27","title":"Add
DPI on Aave
V2","content":"Summary","protocol":"aave","adapter":"default","proposer":"0x7f4C5938AF9731e9feadc09C3FA782508198532E","totalVotes":20,"blockNumber":13044092,"startTime":{"blockNumber":13044092},"endTime":{"blockNumber":13063292},"startTimestamp":1629221854,"endTimestamp":1629475458,"currentState":"active","choices":["NAY","YAE"],"results":[{"total":411686.47,"choice":1}],"events":[{"time":{"blockNumber":12986707},"event":"executed","timestamp":1628455780}]}],"nextCursor":"eyJ=="}
security:
- api-key: []
'/proposals/{refId}':
get:
summary: Get a single proposal
description: Get a single proposal by its `refId`.
operationId: getProposal
tags:
- proposal
parameters:
- name: refId
in: path
description: Proposal `refId`.
required: true
schema:
type: string
example: >-
cHJvcG9zYWw6YWF2ZTpzbmFwc2hvdDoweDI5MzA1OTljYWUzY2VjMGExNmJkMGFlZjEzNTI0MzQ3ZTBjNWU4NWNmZjdkZDY2YWU5YjJiZWQ5MGZjNWQxZmU=
- name: includeVoteFunctionInfo
in: query
description: 'Include voting contract, vote function selectors and inputs.'
schema:
type: boolean
responses:
'200':
description: Response
content:
application/json:
schema:
type: object
properties:
data:
$ref: '#/components/schemas/Proposal'
examples:
default:
value: >-
{"data":{"refId":"cHJvcG9zYWw6c3VzaGk6ZGVmYXVsdDpxbXM3a3ljNGtyNmUxZ3NzY3NrNW1wb2VkZmt0dzhvaHFyY2FoM2prN213NzVr","id":"QmS7kYC4KR6E1gssCsK5MPoeDfktW8oHqRCaH3jK7mW75K","title":"Buy
MemePad - https://memepad.co/ - LaunchPad for Meme
coins","content":"Buy MemePad - https://memepad.co/ -
LaunchPad for Meme
coins","protocol":"sushi","adapter":"default","proposer":"0xb9d3c5bB5DE7cf779321962dC61A725e5358fF05","totalVotes":266,"blockNumber":12590827,"externalUrl":"https://snapshot.org/#/sushigov.eth/proposal/QmS7kYC4KR6E1gssCsK5MPoeDfktW8oHqRCaH3jK7mW75K","startTime":{"timestamp":1623031200},"endTime":{"timestamp":1684980000},"startTimestamp":1623031200,"endTimestamp":1684980000,"currentState":"active","choices":["YES","YES"],"results":[{"total":181771.86,"choice":0},{"total":12996.031,"choice":1}],"events":[{"time":{"blockNumber":12986707},"event":"executed","timestamp":1628455780}]}}
security:
- api-key: []
'/proposals/{refId}/votes':
get:
summary: Get votes on a proposal
description: Get votes on a proposal
operationId: getProposalVotes
tags:
- vote
parameters:
- name: refId
in: path
description: Proposal refId.
required: true
schema:
type: string
example: 'cHJvcG9zYWw6c3VzaGk6ZGVmYXVsdDpxbXM3a3ljNGtyNmUxZ3NzY3NrNW1wb2VkZmt0dzhvaHFyY2FoM2prN213NzVr'
- name: cursor
in: query
description: Pagination cursor to retrieve next page
required: false
schema:
type: string
- name: limit
in: query
description: 'Response size limit, Defaults to 20'
required: false
schema:
type: number
- name: addresses
in: query
description: Addresses to include in response of votes.
required: false
schema:
type: string
- name: pinned
in: query
description: Response is ordered with votes cast by these addresses at the start.
required: false
schema:
type: string
- name: fromTimestamp
in: query
description: Filter by votes after
required: false
schema:
type: string
- name: untilTimestamp
in: query
description: Filter by votes before
required: false
schema:
type: string
responses:
'200':
description: Response
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Vote'
nextCursor:
type: string
examples:
default:
value: '{"data":[{"refId":"dm90ZTpzdXNoaTpkZWZhdWx0OnFtczdreWM0a3I2ZTFnc3Njc2s1bXBvZWRma3R3OG9ocXJjYWgzams3bXc3NWs6MHhkNDA5Y2VhOWRkOGRiMzA1MDQxNjgwNjM5NTNjZTFmYTIwNzQ4Y2Fi","proposalRefId":"cHJvcG9zYWw6c3VzaGk6ZGVmYXVsdDpxbXM3a3ljNGtyNmUxZ3NzY3NrNW1wb2VkZmt0dzhvaHFyY2FoM2prN213NzVr","protocol":"sushi","adapter":"default","proposalId":"QmS7kYC4KR6E1gssCsK5MPoeDfktW8oHqRCaH3jK7mW75K","address":"0xd409ceA9dD8dB30504168063953cE1Fa20748cab","power":147811.42,"choice":0,"time":{"timestamp":1625066741},"timestamp":1625066741}],"nextCursor":"eyJhZGRyZXNzIjoiMHg1QTlkZDlDN2ZBRkI0OWY3NzhmQzQ1MDgyMDAwMzg1NzhFNEMxY2E2IiwicG93ZXIiOjI3MC43MjMwMn0="}'
security:
- api-key: []
'/proposals/{refId}/pendingVotes':
get:
summary: 'Get Pending votes by address, protocol or proposal refID'
description: Retrieve pending votes for a specific proposal identified by `refId`.
operationId: getPendingProposalVotes
tags:
- proposal
parameters:
- name: refId
in: path
description: Proposal refId.
required: true
schema:
type: string
example: cHJvcG9zYWw6dGVzdHByb3RvY29sOnNuYXBzaG90OnVuZGVmaW5lZA==
- name: address
in: query
description: Voter address.
schema:
type: string
example: '0xd409ceA9dD8dB30504168063953cE1Fa20748cab'
- name: protocol
in: query
description: Protocol name.
schema:
type: string
example: ens
- name: adapter
in: query
description: Whether it is snapshot or onchain instances to query for.
schema:
type: string
example: onchain
responses:
'200':
description: Response
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/PendingVote'
examples:
default:
value: >-
{"data": [{"refId":
"cHJvcG9zYWw6dGVzdHByb3RvY29sOnNuYXBzaG90OnVuZGVmaW5lZA==","protocol":
"testProtocol","adapter": "snapshot","choice":
1,"voteRefId":
"dm90ZTp0ZXN0cHJvdG9jb2w6c25hcHNob3Q6dW5kZWZpbmVkOjB4NGY1NGQxYjA1NGVlODM3N2Y3NzE2NjdjMGQxNzM0ZDkzODFlMTMzMA==","txnHash":
"bafkreia2nhyksuyjcg7skvuhgdixhdtyzvjvzoobfqw7tlde6sp5yktqom","status":
"success"}]}
security:
- api-key: []
/voters/{address}/votes:
get:
summary: Get votes by voter
description: Get votes by voter
operationId: getVoterVotes
tags:
- vote
parameters:
- name: address
in: path
description: Voter address.
required: true
schema:
type: string
example: '0xd409ceA9dD8dB30504168063953cE1Fa20748cab'
- name: cname
in: query
description: Protocol cname.
required: false
schema:
type: string
example: aave
- name: cursor
in: query
description: Pagination cursor to retrieve next page
required: false
schema:
type: string
- name: limit
in: query
description: Response size limit
required: false
schema:
type: number
- name: fromTimestamp
in: query
description: Filter by votes after
required: false
schema:
type: string
- name: untilTimestamp
in: query
description: Filter by votes before
required: false
schema:
type: string
responses:
'200':
description: Response
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
$ref: '#/components/schemas/Vote'
examples:
default:
value: '{"data":[{"refId":"dm90ZTpzdXNoaTpkZWZhdWx0OnFtczdreWM0a3I2ZTFnc3Njc2s1bXBvZWRma3R3OG9ocXJjYWgzams3bXc3NWs6MHhkNDA5Y2VhOWRkOGRiMzA1MDQxNjgwNjM5NTNjZTFmYTIwNzQ4Y2Fi","proposalRefId":"cHJvcG9zYWw6c3VzaGk6ZGVmYXVsdDpxbXM3a3ljNGtyNmUxZ3NzY3NrNW1wb2VkZmt0dzhvaHFyY2FoM2prN213NzVr","protocol":"sushi","adapter":"default","proposalId":"QmS7kYC4KR6E1gssCsK5MPoeDfktW8oHqRCaH3jK7mW75K","address":"0xd409ceA9dD8dB30504168063953cE1Fa20748cab","power":147811.42,"choice":0,"time":{"timestamp":1625066741},"timestamp":1625066741,"proposalInfo":{"title":"Buy MemePad - https://memepad.co/ - LaunchPad for Meme coins","startTime":{"timestamp":1623031200},"endTime":{"timestamp":1684980000},"startTimestamp":1623031200,"endTimestamp":1684980000,"choices":["YES","YES"],"events":[],"currentState":"active"}}]}'
security:
- api-key: []
/discourseTopics:
get:
summary: Get Discourse Topics
description: >
Discourse Topics are the top level discussions on discourse. Sorted by
the `bumpedAt` property.
List of protocol cnames that there is discourse data for: "0xgov",
"epns", "aave", "aavegotchi", "abachi", "akropolis", "ampleforth",
"angle", "apecoin", "arbitrum", "armorfi", "babydogearmy", "badgerdao",
"balancer", "bancor", "banklessvault", "bitdao", "citydao", "compound",
"compoundgrants", "creamfinance", "cryptex", "curvefi", "daosquare",
"decentraland", "devdao", "doodles", "ease", "elyfi", "ens", "esd",
"eulerfi", "fei", "fraxfi", "gearbox", "gitcoin", "gooddollar",
"dhedge", "graphprotocol", "hopprotocol", "idlefinance", "indexCoop",
"indexed", "instadapp", "interest", "inverse", "kleros", "kyber",
"lexpunk", "lido", "lilnouns", "lootdao", "maplefinance",
"metafactory", "mstable", "nexusmutual", "nounsdao", "optimism",
"paladin", "perpetualprotocol", "phonon", "piedao", "primedao",
"radicle", "rally", "rariFoundation", "reflexerfi", "saddlefi",
"safedao", "silo", "sushi", "token-engineering-commons", "threshold",
"tokenlon", "truefigov", "uniswap", "unlock", "ybaby"
operationId: get-discourseTopics
tags:
- discourse
parameters:
- name: protocol
in: query
description: >-
Protocol cname that you want to get discourse topics for. You can
pass multiple protocol cnames separated by ",".
schema:
type: string
- name: topicId
in: query
description: >-
A single discourse topic ID. This will return a single topic with
that ID.
schema:
type: number
- name: categoryId
in: query
description: >-
Category ID number. This will return all topics with that category
ID.
schema:
type: number
- name: cursor
in: query
description: Pagination cursor to retrieve the next page.
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
type: object
properties:
id:
type: string
refId:
type: string
protocol:
type: string
imageUrl:
type: string
title:
type: string
slug:
type: string
tags:
type: string
postsCount:
type: integer
views:
type: integer
replyCount:
type: integer
likeCount:
type: integer
categoryId:
type: integer
pinned:
type: boolean
visible:
type: boolean
closed:
type: boolean
archived:
type: boolean
createdAt:
type: string
bumpedAt:
type: string
nextCursor:
type: string
examples:
Example 1:
value:
data:
- id: '6558'
refId: ZGlzY291cnNldG9waWM6b3B0aW1pc206NjU1OA==
protocol: optimism
imageUrl: null
title: Future Citizenship Selection Criteria
slug: future-citizenship-selection-criteria
tags: '{}'
postsCount: 1
views: 23
replyCount: 0
likeCount: 0
categoryId: 46
pinned: false
visible: true
closed: false
archived: false
createdAt: '2023-08-01T11:05:27.814Z'
bumpedAt: '2023-08-01T11:05:27.859Z'
- id: '6557'
refId: ZGlzY291cnNldG9waWM6b3B0aW1pc206NjU1Nw==
protocol: optimism
imageUrl: >-
https://global.discourse-cdn.com/standard10/uploads/bc41dd/optimized/2X/3/3da4c4acab9da5ef2dfc65f8b8d7d0a29364f2aa_2_1024x546.jpeg
title: 'RetroPGF 3: Voting badge distribution'
slug: retropgf-3-voting-badge-distribution
tags: '{"round-3"}'
postsCount: 1
views: 43
replyCount: 0
likeCount: 3
categoryId: 46
pinned: false
visible: true
closed: false
archived: false
createdAt: '2023-08-01T11:00:04.135Z'
bumpedAt: '2023-08-01T11:19:52.290Z'
- id: '6553'
refId: ZGlzY291cnNldG9waWM6b3B0aW1pc206NjU1Mw==
protocol: optimism
imageUrl: >-
https://global.discourse-cdn.com/standard10/uploads/bc41dd/optimized/2X/7/7da074d8221e4ea7b00f7e73ae8851c4f773d15a_2_1024x577.png
title: 'Incentive Impact Analysis: PoolTogether'
slug: incentive-impact-analysis-pooltogether
tags: '{}'
postsCount: 2
views: 69
replyCount: 0
likeCount: 9
categoryId: 62
pinned: false
visible: true
closed: false
archived: false
createdAt: '2023-07-31T19:36:20.238Z'
bumpedAt: '2023-07-31T23:24:47.954Z'
- id: '6540'
refId: ZGlzY291cnNldG9waWM6b3B0aW1pc206NjU0MA==
protocol: optimism
imageUrl: >-
https://global.discourse-cdn.com/standard10/uploads/bc41dd/optimized/2X/7/70db52129ba66d0c11a364995eeab7384ba6c089_2_1024x614.jpeg
title: LLMs assisting badgeholders
slug: llms-assisting-badgeholders
tags: '{}'
postsCount: 4
views: 75
replyCount: 0
likeCount: 8
categoryId: 46
pinned: false
visible: true
closed: false
archived: false
createdAt: '2023-07-30T16:03:17.120Z'
bumpedAt: '2023-08-01T08:57:15.648Z'
- id: '6538'
refId: ZGlzY291cnNldG9waWM6b3B0aW1pc206NjUzOA==
protocol: optimism
imageUrl: null
title: >-
Setup myself as a delegator, deligate and vote on
proposal
slug: >-
setup-myself-as-a-delegator-deligate-and-vote-on-proposal
tags: '{"delegation"}'
postsCount: 3
views: 53
replyCount: 0
likeCount: 2
categoryId: 1
pinned: false
visible: true
closed: false
archived: false
createdAt: '2023-07-29T21:20:58.195Z'
bumpedAt: '2023-07-31T01:10:16.927Z'
- id: '6535'
refId: ZGlzY291cnNldG9waWM6b3B0aW1pc206NjUzNQ==
protocol: optimism
imageUrl: null
title: NanoQF a minimal grants protocol on EAS
slug: nanoqf-a-minimal-grants-protocol-on-eas
tags: '{}'
postsCount: 1
views: 43
replyCount: 0
likeCount: 1
categoryId: 63
pinned: false
visible: true
security:
- api-key: []
/discourseCategories:
get:
summary: Get Discourse Categories
description: >-
Discourse Categories are the list of the categories for a discourse
forum.
operationId: get-discourseCategories
tags:
- discourse
parameters:
- name: protocol
in: query
description: Protocol cname that you want to get discourse categories for.
schema:
type: string
responses:
'200':
description: OK
content:
application/json:
schema:
type: object
properties:
data:
type: array
items:
type: object
properties:
id:
type: string
refId:
type: string
protocol:
type: string
name:
type: string
description:
type: string
descriptionText:
type: string
descriptionExcerpt:
type: string
color:
type: string
textColor:
type: string
slug:
type: string
topicCount:
type: integer
postCount:
type: integer
position:
type: integer
topicUrl:
type: string
numFeaturedTopics:
type: integer
topicsWeek:
type: integer
topicsMonth:
type: integer
topicsYear:
type: integer
topicsAllTime:
type: integer
nextCursor:
type: string
examples:
Example 1:
value:
data:
- id: '7'
refId: ZGlzY291cnNlY2F0ZWdvcnk6YWF2ZTo3
protocol: aave
name: Risk
description: >-
Topics that are risk related belong in this category
or the appropriate sub-categories.
descriptionText: >-
Topics that are risk related belong in this category
or the appropriate sub-categories.
descriptionExcerpt: >-
Topics that are risk related belong in this category
or the appropriate sub-categories.
color: F1592A
textColor: FFFFFF
slug: risk
topicCount: 82
postCount: 438
position: 7
topicUrl: /t/about-the-risk-category/1028
numFeaturedTopics: 3
topicsWeek: 1
topicsMonth: 9
topicsYear: 105
topicsAllTime: 179
- id: '4'
refId: ZGlzY291cnNlY2F0ZWdvcnk6YWF2ZTo0
protocol: aave
name: Governance
description: >-
General governance topics and discussions related to
Aave.
descriptionText: >-
General governance topics and discussions related to
Aave.
descriptionExcerpt: >-
General governance topics and discussions related to
Aave.
color: 2EBAC6
textColor: 652D90
slug: governance
topicCount: 574
postCount: 6027
position: 0
topicUrl: /t/about-the-governance-category/3
numFeaturedTopics: 5
topicsWeek: 12
topicsMonth: 47
topicsYear: 446
topicsAllTime: 882
- id: '25'
refId: ZGlzY291cnNlY2F0ZWdvcnk6YWF2ZToyNQ==
protocol: aave
name: Aave Grants DAO
description: >
This category is for questions, proposals, and general
information relating to projects building on Aave and
improving the Aave protocol. Aave Grants DAO provides
grants to grow the Aave ecosystem.
descriptionText: >
This category is for questions, proposals, and general
information relating to projects building on Aave and
improving the Aave protocol. Aave Grants DAO provides
grants to grow the Aave ecosystem.
descriptionExcerpt: >
This category is for questions, proposals, and general
information relating to projects building on Aave and
improving the Aave protocol. Aave Grants DAO provides
grants to grow the Aave ecosystem.
color: F7941D
textColor: FFFFFF
slug: developers
topicCount: 72
postCount: 378
position: 21
topicUrl: /t/about-aave-grants-dao/1563
numFeaturedTopics: 3
topicsWeek: 1
topicsMonth: 4
topicsYear: 31
topicsAllTime: 72
- id: '6'
refId: ZGlzY291cnNlY2F0ZWdvcnk6YWF2ZTo2
protocol: aave
name: Other
description: >-
Not sure which category fits your topic best (if any)?
Post here!
descriptionText: >-
Not sure which category fits your topic best (if any)?
Post here!
descriptionExcerpt: >-
Not sure which category fits your topic best (if any)?
Post here!
color: 3AB54A
textColor: FFFFFF
slug: other
topicCount: 110
postCount: 559
position: 14
topicUrl: /t/about-the-other-category/255
numFeaturedTopics: 3
topicsWeek: 0
topicsMonth: 8
topicsYear: 51
topicsAllTime: 116
- id: '27'
refId: ZGlzY291cnNlY2F0ZWdvcnk6YWF2ZToyNw==
protocol: aave
name: Delegate Platforms
description: >-
This category is for candidates for voting &
proposal power delegation.
descriptionText: >-
This category is for candidates for voting &
proposal power delegation.
descriptionExcerpt: >-
This category is for candidates for voting &
proposal power delegation.
color: 0088CC
textColor: FFFFFF
slug: delegate-platforms
topicCount: 25
postCount: 658
position: 5
topicUrl: /t/about-the-delegate-platforms-category/9322
numFeaturedTopics: 3
topicsWeek: 0
topicsMonth: 1
topicsYear: 21
topicsAllTime: 25
- id: '26'
refId: ZGlzY291cnNlY2F0ZWdvcnk6YWF2ZToyNg==
protocol: aave
name: Development
description: null
descriptionText: null
descriptionExcerpt: null
color: 0088CC
textColor: FFFFFF
slug: development
topicCount: 57
postCount: 347
position: 6
topicUrl: /t/about-the-development-category/8117
numFeaturedTopics: 3
topicsWeek: 0
topicsMonth: 6
topicsYear: 43
topicsAllTime: 57
- id: '21'
refId: ZGlzY291cnNlY2F0ZWdvcnk6YWF2ZToyMQ==
protocol: aave
name: Learning Center
description: >
The learning center is for questions, general
information, and various learning resources for Aave!
descriptionText: >
The learning center is for questions, general
information, and various learning resources for Aave!
descriptionExcerpt: >
The learning center is for questions, general
information, and various learning resources for Aave!
color: 92278F
textColor: FFFFFF
slug: learning-center
topicCount: 39
postCount: 128
position: 17
topicUrl: /t/about-the-learning-center-category/1368
numFeaturedTopics: 3
topicsWeek: 0
topicsMonth: 0
topicsYear: 18