From b2713ee949755a121d922e7528fe524d4d8bb026 Mon Sep 17 00:00:00 2001 From: Andrey Date: Wed, 18 Dec 2024 16:40:23 +0200 Subject: [PATCH] Delete unrelated chain from v2. --- types/python/moonstreamtypes/blockchain.py | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/types/python/moonstreamtypes/blockchain.py b/types/python/moonstreamtypes/blockchain.py index 53e382ec..540f4129 100644 --- a/types/python/moonstreamtypes/blockchain.py +++ b/types/python/moonstreamtypes/blockchain.py @@ -20,8 +20,6 @@ from moonstreamdb.models import ( AvalancheFujiTransaction, AvalancheLabel, AvalancheTransaction, - B3Block, - B3SepoliaBlock, BlastBlock, BlastLabel, BlastSepoliaBlock, @@ -164,9 +162,7 @@ def get_block_model( BlastSepoliaBlock, ProofOfPlayApexBlock, MantleBlock, - MantleSepoliaBlock, - B3Block, - B3SepoliaBlock, + MantleSepoliaBlock ] ]: """ @@ -194,9 +190,7 @@ def get_block_model( BlastSepoliaBlock, ProofOfPlayApexBlock, MantleBlock, - MantleSepoliaBlock, - B3Block, - B3SepoliaBlock, + MantleSepoliaBlock ] ] if blockchain_type == AvailableBlockchainType.ETHEREUM: @@ -241,10 +235,6 @@ def get_block_model( block_model = MantleBlock elif blockchain_type == AvailableBlockchainType.MANTLE_SEPOLIA: block_model = MantleSepoliaBlock - elif blockchain_type == AvailableBlockchainType.B3: - block_model = B3Block - elif blockchain_type == AvailableBlockchainType.B3_SEPOLIA: - block_model = B3SepoliaBlock else: raise Exception("Unsupported blockchain type provided")