@avalabs/avalanchejs
Version:
Avalanche Platform JS Library
13 lines • 491 B
TypeScript
import type { Codec } from '../codec/codec';
import { Id } from '../fxs/common';
import { PVMTx } from './abstractTx';
import { TypeSymbols } from '../constants';
export declare class RewardValidatorTx extends PVMTx {
readonly txId: Id;
_type: TypeSymbols;
constructor(txId: Id);
baseTx: undefined;
static fromBytes(bytes: Uint8Array, codec: Codec): [RewardValidatorTx, Uint8Array];
toBytes(codec: Codec): Uint8Array;
}
//# sourceMappingURL=rewardValidatorTx.d.ts.map