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

safe-global / safe-client-gateway / 17458294467

04 Sep 2025 08:39AM UTC coverage: 89.229% (-0.02%) from 89.246%
17458294467

Pull #2696

github

PooyaRaki
refactor: update API version for multisig transactions and all-transactions endpoints
Pull Request #2696: refactor: update API version for multisig transactions and all-transactions endpoints

3608 of 4444 branches covered (81.19%)

Branch coverage included in aggregate %.

6 of 7 new or added lines in 1 file covered. (85.71%)

7 existing lines in 5 files now uncovered.

12405 of 13502 relevant lines covered (91.88%)

534.21 hits per line

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

90.0
/src/routes/data-decode/data-decoded.controller.ts
1
import { Body, Controller, HttpCode, Param, Post } from '@nestjs/common';
104✔
2
import { ApiOkResponse, ApiTags } from '@nestjs/swagger';
104✔
3
import { DataDecodedService } from '@/routes/data-decode/data-decoded.service';
104✔
4
import { DataDecoded } from '@/routes/data-decode/entities/data-decoded.entity';
104✔
5
import {
104✔
6
  TransactionDataDto,
7
  TransactionDataDtoSchema,
8
} from '@/routes/common/entities/transaction-data.dto.entity';
9
import { ValidationPipe } from '@/validation/pipes/validation.pipe';
104✔
10

11
@ApiTags('data-decoded')
12
@Controller({
13
  path: '',
14
  version: '1',
15
})
16
export class DataDecodedController {
104✔
17
  constructor(private readonly dataDecodedService: DataDecodedService) {}
1,594✔
18

19
  @ApiOkResponse({ type: DataDecoded })
20
  @HttpCode(200)
21
  @Post('chains/:chainId/data-decoder')
22
  async getDataDecoded(
104✔
23
    @Param('chainId') chainId: string,
24
    @Body(new ValidationPipe(TransactionDataDtoSchema))
25
    getDataDecodedDto: TransactionDataDto,
26
  ): Promise<DataDecoded> {
UNCOV
27
    return this.dataDecodedService.getDataDecoded({
×
28
      chainId,
29
      getDataDecodedDto,
30
    });
31
  }
32
}
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