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

safe-global / safe-client-gateway / 13034680619

29 Jan 2025 03:28PM UTC coverage: 90.693% (-0.3%) from 91.028%
13034680619

push

github

iamacook
Add datasource for Safe Decoder Service

2914 of 3529 branches covered (82.57%)

Branch coverage included in aggregate %.

43 of 90 new or added lines in 11 files covered. (47.78%)

1 existing line in 1 file now uncovered.

9696 of 10375 relevant lines covered (93.46%)

506.27 hits per line

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

0.0
/src/domain/data-decoder/v2/data-decoder.repository.interface.ts
1
import type { Contract } from '@/domain/data-decoder/v2/entities/contract.entity';
2
import type { DataDecoded } from '@/domain/data-decoder/v2/entities/data-decoded.entity';
3
import type { Page } from '@/domain/entities/page.entity';
4

NEW
5
export const IDataDecoderRepository = Symbol('IDataDecoderRepository');
×
6

7
export interface IDataDecoderRepository {
8
  getDecodedData(args: {
9
    chainId: string;
10
    data: `0x${string}`;
11
    to: `0x${string}`;
12
  }): Promise<DataDecoded>;
13

14
  getContracts(args: {
15
    chainId: string;
16
    address: `0x${string}`;
17
  }): Promise<Page<Contract>>;
18
}
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