expede/ethereum-status-codes

View on GitHub
migrations/2_run_migrations.js

Summary

Maintainability
A
0 mins
Test Coverage
/* eslint-disable no-undef */
const FISSION = artifacts.require('FISSION');
const LocalizationPreferences = artifacts.require('LocalizationPreferences');
const BasicEnglishLocalization = artifacts.require('BasicEnglishLocalization');
/* eslint-enable no-undef */

module.exports = async (deployer) => {
  await deployer.deploy(FISSION);
  const localization = await deployer.deploy(BasicEnglishLocalization);
  await deployer.deploy(LocalizationPreferences, localization.address);
};