Skip to content
Merged
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
6 changes: 3 additions & 3 deletions scripts/deploy-converter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ const main = async () => {
const encryptedERC_ = await encryptedERCFactory.connect(deployer).deploy({
registrar: registrar.target,
isConverter: true, // This is a converter eERC
name: "Test",
symbol: "TEST",
name: "",
symbol: "",
mintVerifier,
withdrawVerifier,
transferVerifier,
Expand All @@ -50,7 +50,7 @@ const main = async () => {
await tx.wait();

console.log("ERC20 deployed at:", erc20.target);
console.log("Minted 10000 TEST to deployer");
console.log("Minted 10000 erc20 to deployer");

console.table({
registrationVerifier,
Expand Down
Loading