Skip to content

Commit

Permalink
fix(contracts): include ABI in contract list
Browse files Browse the repository at this point in the history
  • Loading branch information
shahnami committed Sep 7, 2024
1 parent a38a9f4 commit 8007634
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/cmd/deploy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -700,8 +700,7 @@ export default class DefenderDeploy {
const actions = await getActionClient(this.teamKey!).list();
const notifications = await client.listNotificationChannels();

// TODO: Add a new endpoint in defender-sdk which includes contract ABI and NatSpec
const contracts = await getProposalClient(this.teamKey!).listContracts();
const contracts = await getProposalClient(this.teamKey!).listContracts({ includeAbi: true });

const retrieveExisting = () => client.list().then((r) => r.items);

Expand Down

0 comments on commit 8007634

Please sign in to comment.