UNPKG

chaingate

Version:

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

7 lines 352 B
import { CurrencyUtilsProvider } from './CurrencyUtilsProvider'; import { createClientAndMarkets } from './InitializeWallet'; export async function initalizeUtils({ apiKey = '', } = {}) { const { client, markets } = createClientAndMarkets(apiKey); return new CurrencyUtilsProvider(client, markets); } //# sourceMappingURL=InitializeUtils.js.map