UNPKG

@mimicry/sdk

Version:

A node SDK designed to simplify interaction with the Mimicry Protocol smart contracts.

31 lines (30 loc) 640 B
export declare enum ChainId { POLYGON_POS = 137, POLYGON_MUMBAI = 80001 } export declare enum CurrencySymbol { USD = "usd", WETH = "weth", USDC = "usdc", MATIC = "matic" } export declare enum Direction { SHORT = 0, LONG = 1 } export declare enum MetricType { MARKET_CAP = "marketcap" } export declare enum OracleType { OMO = "open-markets-oracle" } export declare enum Timeframe { ONE_MINUTE = 60, FIVE_MINUTES = 300, FIFTEEN_MINUTES = 900, THIRTY_MINUTES = 1800, ONE_HOUR = 3600, FOUR_HOURS = 14400, ONE_DAY = 86400, ONE_WEEK = 604800 }