mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
16 lines
415 B
TypeScript
16 lines
415 B
TypeScript
|
import { ActionInterface, CheckStepInterface } from "../../script/action/interface";
|
||
|
import { run } from "./script";
|
||
|
import { getChecks } from "./check";
|
||
|
|
||
|
export class Coinmarketcap implements ActionInterface {
|
||
|
getName(): string { return "Coinmarketcap mapping"; }
|
||
|
|
||
|
getChecks(): CheckStepInterface[] { return getChecks(); }
|
||
|
|
||
|
fix = null;
|
||
|
|
||
|
async update(): Promise<void> {
|
||
|
await run();
|
||
|
}
|
||
|
}
|