@@ -22,6 +22,7 @@ export interface Proposal {
22
22
body : string ;
23
23
discussion : string ;
24
24
choices : string [ ] ;
25
+ labels ?: string [ ] ;
25
26
start : number ;
26
27
end : number ;
27
28
snapshot : number ;
@@ -39,6 +40,7 @@ export interface UpdateProposal {
39
40
body : string ;
40
41
discussion : string ;
41
42
choices : string [ ] ;
43
+ labels ?: string [ ] ;
42
44
plugins : string ;
43
45
}
44
46
@@ -143,6 +145,7 @@ export const proposalTypes = {
143
145
{ name : 'body' , type : 'string' } ,
144
146
{ name : 'discussion' , type : 'string' } ,
145
147
{ name : 'choices' , type : 'string[]' } ,
148
+ { name : 'labels' , type : 'string[]' } ,
146
149
{ name : 'start' , type : 'uint64' } ,
147
150
{ name : 'end' , type : 'uint64' } ,
148
151
{ name : 'snapshot' , type : 'uint64' } ,
@@ -162,6 +165,7 @@ export const updateProposalTypes = {
162
165
{ name : 'body' , type : 'string' } ,
163
166
{ name : 'discussion' , type : 'string' } ,
164
167
{ name : 'choices' , type : 'string[]' } ,
168
+ { name : 'labels' , type : 'string[]' } ,
165
169
{ name : 'plugins' , type : 'string' }
166
170
]
167
171
} ;
0 commit comments