Skip to content

Commit

Permalink
Merge pull request #16 from unicef/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
dappsar authored Oct 12, 2023
2 parents 82fdbad + 8f8bc63 commit e157ebf
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion scripts/deployAllWithMock.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async function main() {
console.log("Gigacounts Token address:", token.address);

// deploy handler
const ContractHandler = await ethers.getContractFactory("GigacountsContractHandlerV6");
const ContractHandler = await ethers.getContractFactory("GigacountsContractHandler");
const contractHandler = await ContractHandler.deploy();
await contractHandler.deployed();
console.log("Gigacounts Contract Handler address:", contractHandler.address);
Expand Down
2 changes: 1 addition & 1 deletion scripts/deployHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async function main() {

console.log("Account balance:", (await deployer.getBalance()).toString());

const ContractHandler = await ethers.getContractFactory("GigacountsContractHandlerV6");
const ContractHandler = await ethers.getContractFactory("GigacountsContractHandler");
const contractHandler = await ContractHandler.deploy();
await contractHandler.deployed();
console.log("Gigacounts Contract Handler address:", contractHandler.address);
Expand Down
2 changes: 1 addition & 1 deletion scripts/deployHandlerWithProxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ async function main() {

console.log("Account balance:", (await deployer.getBalance()).toString());

const ContractHandler = await ethers.getContractFactory("GigacountsContractHandlerV6");
const ContractHandler = await ethers.getContractFactory("GigacountsContractHandler");
const contractHandler = await ContractHandler.deploy();
await contractHandler.deployed();
console.log("Gigacounts Contract Handler address:", contractHandler.address);
Expand Down
2 changes: 1 addition & 1 deletion scripts/interact-handler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async function main() {
const tokenDecimals = await token.decimals();

console.log('Getting the Gigacounts handler contract...');
const Handler = await ethers.getContractFactory('GigacountsContractHandlerV6');
const Handler = await ethers.getContractFactory('GigacountsContractHandler');
const handler = await Handler.deploy()

console.log('Getting Signers...');
Expand Down

0 comments on commit e157ebf

Please sign in to comment.