@antbat/base-client-js
Version:
Base JS library for BASE-platform
8 lines (7 loc) • 375 B
TypeScript
import { AddrRecord, WalletsRecords, WealthPtr } from '../utils/types/BaseTypes';
export interface WalletManager {
createWalletsRecords(wallets: AddrRecord[], baseID: string): Promise<WalletsRecords>;
addWealthValidator(validatorPbKey: string): Promise<void>;
refreshWealthPtr(): Promise<WealthPtr>;
validateWallets(walletRecords: WalletsRecords): boolean;
}