2019-05-06 14:12:53 +03:00
|
|
|
const path = require('path')
|
|
|
|
const shell = require('shelljs')
|
|
|
|
|
|
|
|
const envsDir = path.join(__dirname, 'envs')
|
2019-05-21 11:58:43 +03:00
|
|
|
const deployContractsDir = path.join(__dirname, '../contracts-2.2.0/deploy')
|
2019-05-06 14:12:53 +03:00
|
|
|
const erc20ScriptDir = path.join(__dirname, 'scripts')
|
|
|
|
|
|
|
|
shell.cp(path.join(envsDir, 'contracts-deploy.env'), path.join(deployContractsDir, '.env'))
|
|
|
|
shell.cd(deployContractsDir)
|
|
|
|
shell.exec('node deploy.js')
|
|
|
|
shell.cd(erc20ScriptDir)
|
|
|
|
shell.exec('node deployERC20.js')
|
|
|
|
shell.cd(deployContractsDir)
|
|
|
|
shell.rm('.env')
|
|
|
|
shell.cp(path.join(envsDir, 'erc-contracts-deploy.env'), path.join(deployContractsDir, '.env'))
|
|
|
|
shell.exec('node deploy.js')
|
|
|
|
shell.rm('.env')
|
|
|
|
shell.cp(
|
|
|
|
path.join(envsDir, 'erc-native-contracts-deploy.env'),
|
|
|
|
path.join(deployContractsDir, '.env')
|
|
|
|
)
|
|
|
|
shell.exec('node src/utils/deployBlockReward.js')
|
|
|
|
shell.exec('node deploy.js')
|