UNPKG

rubic-sdk

Version:
8 lines (7 loc) 484 B
import { BlockchainName } from "../../../../core/blockchain/models/blockchain-name"; import { OnChainTradeType } from "../providers/common/models/on-chain-trade-type"; import { OnChainProvider } from "../providers/dexes/common/on-chain-provider/on-chain-provider"; /** * Record of on-chain trades types and their corresponding instant trade providers. */ export type OnChainTypedTradeProviders = Readonly<Record<BlockchainName, Partial<Record<OnChainTradeType, OnChainProvider>>>>;