Skip to content

Commit e788e20

Browse files
committed
ci: remove deleted legacy facade imports from install smoke-test
1 parent 4aa2f82 commit e788e20

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/test-install.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@ jobs:
5555
# Verify main modules
5656
python -c "from aiochainscan import ChainscanClient, Method; print('✓ Main classes imported')"
5757
58-
# Verify facade imports
59-
python -c "from aiochainscan import get_balance, get_block, get_transaction; print('✓ Facades imported')"
58+
# Verify modern public API
59+
python -c "from aiochainscan import ChainscanClient, Method, SmartContract, DecodedEvent, DecodedTransaction; print('✓ Modern public API imported')"
6060
6161
# Verify CLI is available
6262
which aiochainscan || echo "⚠ CLI not found"
@@ -181,7 +181,7 @@ jobs:
181181
print(f'Package location: {pkg_path}')
182182
183183
# Check for key modules
184-
modules = ['client', 'config', 'network', 'core', 'services', 'adapters', 'ports', 'domain']
184+
modules = ['config', 'network', 'core', 'services', 'adapters', 'ports', 'domain']
185185
for mod in modules:
186186
mod_path = os.path.join(pkg_path, mod + '.py')
187187
dir_path = os.path.join(pkg_path, mod)

0 commit comments

Comments
 (0)