UNPKG

@sol-synth-engine/js-client

Version:

JavaScript client for Sol Synth Engine

9 lines (8 loc) 499 B
import { SolSynthEngine } from "./idls/sol_synth_engine"; import { IdlTypes } from "@coral-xyz/anchor"; export type Market = IdlTypes<SolSynthEngine>["market"]; export type UnderlyingToken = IdlTypes<SolSynthEngine>["underlyingToken"]; export type Treasury = IdlTypes<SolSynthEngine>["treasuryToken"]; export type ProtocolConfig = IdlTypes<SolSynthEngine>["protocolConfig"]; export type Loan = IdlTypes<SolSynthEngine>["loan"]; export type RedeemRequest = IdlTypes<SolSynthEngine>["redeemRequest"];