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

safe-global / safe-client-gateway / 8095612584

29 Feb 2024 11:59AM UTC coverage: 93.567% (+0.3%) from 93.246%
8095612584

Pull #1227

github

iamacook
Change `unlockIndex` type
Pull Request #1227: Scaffold locking API data source

1677 of 2004 branches covered (83.68%)

Branch coverage included in aggregate %.

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

6163 of 6375 relevant lines covered (96.67%)

348.77 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 { Page } from '@/domain/entities/page.entity';
2
import { ILockingApi } from '@/domain/interfaces/locking-api.interface';
3
import { LockingEvent } from '@/domain/locking/entities/locking-event.entity';
4
import { Rank } from '@/domain/locking/entities/rank.entity';
5

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

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