forked from ironoa/polkadot-k8s-payouts
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathgitHub1kv.ts
28 lines (24 loc) · 883 Bytes
/
gitHub1kv.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import { GitConfigLoader } from "./gitConfigLoaderInterface";
import fetch from 'node-fetch';
import { Target } from "../types";
import { TargetFromGit1kv } from "./types";
import { GitConfigVersion } from "../constants";
export class GitHub1kv implements GitConfigLoader {
constructor(
protected readonly url: string,
protected readonly version: GitConfigVersion
) { }
async downloadAndLoad(): Promise<Array<Target>> {
const response = await fetch(this.url);
const data = await response.json();
// based on the shape of https://github.com/w3f/1k-validators-be/blob/master/helmfile.d/config/kusama/otv-backend-prod.yaml.gotmpl
const candidates: Array<TargetFromGit1kv> = data.candidates
return candidates.map(c=>{
const target: Target = {
alias: c.name,
validatorAddress: c.stash
}
return target
})
}
}