Skip to content

Commit

Permalink
Updated new token insert
Browse files Browse the repository at this point in the history
  • Loading branch information
gentrexha committed Jul 3, 2023
1 parent cac4c57 commit db5fe45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/missing_tokens.py
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ def as_dune_string(self) -> str:
Example:
('0xfcc5c47be19d06bf83eb04298b026f81069ff65b', 'yCRV', 18),
"""
return f",('{str(self.address).lower()}', '{self.symbol}', {self.decimals})"
return f",({str(self.address).lower()}, '{self.symbol}', {self.decimals})"


def fetch_missing_tokens(dune: DuneClient, network: Network) -> list[Address]:
Expand Down

0 comments on commit db5fe45

Please sign in to comment.