Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Create deploy.ts #249

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 14 additions & 1 deletion scripts/deploy.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,24 @@
import '@nomiclabs/hardhat-ethers';
import { ethers } from "hardhat";

async function main() {
// 部署工厂创建合约
const wkFactory = await ethers.getContractFactory("Factory");
const factory = await wkFactory.deploy()
console.log(`Factory deployed to ${factory.address}`);

// 部署TokenA, TokenB合约
const FT = await ethers.getContractFactory("FT");
const ft = await FT.deploy("CBI", "CUIT");
const TokenA = await FT.deploy("TokenA", "[A]");
console.log(`Token0 deployed to ${TokenA.address}`);
const TokenB = await FT.deploy("TokenB", "[B]");
console.log(`Token1 deployed to ${TokenB.address}`);

await ft.deployed();
console.log(`FT deployed to ${ft.address}`);
// 创建币对交易池子
const wkSwap = await factory.createPair(TokenA.address, TokenB.address);
console.log(`Swap deployed to ${wkSwap.address}`);
}

// We recommend this pattern to be able to use async/await everywhere
Expand All @@ -15,3 +27,4 @@ main().catch((error) => {
console.error(error);
process.exitCode = 1;
});
});