UNPKG

o3-dapi-ont

Version:
19 lines (15 loc) 419 B
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, }); }