2020-08-06 19:17:38 +00:00
|
|
|
import { ActionInterface, CheckStepInterface } from "../../script/action/interface";
|
|
|
|
import { run } from "./script";
|
2020-08-10 08:56:41 +00:00
|
|
|
import { getSanityChecks } from "./check";
|
2020-08-06 19:17:38 +00:00
|
|
|
|
|
|
|
export class Coinmarketcap implements ActionInterface {
|
|
|
|
getName(): string { return "Coinmarketcap mapping"; }
|
|
|
|
|
2020-08-10 08:56:41 +00:00
|
|
|
getSanityChecks(): CheckStepInterface[] { return getSanityChecks(); }
|
|
|
|
|
|
|
|
getConsistencyChecks = null;
|
2020-08-06 19:17:38 +00:00
|
|
|
|
2020-08-10 08:56:41 +00:00
|
|
|
sanityFix = null;
|
|
|
|
|
|
|
|
consistencyFix = null;
|
2020-08-06 19:17:38 +00:00
|
|
|
|
|
|
|
async update(): Promise<void> {
|
|
|
|
await run();
|
|
|
|
}
|
|
|
|
}
|