chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
7 lines (6 loc) • 368 B
TypeScript
import { Currency } from '../../entities/Currency/Currency';
export interface ICurrencyWithDerivationPaths {
setDerivationPath(newDerivationPath: string): void;
getDerivationPath(): string;
}
export declare function CurrencyWithDerivationPaths<T extends Currency>(instance: T, currenciesDerivationPaths: Map<string, string>): T & ICurrencyWithDerivationPaths;