Skip to content

Commit 23b57e6

Browse files
committed
fix deploy scripts
1 parent 9bffd76 commit 23b57e6

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

scripts/deploy/dropERC1155.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ import { TWFactory, DropERC1155 } from "typechain";
77
async function main() {
88
const [caller]: SignerWithAddress[] = await ethers.getSigners();
99

10-
// const twFeeAddress: string = "0x8c4b615040ebd2618e8fc3b20cefe9abafdeb0ea"; // replace
11-
const twFactoryAddress: string = "0x5DBC7B840baa9daBcBe9D2492E45D7244B54A2A0"; // replace
10+
const twFactoryAddress: string = ethers.constants.AddressZero; // replace
1211

1312
const twFactory: TWFactory = await ethers.getContractAt("TWFactory", twFactoryAddress);
1413

scripts/deploy/dropERC20.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ import { DropERC20, TWFactory } from "typechain";
77
async function main() {
88
const [caller]: SignerWithAddress[] = await ethers.getSigners();
99

10-
// const twFeeAddress: string = "0x8c4b615040ebd2618e8fc3b20cefe9abafdeb0ea"; // replace
11-
const twFactoryAddress: string = "0x5DBC7B840baa9daBcBe9D2492E45D7244B54A2A0"; // replace
10+
const twFactoryAddress: string = ethers.constants.AddressZero; // replace
1211

1312
const twFactory: TWFactory = await ethers.getContractAt("TWFactory", twFactoryAddress);
1413

scripts/deploy/dropERC721.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ import { TWFactory, DropERC721 } from "typechain";
77
async function main() {
88
const [caller]: SignerWithAddress[] = await ethers.getSigners();
99

10-
// const twFeeAddress: string = "0x8c4b615040ebd2618e8fc3b20cefe9abafdeb0ea"; // replace
11-
const twFactoryAddress: string = "0x5DBC7B840baa9daBcBe9D2492E45D7244B54A2A0"; // replace
10+
const twFactoryAddress: string = ethers.constants.AddressZero; // replace
1211

1312
const twFactory: TWFactory = await ethers.getContractAt("TWFactory", twFactoryAddress);
1413

0 commit comments

Comments
 (0)