Skip to content

Commit

Permalink
remove MASA from check-deployment script
Browse files Browse the repository at this point in the history
  • Loading branch information
miquelcabot committed Dec 23, 2022
1 parent 274b8f7 commit 6041148
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/check-deployment.ts
Expand Up @@ -2,8 +2,6 @@
import "@nomiclabs/hardhat-ethers";
import { deployments, ethers } from "hardhat";
import {
IERC20,
IERC20__factory,
SoulboundCreditScore,
SoulboundCreditScore__factory,
SoulboundIdentity,
Expand All @@ -27,7 +25,6 @@ async function main() {

const env = getEnvParams(network.name);

const { address: masaAddress } = await deployments.get("MASA");
const { address: soulboundIdentityAddress } = await deployments.get(
"SoulboundIdentity"
);
Expand All @@ -50,7 +47,6 @@ async function main() {

console.log("");

console.log(`MASA address: ${masaAddress}`);
console.log(`SoulboundIdentity address: ${soulboundIdentityAddress}`);
console.log(`SoulboundCreditScore address: ${soulboundCreditScoreAddress}`);
console.log(`Soulbound2FA address: ${soulbound2FAAddress}`);
Expand All @@ -60,7 +56,6 @@ async function main() {
console.log("");

// create contract instances
const masa: IERC20 = IERC20__factory.connect(masaAddress, admin);
const soulboundIdentity: SoulboundIdentity =
SoulboundIdentity__factory.connect(soulboundIdentityAddress, admin);
const soulName: SoulName = SoulName__factory.connect(soulNameAddress, admin);
Expand All @@ -75,7 +70,6 @@ async function main() {
const soulboundCreditScore: SoulboundCreditScore =
SoulboundCreditScore__factory.connect(soulboundCreditScoreAddress, admin);

console.log(`MASA balance: ${await masa.balanceOf(admin.address)}`);
console.log("");

console.log(
Expand Down

0 comments on commit 6041148

Please sign in to comment.