mirror of
https://github.com/Instadapp/smart-contract.git
synced 2024-07-29 22:08:07 +00:00
6 lines
136 B
JavaScript
6 lines
136 B
JavaScript
const ownableFactory = artifacts.require('Ownable.sol')
|
|
|
|
module.exports = async deployer => {
|
|
await deployer.deploy(ownableFactory)
|
|
}
|