UNPKG

turtlecoin-wallet-backend

Version:

[![Build Status](https://travis-ci.org/turtlecoin/turtlecoin-wallet-backend-js.svg?branch=master)](https://travis-ci.org/turtlecoin/turtlecoin-wallet-backend-js)

10 lines (9 loc) 414 B
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;