o3-dapi-ont
Version:
Ontology Plugin for o3-dapi
19 lines (15 loc) • 419 B
text/typescript
import { sendMessage } from '../../../messaging';
import { StakeCommand } from '../constants';
interface GetStakedClaimableOngArgs {
network: string;
address: string;
}
interface StakedClaimableOng {
amount: string;
}
export function getStakedClaimableOng(data: GetStakedClaimableOngArgs): Promise<StakedClaimableOng> {
return sendMessage({
command: StakeCommand.getStakedClaimableOng,
data,
});
}