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

safe-global / safe-client-gateway / 13130980637

04 Feb 2025 08:09AM UTC coverage: 90.663% (-0.3%) from 90.931%
13130980637

Pull #2313

github

iamacook
Change to camelcase
Pull Request #2313: Add datasource for Safe Decoder Service

2929 of 3542 branches covered (82.69%)

Branch coverage included in aggregate %.

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

9742 of 10434 relevant lines covered (93.37%)

504.25 hits per line

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

0.0
/src/domain/interfaces/data-decoder-api.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
import type { Raw } from '@/validation/entities/raw.entity';
5

NEW
6
export const IDataDecoderApi = Symbol('IDataDecoderApi');
×
7

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

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