pmarket-cli
Version:
CLI tool to trade on Polymarket
15 lines • 366 B
JavaScript
export class CancelAllStrategy {
polymarketService;
constructor(polymarketService) {
this.polymarketService = polymarketService;
}
async execute() {
try {
await this.polymarketService.cancelAll();
}
catch (e) {
console.error(e);
}
}
}
//# sourceMappingURL=cancel-all-strategy.js.map