-
Notifications
You must be signed in to change notification settings - Fork 0
/
factory.js
446 lines (397 loc) · 13.5 KB
/
factory.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
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
const { abi: registryAbi } = require('./build/contracts/AraRegistry.json')
const debug = require('debug')('ara-contracts:factory')
const replace = require('replace-in-file')
let constants = require('./constants')
const mkdirp = require('mkdirp')
const pify = require('pify')
const path = require('path')
const solc = require('solc')
const fs = require('fs')
const {
validate,
web3: {
tx,
sha3,
call,
account,
contract,
abi: web3Abi
}
} = require('ara-util')
async function compileAndDeployAraContracts(opts) {
try {
await compileAraContracts()
} catch (err) {
debug(`compilation failed with error: ${err.message}`)
}
try {
return deployAraContracts(opts)
} catch (err) {
throw err
}
}
/*
* Step 1: Compiles contracts into bytecode and saves to disk
* This step must be performed manually locally before pushing to Github
*/
async function compileAraContracts() {
delete require.cache[require.resolve('./constants')]
constants = require('./constants')
try {
debug('Compiling contracts...')
await pify(mkdirp)(constants.BYTESDIR)
await _compileRegistry()
await _compileLibrary()
await _compileToken()
debug('Contracts compiled.')
} catch (err) {
throw err
}
}
/*
* Step 2: Deploys contracts through the AraFactory contract and saves addresses to Constants.js
* @param {String} opts.masterDid
* @param {String} opts.password
* @param {Object} [opts.keyringOpts]
* @return {Object}
* @throws {Error, TypeError}
*/
async function deployAraContracts(opts) {
delete require.cache[require.resolve('./constants')]
constants = require('./constants')
let acct
try {
acct = await _validateMasterOpts(opts)
} catch (err) {
throw err
}
try {
debug('Deploying...')
const registryAddress = await _deployRegistry(acct)
const libraryAddress = await _deployLibrary(acct, registryAddress)
const tokenAddress = await _deployToken(acct)
await _replaceConstants(registryAddress, libraryAddress, tokenAddress)
return {
registryAddress,
libraryAddress,
tokenAddress
}
} catch (err) {
throw err
}
}
/*
* Compiles and upgrades Registry contract
* @param {String} opts.masterDid
* @param {String} opts.password
* @param {Object} [opts.keyringOpts]
* @return {Object}
* @throws {Error, TypeError}
*/
async function compileAndUpgradeRegistry(opts) {
let acct
try {
acct = await _validateMasterOpts(opts)
} catch (err) {
throw err
}
delete require.cache[require.resolve('./constants')]
constants = require('./constants')
try {
await pify(mkdirp)(constants.BYTESDIR)
await _compileRegistry()
await _deployRegistry(acct, true)
} catch (err) {
throw err
}
}
/*
* Compiles and upgrades Library contract
* @param {String} opts.masterDid
* @param {String} opts.password
* @param {Object} [opts.keyringOpts]
* @return {Object}
* @throws {Error, TypeError}
*/
async function compileAndUpgradeLibrary(opts) {
let acct
try {
acct = await _validateMasterOpts(opts)
} catch (err) {
throw err
}
delete require.cache[require.resolve('./constants')]
constants = require('./constants')
try {
await pify(mkdirp)(constants.BYTESDIR)
await _compileLibrary()
await _deployLibrary(acct, constants.REGISTRY_ADDRESS, true)
} catch (err) {
throw err
}
}
/*
* Compiles and upgrades Token contract
* @param {String} opts.masterDid
* @param {String} opts.password
* @param {Object} [opts.keyringOpts]
* @return {Object}
* @throws {Error, TypeError}
*/
async function compileAndUpgradeToken(opts) {
let acct
try {
acct = await _validateMasterOpts(opts)
} catch (err) {
throw err
}
delete require.cache[require.resolve('./constants')]
constants = require('./constants')
try {
await pify(mkdirp)(constants.BYTESDIR)
await _compileToken()
await _deployToken(acct, true)
} catch (err) {
throw err
}
}
async function getLatestVersionAddress(label) {
if ('string' !== typeof label || !label) {
throw new TypeError('Expecting label to be a non-empty string.')
}
try {
return call({
abi: registryAbi,
address: constants.ARA_REGISTRY_ADDRESS,
functionName: 'getLatestVersionAddress',
arguments: [
sha3(label, false)
]
})
} catch (err) {
throw err
}
}
async function getUpgradeableContractAddress(label, version) {
if ('string' !== typeof label || !label) {
throw new TypeError('Expecting label to be a non-empty string.')
} else if ('string' !== typeof version || !version) {
throw new TypeError('Expecting version to be a non-empty string.')
}
try {
return call({
abi: registryAbi,
address: constants.ARA_REGISTRY_ADDRESS,
functionName: 'getUpgradeableContractAddress',
arguments: [
sha3(label, false), version
]
})
} catch (err) {
throw err
}
}
async function _validateMasterOpts(opts) {
if (!opts || 'object' !== typeof opts) {
throw new TypeError('Expecting opts object.')
} else if ('string' !== typeof opts.masterDid || !opts.masterDid) {
throw TypeError('Expecting non-empty requester DID')
} else if ('string' !== typeof opts.password || !opts.password) {
throw TypeError('Expecting non-empty password')
}
let { masterDid } = opts
const { password, keyringOpts } = opts
let acct
try {
({ did: masterDid } = await validate({
did: masterDid, password, label: 'factory', keyringOpts
}))
masterDid = `${constants.AID_PREFIX}${masterDid}`
acct = await account.load({ did: masterDid, password })
} catch (err) {
throw err
}
return acct
}
async function _compile(contractname, sources, bytespath) {
const compiledFile = solc.compile({ sources }, 1)
const compiledContract = compiledFile.contracts[`${contractname}`]
const { bytecode } = compiledContract
await pify(fs.writeFile)(path.resolve(__dirname, `${bytespath}`), `0x${bytecode}`)
}
async function _compileRegistry() {
debug('Compiling Registry...')
await _compile(
constants.REGISTRY_LABEL,
{
'Registry.sol': await pify(fs.readFile)(path.resolve(__dirname, './contracts/ignored_contracts/Registry.sol'), 'utf8'),
'AraProxy.sol': await pify(fs.readFile)(path.resolve(__dirname, './contracts/AraProxy.sol'), 'utf8')
},
`${constants.BYTESDIR}/Registry_${constants.REGISTRY_VERSION}`
)
debug('Compiled Registry.')
}
async function _compileLibrary() {
debug('Compiling Library...')
await _compile(
constants.LIBRARY_LABEL,
{
'Registry.sol': await pify(fs.readFile)(path.resolve(__dirname, './contracts/ignored_contracts/Registry.sol'), 'utf8'),
'AraProxy.sol': await pify(fs.readFile)(path.resolve(__dirname, './contracts/AraProxy.sol'), 'utf8'),
'Library.sol': await pify(fs.readFile)(path.resolve(__dirname, './contracts/ignored_contracts/Library.sol'), 'utf8'),
'SafeMath32.sol': await pify(fs.readFile)(path.resolve(__dirname, './contracts/SafeMath32.sol'), 'utf8')
},
`${constants.BYTESDIR}/Library_${constants.LIBRARY_VERSION}`
)
debug('Compiled Library.')
}
async function _compileToken() {
debug('Compiling Ara Token...')
await _compile(
constants.TOKEN_LABEL,
{
'AraToken.sol': await pify(fs.readFile)(path.resolve(__dirname, './contracts/ignored_contracts/AraToken.sol'), 'utf8'),
'StandardToken.sol': await pify(fs.readFile)(path.resolve(__dirname, './contracts/ignored_contracts/StandardToken.sol'), 'utf8'),
'ERC20.sol': await pify(fs.readFile)(path.resolve(__dirname, './contracts/ignored_contracts/ERC20.sol'), 'utf8'),
'openzeppelin-solidity/contracts/math/SafeMath.sol': await pify(fs.readFile)(path.resolve(__dirname, './node_modules/openzeppelin-solidity/contracts/math/SafeMath.sol'), 'utf8'),
},
`${constants.BYTESDIR}/Token_${constants.TOKEN_VERSION}`
)
debug('Compiled Ara Token.')
}
async function _deployRegistry(acct, upgrade = false) {
debug(`${upgrade ? 'Upgrading' : 'Deploying'} Registry contract ${upgrade ? 'to ' : ''}version ${constants.REGISTRY_VERSION}.`)
let bytecode = await pify(fs.readFile)(path.resolve(__dirname, `${constants.BYTESDIR}/Registry_${constants.REGISTRY_VERSION}`))
const encodedData = web3Abi.encodeParameters([ 'address' ], [ acct.address ])
bytecode += encodedData.slice(2)
return _sendTx(acct, constants.REGISTRY_NAME, constants.REGISTRY_VERSION, bytecode, encodedData, upgrade)
}
async function _deployLibrary(acct, registryAddress, upgrade = false) {
debug(`${upgrade ? 'Upgrading' : 'Deploying'} Library contract ${upgrade ? 'to ' : ''}version ${constants.LIBRARY_VERSION}.`)
let bytecode = await pify(fs.readFile)(path.resolve(__dirname, `${constants.BYTESDIR}/Library_${constants.LIBRARY_VERSION}`))
const encodedData = web3Abi.encodeParameters([ 'address', 'address' ], [ acct.address, registryAddress ])
bytecode += encodedData.slice(2)
return _sendTx(acct, constants.LIBRARY_NAME, constants.LIBRARY_VERSION, bytecode, encodedData, upgrade)
}
async function _deployToken(acct, upgrade = false) {
debug(`${upgrade ? 'Upgrading' : 'Deploying'} Token contract ${upgrade ? 'to ' : ''}version ${constants.TOKEN_VERSION}.`)
let bytecode = await pify(fs.readFile)(path.resolve(__dirname, `${constants.BYTESDIR}/Token_${constants.TOKEN_VERSION}`))
const encodedData = web3Abi.encodeParameters([ 'address' ], [ acct.address ])
bytecode += encodedData.slice(2)
return _sendTx(acct, constants.TOKEN_NAME, constants.TOKEN_VERSION, bytecode, encodedData, upgrade)
}
async function _checkExists(label, version) {
try {
const address = await call({
abi: registryAbi,
address: constants.ARA_REGISTRY_ADDRESS,
functionName: 'getUpgradeableContractAddress',
arguments: [
sha3(label, false), version
]
})
if (!/^0x0+$/.test(address)) {
return true
}
return false
} catch (err) {
throw err
}
}
async function _sendTx(acct, label, version, bytecode, data, upgrade = false, gasPrice = 0) {
delete require.cache[require.resolve('./constants')]
constants = require('./constants')
let address
if (await _checkExists(label, version)) {
throw new Error(`${label} version ${version} already exists. Please update the version in constants.js and try again.`)
}
const values = upgrade ? [ sha3(label, false), version, bytecode ] : [ sha3(label, false), version, bytecode, data ]
const { tx: transaction, ctx } = await tx.create({
account: acct,
to: constants.ARA_REGISTRY_ADDRESS,
gasLimit: 7000000,
gasPrice,
data: {
abi: registryAbi,
functionName: upgrade ? 'upgradeContract' : 'addNewUpgradeableContract',
values
}
})
const { contract: registry, ctx: ctx2 } = await contract.get(registryAbi, constants.ARA_REGISTRY_ADDRESS)
if (!upgrade) {
address = await new Promise((resolve, reject) => {
tx.sendSignedTransaction(
transaction,
{
onhash: hash => debug('onhash:', hash),
onreceipt: receipt => debug('onreceipt:', receipt),
onconfirmation: (confNumber, receipt) => debug('onconfirmation:', confNumber, receipt),
onerror: error => debug('onerror:', error),
onmined: receipt => debug('onmined:', receipt)
}
)
registry.events.UpgradeableContractAdded({ fromBlock: 'latest' })
.on('data', (log) => {
const { returnValues: { _contractName, _address } } = log
if (sha3(label, false) === _contractName) {
debug(`Implementation deployed for ${label} at ${_address}`)
debug(label, 'abi-encoded constructor parameters:', web3Abi.encodeParameters([ 'address', 'address' ], [ constants.ARA_REGISTRY_ADDRESS, _address ]))
}
})
.on('error', log => reject(log))
registry.events.ProxyDeployed({ fromBlock: 'latest' })
.on('data', (log) => {
const { returnValues: { _contractName, _address } } = log
if (sha3(label, false) === _contractName) {
debug(`Proxy deployed for ${label} at ${_address}`)
resolve(_address)
}
})
.on('error', log => reject(log))
})
} else {
await new Promise((resolve, reject) => {
tx.sendSignedTransaction(
transaction,
{
onhash: hash => debug('onhash:', hash),
onreceipt: receipt => debug('onreceipt:', receipt),
onconfirmation: (confNumber, receipt) => debug('onconfirmation:', confNumber, receipt),
onerror: error => debug('onerror:', error),
onmined: receipt => debug('onmined:', receipt)
}
)
registry.events.ContractUpgraded()
.on('data', (log) => {
const { returnValues: { _contractName, _version } } = log
if (sha3(label, false) === _contractName && version === _version) {
debug(`${label} upgraded to version ${version}.`)
resolve()
}
})
.on('error', log => reject(log))
})
}
ctx.close()
ctx2.close()
return address
}
async function _replaceConstants(registryAddress, libraryAddress, tokenAddress) {
const constantsPath = path.resolve(__dirname, './constants.js')
const options = {
files: constantsPath,
from: [ constants.REGISTRY_ADDRESS, constants.LIBRARY_ADDRESS, constants.ARA_TOKEN_ADDRESS ],
to: [ registryAddress, libraryAddress, tokenAddress ]
}
await replace(options)
}
module.exports = {
getUpgradeableContractAddress,
compileAndDeployAraContracts,
compileAndUpgradeRegistry,
compileAndUpgradeLibrary,
getLatestVersionAddress,
compileAndUpgradeToken,
compileAraContracts,
deployAraContracts
}