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

safe-global / safe-client-gateway / 8094757329

29 Feb 2024 10:44AM UTC coverage: 93.543% (+0.3%) from 93.246%
8094757329

Pull #1227

github

iamacook
Add query params and adjust `Rank`
Pull Request #1227: Scaffold locking API data source

1676 of 2004 branches covered (83.63%)

Branch coverage included in aggregate %.

0 of 12 new or added lines in 4 files covered. (0.0%)

1 existing line in 1 file now uncovered.

6162 of 6375 relevant lines covered (96.66%)

348.91 hits per line

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

0.0
/src/datasources/locking-api/locking-api.service.ts
1
import { ILockingApi } from '@/domain/interfaces/locking-api.interface';
2
import { LockingEvent } from '@/domain/locking/entities/locking-event.entity';
3
import { Rank } from '@/domain/locking/entities/rank.entity';
4

NEW
5
export class LockingApi implements ILockingApi {
×
6
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
7
  async getLeaderboard(args: {
8
    safeAddress?: string;
9
    limit?: number;
10
    offset?: number;
11
  }): Promise<Array<Rank>> {
NEW
12
    throw new Error('Method not implemented.');
×
13
  }
14

15
  // eslint-disable-next-line @typescript-eslint/no-unused-vars
16
  async getLockingHistory(args: {
17
    safeAddress?: string;
18
    limit?: number;
19
    offset?: number;
20
  }): Promise<Array<LockingEvent>> {
NEW
21
    throw new Error('Method not implemented.');
×
22
  }
23
}
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