@pgchain/blockchain-libs
Version:
PGWallet Blockchain Libs
9 lines (8 loc) • 325 B
TypeScript
import { ExternalConfig } from './types/external-config';
declare class BlockchainEngine {
private readonly wallet;
constructor(config: ExternalConfig);
getWallets(): Promise<readonly import("./types/wallet").Wallet[]>;
createWallet(): Promise<import("./types/wallet").Wallet>;
}
export { BlockchainEngine };