diff --git a/backend/moonstreamapi/providers/__init__.py b/backend/moonstreamapi/providers/__init__.py index b1523d8f..c92329cd 100644 --- a/backend/moonstreamapi/providers/__init__.py +++ b/backend/moonstreamapi/providers/__init__.py @@ -49,7 +49,7 @@ class ReceivingEventsException(Exception): event_providers: Dict[str, Any] = { moonworm_provider.EthereumMoonwormProvider.event_type: moonworm_provider.EthereumMoonwormProvider, moonworm_provider.PolygonMoonwormProvider.event_type: moonworm_provider.PolygonMoonwormProvider, - transactions.ErhereumTransactions.event_type: transactions.ErhereumTransactions, + transactions.EthereumTransactions.event_type: transactions.EthereumTransactions, transactions.PolygonTransactions.event_type: transactions.PolygonTransactions, bugout.polygon_whalewatch_provider.event_type: bugout.polygon_whalewatch_provider, bugout.ethereum_txpool_provider.event_type: bugout.ethereum_txpool_provider, diff --git a/backend/moonstreamapi/providers/transactions.py b/backend/moonstreamapi/providers/transactions.py index fa0d469d..a79d5eb8 100644 --- a/backend/moonstreamapi/providers/transactions.py +++ b/backend/moonstreamapi/providers/transactions.py @@ -451,7 +451,7 @@ class TransactionsProvider: return self.ethereum_transaction_event(maybe_ethereum_transaction) -ErhereumTransactions = TransactionsProvider( +EthereumTransactions = TransactionsProvider( event_type="ethereum_blockchain", blockchain=AvailableBlockchainType("ethereum"), description="Provider for resiving transactions from Ethereum tables.", diff --git a/backend/moonstreamapi/routes/dashboards.py b/backend/moonstreamapi/routes/dashboards.py index 7cfccfc2..3089e985 100644 --- a/backend/moonstreamapi/routes/dashboards.py +++ b/backend/moonstreamapi/routes/dashboards.py @@ -20,7 +20,6 @@ from ..settings import ( MOONSTREAM_S3_SMARTCONTRACTS_ABI_BUCKET, MOONSTREAM_S3_SMARTCONTRACTS_ABI_PREFIX, ) -import pprint logger = logging.getLogger(__name__) diff --git a/crawlers/mooncrawl/mooncrawl/stats_worker/dashboard.py b/crawlers/mooncrawl/mooncrawl/stats_worker/dashboard.py index d8a8d099..dc17504b 100644 --- a/crawlers/mooncrawl/mooncrawl/stats_worker/dashboard.py +++ b/crawlers/mooncrawl/mooncrawl/stats_worker/dashboard.py @@ -40,13 +40,13 @@ logger.setLevel(logging.INFO) subscription_id_by_blockchain = { - "ethereum": "ethereum_smartcontract", - "polygon": "polygon_smartcontract", + "ethereum": "ethereum_blockchain", + "polygon": "polygon_blockchain", } blockchain_by_subscription_id = { - "ethereum_smartcontract": "ethereum", - "polygon_smartcontract": "polygon", + "ethereum_blockchain": "ethereum", + "polygon_blockchain": "polygon", }