mirror of
https://github.com/Instadapp/InstaContract.git
synced 2024-07-29 22:47:45 +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)
|
||
|
}
|