We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e69fde2 commit b28371bCopy full SHA for b28371b
app/grants/models.py
@@ -1736,7 +1736,7 @@ def blockexplorer_url_helper(self, tx_id):
1736
if self.checkout_type == 'eth_zksync':
1737
return f'https://zkscan.io/explorer/transactions/{tx_id.replace("sync-tx:", "")}'
1738
if self.checkout_type == 'eth_std':
1739
- network_sub = f"{{self.subscription.network}}." if self.subscription and self.subscription.network != 'mainnet' else ''
+ network_sub = f"{self.subscription.network}." if self.subscription and self.subscription.network != 'mainnet' else ''
1740
return f'https://{network_sub}etherscan.io/tx/{tx_id}'
1741
# TODO: support all block explorers for diff chains
1742
return ''
0 commit comments