mirror of git3://git3.w3q/git3-contract
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.
42 lines
1.0 KiB
TypeScript
42 lines
1.0 KiB
TypeScript
|
|
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;
|
|
});
|