Skip to content

Commit

Permalink
fixes verification call for skaleToken contract in deploy.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
eduv09 committed Mar 4, 2025
1 parent 024127e commit 1eb80cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion migrations/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ async function main() {
console.log("Verify contracts");
for (const artifact of contractArtifacts) {
if (artifact.contract === skaleTokenName) {
await verify(skaleTokenName, await skaleToken.getAddress(), [contractManager.address, []]);
await verify(skaleTokenName, await skaleToken.getAddress(), [await contractManager.getAddress(), []]);
} else {
await verifyProxy(artifact.contract, artifact.address, [])
}
Expand Down

0 comments on commit 1eb80cc

Please # to comment.