UNPKG

turtlecoin-wallet-backend

Version:

[![NPM](https://nodei.co/npm/turtlecoin-wallet-backend.png?compact=true)](https://npmjs.org/package/turtlecoin-wallet-backend)

10 lines (9 loc) 416 B
import { ICryptoNote } from 'turtlecoin-utils'; import { Config } from './Config'; /** * This needs to be a function, rather than a default export, since our config * can change when a user calls createWallet() with a non default config. * Due to how the module system works, a default export is cached and so the * config will never update. */ export declare function CryptoUtils(config: Config): ICryptoNote;