o3-dapi-ont
Version:
Ontology Plugin for o3-dapi
15 lines • 422 B
TypeScript
interface GetNodeStakeInfoArgs {
network: string;
address: string;
nodePublicKey: string;
}
interface NodeStakeInfo {
publicKey: string;
activeStake: number;
pendingStake: number;
pendingWithdrawStake: number;
withdrawableStake: number;
}
export declare function getNodeStakeInfo(data: GetNodeStakeInfoArgs): Promise<NodeStakeInfo>;
export {};
//# sourceMappingURL=getNodeStakeInfo.d.ts.map