add deploy script

main
cyl19970726 2 years ago
parent 31d1465d9e
commit f5525d3d2f

@ -0,0 +1,52 @@
// const hubfacFac = await ethers.getContractFactory("HubFactory");
// const hubFac = await hubfacFac.deploy();
// await hubFac.deployed();
// await hubFac.newHubImp();
// expect(await hubFac.createHub(true)).to.emit(hubFac,"CreateHub");
// let hub = await hubFac.hubs(0);
// console.log(hub);
// let git3 = await ethers.getContractAt("Hubv3",hub)
import { ethers } from "hardhat";
async function main() {
let provider = ethers.provider
let [operator,] = await ethers.getSigners();
let nonce = await operator.getTransactionCount()
let price = await provider.getFeeData()
console.log(price)
console.log(operator.address, nonce)
const Git3Fac = await ethers.getContractFactory("HubFactory");
const hubFac = await Git3Fac.deploy({ nonce: nonce });
let logicReceipt = await hubFac.deployed()
console.log(logicReceipt.deployTransaction.hash)
nonce++
await hubFac.newHubImp({ nonce: nonce });
nonce++
await hubFac.createHub(true,{ nonce: nonce })
nonce++
let hubAddr = await hubFac.hubs(0);
let git3 = await ethers.getContractAt("Hubv3",hubAddr)
// console.log({logicReceipt,proxyReceipt});
console.log("HubFactory Contract", hubFac.address);
console.log("Hub Contract", git3.address);
}
// We recommend this pattern to be able to use async/await everywhere
// and properly handle errors.
main().catch((error) => {
console.error(error);
process.exitCode = 1;
});

@ -0,0 +1,40 @@
import { ethers } from "hardhat";
async function main() {
let provider = ethers.provider
let [operator,] = await ethers.getSigners();
let nonce = await operator.getTransactionCount()
let price = await provider.getFeeData()
console.log(price)
console.log(operator.address, nonce)
const Git3Fac = await ethers.getContractFactory("HubFactory");
const hubFac = await Git3Fac.deploy({ nonce: nonce });
let logicReceipt = await hubFac.deployed()
console.log(logicReceipt.deployTransaction.hash)
nonce++
await hubFac.newHubImp({ nonce: nonce });
nonce++
await hubFac.createHub(false,{ nonce: nonce })
nonce++
let hubAddr = await hubFac.hubs(0);
let git3 = await ethers.getContractAt("Hubv3",hubAddr)
// console.log({logicReceipt,proxyReceipt});
console.log("HubFactory Contract", hubFac.address);
console.log("Hub Contract", git3.address);
}
// We recommend this pattern to be able to use async/await everywhere
// and properly handle errors.
main().catch((error) => {
console.error(error);
process.exitCode = 1;
});
Loading…
Cancel
Save