turtlecoin-wallet-backend
Version:
[](https://npmjs.org/package/turtlecoin-wallet-backend)
10 lines (9 loc) • 416 B
TypeScript
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;