@@ -20,19 +20,19 @@ const sleep = (sleepDurationInSecs: number) => (new Promise((resolve) => {
20
20
21
21
console . log ( "\n\n[+] Deploying contracts..." ) ;
22
22
23
- // Deploy CZP
23
+ /*/ / Deploy CZP
24
24
const czpTokenContract = await (await (await ethers.getContractFactory("CazzPayToken")).deploy(ethers.utils.parseEther("10000000"))).deployed();
25
25
console.log("\t [>] $CZP contract deployed!");
26
26
27
27
// Deploy TestCoin
28
28
const testCoinContract = await (await (await ethers.getContractFactory("TestCoin")).deploy(ethers.utils.parseEther("10000000"))).deployed();
29
- console . log ( "\t [>] $TST contract deployed!" ) ;
29
+ console.log("\t [>] $TST contract deployed!");*/
30
30
31
31
// Deploy CazzPay
32
32
const cazzPayContract = await ( await ( await ethers . getContractFactory ( "CazzPay" ) ) . deploy (
33
33
UNISWAP_V2_FACTORY ,
34
34
UNISWAP_V2_ROUTER ,
35
- czpTokenContract . address ,
35
+ "0x8d7b5E919620D2C9742389bc1CeC671eaB0E3150" ,
36
36
WETH ,
37
37
100 , // Payment processing fees = 1%
38
38
REDSTONE_SIGNER ) )
@@ -42,14 +42,14 @@ const sleep = (sleepDurationInSecs: number) => (new Promise((resolve) => {
42
42
43
43
// Print contract addresses
44
44
console . table ( [
45
- {
45
+ /* {
46
46
Name: "CazzPayToken",
47
47
Address: czpTokenContract.address
48
48
},
49
49
{
50
50
Name: "TestCoin",
51
51
Address: testCoinContract.address
52
- } ,
52
+ },*/
53
53
{
54
54
Name : "CazzPay" ,
55
55
Address : cazzPayContract . address
@@ -60,20 +60,20 @@ const sleep = (sleepDurationInSecs: number) => (new Promise((resolve) => {
60
60
console . log ( "\n[...] Waiting a few mins before starting verification..." )
61
61
await sleep ( 120 ) ;
62
62
await Promise . all ( [
63
- run ( "verify:verify" , {
63
+ /* run("verify:verify", {
64
64
address: czpTokenContract.address,
65
65
constructorArguments: [ethers.utils.parseEther("10000000")],
66
66
}),
67
67
run("verify:verify", {
68
68
address: testCoinContract.address,
69
69
constructorArguments: [ethers.utils.parseEther("10000000")],
70
- } ) ,
70
+ }),*/
71
71
run ( "verify:verify" , {
72
72
address : cazzPayContract . address ,
73
73
constructorArguments : [
74
74
UNISWAP_V2_FACTORY ,
75
75
UNISWAP_V2_ROUTER ,
76
- czpTokenContract . address ,
76
+ "0x8d7b5E919620D2C9742389bc1CeC671eaB0E3150" ,
77
77
WETH ,
78
78
100 , // Payment processing fees = 1%
79
79
REDSTONE_SIGNER
0 commit comments