turtlecoin-wallet-backend
Version:
[](https://travis-ci.org/turtlecoin/turtlecoin-wallet-backend-js)
10 lines (9 loc) • 414 B
TypeScript
import { CryptoNote } 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): CryptoNote;