• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

safe-global / safe-client-gateway / 18192499382

02 Oct 2025 12:06PM UTC coverage: 89.205% (+0.008%) from 89.197%
18192499382

Pull #2721

github

tmjssz
refactor: improve extraction of contract address
Pull Request #2721: refactor(safe-shield): Enhanced transaction decoding via TransactionsService

3781 of 4656 branches covered (81.21%)

Branch coverage included in aggregate %.

42 of 47 new or added lines in 5 files covered. (89.36%)

2 existing lines in 1 file now uncovered.

12697 of 13816 relevant lines covered (91.9%)

525.67 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/src/modules/safe-shield/safe-shield.module.ts
1
import { Module } from '@nestjs/common';
×
2
import { SafeShieldService } from './safe-shield.service';
×
3
import { RecipientAnalysisModule } from './recipient-analysis/recipient-analysis.module';
×
4
import { ContractAnalysisModule } from './contract-analysis/contract-analysis.module';
×
5
import { ThreatAnalysisModule } from './threat-analysis/threat-analysis.module';
×
NEW
6
import { TransactionsModule } from '@/routes/transactions/transactions.module';
×
7

8
/**
9
 * Main module for Safe Shield transaction analysis system.
10
 *
11
 * This module orchestrates all analysis types and provides the main
12
 * entry point for transaction safety checks. It imports all analysis
13
 * modules and exports the main SafeShieldService.
14
 */
15
@Module({
16
  imports: [
17
    RecipientAnalysisModule,
18
    ContractAnalysisModule,
19
    ThreatAnalysisModule,
20
    TransactionsModule,
21
  ],
22
  providers: [SafeShieldService],
23
  exports: [SafeShieldService],
24
})
25
export class SafeShieldModule {}
×
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc