Skip to content

Commit

Permalink
change engine api
Browse files Browse the repository at this point in the history
  • Loading branch information
feruzm committed Oct 23, 2023
1 parent aec802b commit 5606202
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/server/handlers/engine-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import express from "express";
import {baseApiRequest, pipe} from "../util";

//docs: https://hive-engine.github.io/engine-docs/
const BASE_URL = 'https://api.hive-engine.com';
const BASE_URL = 'https://he.ausbit.dev';//'https://api.hive-engine.com';

const ENGINE_REWARDS_URL = 'https://scot-api.hive-engine.com/';
const ENGINE_CHART_URL = 'https://info-api.tribaldex.com/market/ohlcv';
Expand Down Expand Up @@ -50,5 +50,5 @@ export const engineAccountHistory = (req: express.Request, res: express.Respons
const headers = { 'Content-type': 'application/json' };

pipe(baseApiRequest(url, "GET", headers, undefined, params), res);
}
}

0 comments on commit 5606202

Please sign in to comment.