This commit is contained in:
Adrian Brzeziński 2023-09-19 11:12:56 +02:00
parent d7d32bba13
commit 91cf62125b
2 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
declare const PREMIUM_LISTING: {
maxStalenessSlots: number | null;
maxStalenessSlots: number;
oracleConfFilter: number;
adjustmentFactor: number;
util0: number;

View File

@ -1,7 +1,7 @@
import BN from "bn.js";
const PREMIUM_LISTING = {
maxStalenessSlots: 10000 as number | null,
maxStalenessSlots: 10000 as number,
oracleConfFilter: 0.1,
adjustmentFactor: 0.004,
util0: 0.5,