Token ICO/IDO/ILO launchpad smart contract. It has all functions of Pinksale
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.
 
launchpad-contracts/deploy/PresaleFactoryNew.js

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"]