qos-qweb
Version:
qos js sdk
17 lines (16 loc) • 442 B
TypeScript
import Account from '../Account';
import { IDelegatorTx, IUnbondDelegatorTx } from '../types/common';
export declare function signDelegatorTxMsg(oMsg: {
account: Account;
tx: IDelegatorTx;
chainid: string;
maxGas: number;
nonce: number;
}): any;
export declare function signUnbondDelegatorTxMsg(oMsg: {
account: Account;
tx: IUnbondDelegatorTx;
chainid: string;
maxGas: number;
nonce: number;
}): any;