UNPKG

solidity-cron

Version:

[![Build Status](https://travis-ci.com/Frontier-project/cron.svg?token=DJeMzxJJncp3nRaEUuxH&branch=master)](https://travis-ci.com/Frontier-project/cron) [![codecov](https://codecov.io/gh/Frontier-project/cron/branch/master/graph/badge.svg?token=BGbU5Q6IRV

10 lines (8 loc) 262 B
const DailyPeriod = artifacts.require('Daily.sol') const DateTime = artifacts.require('DateTime.sol') module.exports = function (deployer) { deployer.deploy(DateTime).then(() => { deployer.deploy(DailyPeriod) }) deployer.link(DateTime, DailyPeriod) }