UNPKG

chaingate

Version:

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

12 lines 352 B
import { CurrencyModules } from './Currencies/CurrencyModules'; export class CurrencyUtilsProvider { context; constructor(context) { this.context = context; } currency(id) { const UtilsCtor = CurrencyModules[id].utils; return new UtilsCtor(this.context); } } //# sourceMappingURL=CurrencyUtilsProvider.js.map