Skip to content

Commit

Permalink
Update scripts/list_contracts.py
Browse files Browse the repository at this point in the history
Co-authored-by: Derek Pierre <derek.pierre@gmail.com>
  • Loading branch information
KPrasch and derekpierre authored Aug 7, 2024
1 parent 9279a95 commit e3374f0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/list_contracts.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,10 @@ def display_registry_entries(registry_entries):

for chain_id, chain_entries in grouped_entries:
chain_name = format_chain_name(get_chain_name(chain_id))
click.secho(f"{chain_name}", fg="yellow")
click.secho(f" {chain_name}", fg="yellow")

for index, entry in enumerate(chain_entries, start=1):
click.secho(f" {index}. {entry.name} {entry.address}", fg="cyan")
click.secho(f" {index}. {entry.name} {entry.address}", fg="cyan")


@click.command(cls=ConnectedProviderCommand, name="list-contracts")
Expand Down

0 comments on commit e3374f0

Please sign in to comment.