increment MAX_PER_PAGE to 10000

This commit is contained in:
fragosti
2019-02-13 13:31:45 -08:00
parent d1cc08f1d9
commit 1cb7e70b42
2 changed files with 26 additions and 1 deletions

View File

@@ -3,7 +3,7 @@ import { RadarBook, RadarMarket } from '@radarrelay/types';
const RADAR_BASE_URL = 'https://api.radarrelay.com/v2/';
const ACTIVE_MARKETS_URL = `${RADAR_BASE_URL}/markets`;
const MAX_PER_PAGE = 1000;
const MAX_PER_PAGE = 10000;
export const RADAR_SOURCE = 'radar';