Initial commit: add .gitignore and README

This commit is contained in:
defiQUG
2026-02-09 21:51:48 -08:00
commit d4ba3d45e5
174 changed files with 32756 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
import { ethers } from "hardhat"
async function main() {
const initialSupply = ethers.parseEther('10000.0')
const QuorumToken = await ethers.getContractFactory("QuorumToken")
const deploy = await QuorumToken.deploy(initialSupply)
console.log("Contract deploy at: %s", await deploy.getAddress());
}
// 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
})