UNPKG

chaingate

Version:

A complete TypeScript library for connecting to and making transactions on different blockchains

9 lines (8 loc) 293 B
import { Client } from '@hey-api/client-fetch'; import { TtlCache } from '../../InternalUtils/TtlCache'; import { GlobalMarketsResponse } from '../../Client'; export type ChainGateContext = { client: Client; markets: TtlCache<GlobalMarketsResponse>; extra: Map<string, object>; };