olympus-protocol-connector
Version:
Module made by Olympus Labs for easier access to the Olympus protocol through Javascript/Typescript
7 lines (6 loc) • 329 B
TypeScript
import { WhitelistType, Tx } from '.';
export interface IDerivativeWhitelisted {
hasPermission(category: WhitelistType, wallet: any): Promise<boolean>;
enableMaintenanceWhitelist(gasPrice?: number, enable?: boolean): Promise<Tx | null>;
addBotToWhiteList(botAddress: string, gasPrice?: number): Promise<Tx | null>;
}