mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
294d8bcb5d
* rename to sanityFix * Infra for consistency checks and Fixes. * Whitelist check moved to consistency check only. Co-authored-by: Catenocrypt <catenocrypt@users.noreply.github.com>
20 lines
509 B
TypeScript
20 lines
509 B
TypeScript
import { ActionInterface, CheckStepInterface } from "../../script/action/interface";
|
|
import { run } from "./script";
|
|
import { getSanityChecks } from "./check";
|
|
|
|
export class Coinmarketcap implements ActionInterface {
|
|
getName(): string { return "Coinmarketcap mapping"; }
|
|
|
|
getSanityChecks(): CheckStepInterface[] { return getSanityChecks(); }
|
|
|
|
getConsistencyChecks = null;
|
|
|
|
sanityFix = null;
|
|
|
|
consistencyFix = null;
|
|
|
|
async update(): Promise<void> {
|
|
await run();
|
|
}
|
|
}
|