You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
391 B
15 lines
391 B
|
|
module.exports = async function ({ deployments, getNamedAccounts }) {
|
|
const { deploy } = deployments
|
|
const { deployer } = await getNamedAccounts()
|
|
console.log(`>>> your address: ${deployer}`)
|
|
|
|
await deploy("PresaleFactoryNew", {
|
|
from: deployer,
|
|
args: [],
|
|
log: true,
|
|
waitConfirmations: 1,
|
|
})
|
|
}
|
|
|
|
module.exports.tags = ["PresaleFactoryNew"]
|
|
|