@nemoprotocol/points-sdk
Version:
1. [Overview](#overview) 2. [Installation](#installation) 3. [Core Features](#core-features) 4. [API Reference](#api-reference) 5. [Type Definitions](#type-definitions)
74 lines • 1.3 kB
TypeScript
/**
* Price configuration interface for price-related operations
*/
export interface GetPriceConfig {
/**
* Nemo contract ID
*/
nemoContractId: string;
/**
* Oracle package ID
*/
oraclePackageId: string;
/**
* Version identifier
*/
version: string;
/**
* PY state ID
*/
pyStateId: string;
/**
* Yield factory config ID
*/
yieldFactoryConfigId: string;
/**
* SY coin type
*/
syCoinType: string;
/**
* Coin type
*/
coinType: string;
/**
* Decimal places for the coin
*/
decimal: string;
/**
* Market state ID
*/
marketStateId: string;
/**
* Provider type (SpringSui, Winter, etc.)
*/
provider: string;
/**
* Price oracle config ID
*/
priceOracleConfigId: string;
/**
* Oracle ticket
*/
oracleTicket: string;
/**
* SY state ID
*/
syStateId: string;
/**
* Yield token type
*/
yieldTokenType?: string;
/**
* Provider version
*/
providerVersion?: string;
/**
* Provider market
*/
providerMarket?: string;
/**
* Underlying coin type
*/
underlyingCoinType: string;
}
//# sourceMappingURL=price.d.ts.map