UNPKG

pmarket-cli

Version:
10 lines (9 loc) 366 B
import { PolymarketService } from "../services/polymarket.service"; import { Strategy } from "./strategy"; export class ApiKeysStrategy implements Strategy { constructor(private polymarketService: PolymarketService) { } async execute(): Promise<void> { const apiKeys = await this.polymarketService.getApiKeys(); console.log(apiKeys); } }