react-use-ark
Version:
Hook to easily access ARK blockchain Ѧ API in React application
14 lines (13 loc) • 371 B
TypeScript
import { BigNumber } from '../../common/BigNumber';
import { IArrayResponse } from '../../common/interfaces';
export interface IWalletsResponse extends IArrayResponse<IWallet> {
}
export interface IWalletResponse {
data: IWallet;
}
export interface IWallet {
address: string;
balance: BigNumber;
isDelegate: boolean;
publicKey: string;
}