-
Notifications
You must be signed in to change notification settings - Fork 3
/
bootstrap.js
266 lines (248 loc) · 6.26 KB
/
bootstrap.js
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
const { writeFile } = require('fs').promises
const Ceramic = require('@ceramicnetwork/http-client').default
const { createDefinition, publishSchema } = require('@ceramicstudio/idx-tools')
const { Ed25519Provider } = require('key-did-provider-ed25519')
const fromString = require('uint8arrays/from-string')
// const CERAMIC_URL = 'http://localhost:7007';
const CERAMIC_URL = 'https://ceramic-clay.3boxlabs.com';
// contract on rinkeby
const contractAddress = '0x8dbbd010B0B4B215C07feF16FEa9dA4Ea8e3FfA1'
const ProposalSchema = {
$schema: 'http://json-schema.org/draft-07/schema#',
type: 'object',
title: 'Proposal',
properties: {
context: {
type: 'string'
},
title: {
type: 'string'
},
currency: {
type: 'string'
},
amount: {
type: 'number'
},
beneficiary: {
type: 'string'
},
description: {
type: 'string'
},
url: {
type: 'string'
}
},
additionalProperties: false,
required: [
'context',
'title',
'currency',
'amount',
'beneficiary',
'url'
]
}
const ConvictionsSchema = {
'$schema': 'http://json-schema.org/draft-07/schema#',
type: 'object',
title: 'Convictions',
properties: {
context: {
type: 'string'
},
supply: {
type: 'number'
},
proposals: {
type: 'array',
items: {
$ref: '#/definitions/proposals'
}
},
convictions: {
type: 'array',
items: {
$ref: '#/definitions/convictions'
}
}
},
additionalProperties: false,
required: [
'context',
'proposals',
'convictions'
],
definitions: {
proposals: {
type: 'string',
$ceramic: {
type: 'tile',
schema: '<Proposal schema docID>',
},
maxLength: 150
},
convictions: {
type: 'object',
properties: {
proposal: {
type: 'string',
$ceramic: {
type: 'tile',
schema: '<Proposal schema docID>',
},
maxLength: 150
},
allocation: {
type: 'number'
}
},
required: [
'proposal',
'allocation'
]
}
}
}
const ConvictionsStateSchema = {
$schema: 'http://json-schema.org/draft-07/schema#',
type: 'object',
title: 'ConvictionState',
properties: {
context: {
type: 'string'
},
supply: {
type: 'number'
},
participants: {
type: 'array',
items: {
$ref: '#/definitions/participants'
}
},
proposals: {
type: 'array',
items: {
$ref: '#/definitions/proposals'
}
}
},
additionalProperties: false,
required: [
'context',
'supply',
'participants',
'proposals'
],
definitions: {
participants: {
type: 'object',
properties: {
account: {
type: 'string'
},
balance: {
type: 'number'
},
convictions: {
type: 'string',
$ceramic: {
type: 'tile',
schema: '<convictions schema docID>',
},
maxLength: 150
}
},
required: [
'account',
'balance',
'convictions'
]
},
proposals: {
type: 'object',
properties: {
proposal: {
type: 'string',
$ceramic: {
type: 'tile',
schema: '<Proposal schema docID>',
},
maxLength: 150
},
totalConviction: {
type: 'number'
},
triggered: {
type: 'boolean'
}
},
required: [
'proposal',
'totalConviction',
'triggered'
]
}
}
}
async function run() {
// The seed must be provided as an environment variable
const seed = fromString(process.env.SEED, 'base16')
// Connect to the local Ceramic node
const ceramic = new Ceramic(CERAMIC_URL)
// Authenticate the Ceramic instance with the provider
await ceramic.setDIDProvider(new Ed25519Provider(seed))
const proposalSchema = await publishSchema(ceramic, { content: ProposalSchema })
console.log(`published schema: `, proposalSchema)
ConvictionsSchema.definitions.proposals.$ceramic.schema = proposalSchema.commitId.toUrl()
ConvictionsSchema.definitions.convictions.properties.proposal.$ceramic.schema = proposalSchema.commitId.toUrl()
const convictionsSchema = await publishSchema(ceramic, { content: ConvictionsSchema })
console.log(`published schema: `, convictionsSchema)
ConvictionsStateSchema.definitions.participants.properties.convictions.$ceramic.schema = convictionsSchema.commitId.toUrl()
ConvictionsStateSchema.definitions.proposals.properties.proposal.$ceramic.schema = proposalSchema.commitId.toUrl()
const convictionsStateSchema = await publishSchema(ceramic, { content: ConvictionsStateSchema })
console.log(`published schema: `, convictionsStateSchema)
const convictionsDefinition = await createDefinition(ceramic, {
name: 'convictions',
description: 'Conviction voting data definitions',
schema: convictionsSchema.commitId.toUrl(),
})
const emptyConvictionsState = {
context: 'eip155:1/erc20:' + contractAddress,
supply: 0,
participants: [],
proposals: []
}
convictionsStateDoc = await ceramic.createDocument('tile', {
content: emptyConvictionsState,
metadata: {
// controllers: [ceramic.did.id],
schema: convictionsStateSchema.commitId.toUrl(),
family: convictionsDefinition.id.toString()
},
})
console.log(`wrote empty convictionsState with id: ${convictionsStateDoc.id}`)
// Write config to JSON file
const config = {
definitions: {
convictions: convictionsDefinition.id.toString(),
},
schemas: {
Proposal: proposalSchema.commitId.toUrl(),
Convictions: convictionsSchema.commitId.toUrl(),
ConvictionsState: convictionsStateSchema.commitId.toUrl()
},
config: {
context: 'eip155:1/erc20:' + contractAddress,
convictionStateDocID: convictionsStateDoc.id.toString(),
family: convictionsDefinition.id.toString(),
IDXdefinitionName: 'convictions'
}
}
await writeFile('./src/config.json', JSON.stringify(config))
console.log('Config written to src/config.json file:', config)
process.exit(0)
}
run().catch(console.error)