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

safe-global / safe-client-gateway / 18003122023

25 Sep 2025 09:27AM UTC coverage: 89.219% (+0.1%) from 89.11%
18003122023

Pull #2714

github

tmjssz
fix: linter errors
Pull Request #2714: feat(safe-shield): recipient analysis with tx decoding

3735 of 4599 branches covered (81.21%)

Branch coverage included in aggregate %.

107 of 111 new or added lines in 9 files covered. (96.4%)

2 existing lines in 1 file now uncovered.

12593 of 13702 relevant lines covered (91.91%)

529.36 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 { MultiSendDecoder } from '@/domain/contracts/decoders/multi-send-decoder.helper';
×
NEW
7
import { DataDecodedModule } from '@/routes/data-decode/data-decoded.module';
×
8

9
/**
10
 * Main module for Safe Shield transaction analysis system.
11
 *
12
 * This module orchestrates all analysis types and provides the main
13
 * entry point for transaction safety checks. It imports all analysis
14
 * modules and exports the main SafeShieldService.
15
 */
16
@Module({
17
  imports: [
18
    RecipientAnalysisModule,
19
    ContractAnalysisModule,
20
    ThreatAnalysisModule,
21
    DataDecodedModule,
22
  ],
23
  providers: [SafeShieldService, MultiSendDecoder],
24
  exports: [SafeShieldService],
25
})
26
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