Skip to content

Commit

Permalink
added contract owners
Browse files Browse the repository at this point in the history
  • Loading branch information
aalavandhan committed Oct 21, 2021
1 parent 3760298 commit b22c066
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tasks/info/ampl.js
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@ task(
'XCAmple:implementation',
await proxyAdmin.getProxyImplementation(xcAmple.address),
);
console.log('XCAmple:owner:', await xcAmple.owner());
console.log('XCAmple:controller:', await xcAmple.controller());
console.log(
'XCAmple:totalSupply:',
Expand All @@ -224,6 +225,10 @@ task(
'XCAmpleController:implementation',
await proxyAdmin.getProxyImplementation(xcAmple.address),
);
console.log(
'XCAmpleController:owner',
await xcAmpleController.owner(),
);
console.log(
'XCAmpleController:xcAmple',
await xcAmpleController.xcAmple(),
Expand All @@ -243,6 +248,7 @@ task(
);

console.log('RebaseRelayer:', rebaseRelayer.address);
console.log('RebaseRelayer:owner', await rebaseRelayer.owner());
const transactionsSize = (
await rebaseRelayer.transactionsSize()
).toNumber();
Expand Down

0 comments on commit b22c066

Please sign in to comment.