Skip to content

Commit

Permalink
Merge pull request #35 from cowprotocol/update-dune-sql-spellbook
Browse files Browse the repository at this point in the history
[Easy] Updated new token insert
  • Loading branch information
Gent Rexha committed Jul 4, 2023
2 parents cac4c57 + db5fe45 commit d2831c9
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 d2831c9

Please sign in to comment.