@avalabs/avalanchejs
Version:
Avalanche Platform JS Library
14 lines • 578 B
TypeScript
import { BaseTx } from '../avax/baseTx';
import type { Codec } from '../codec';
import { TypeSymbols } from '../constants';
import { Bytes } from '../primitives';
import { PVMTx } from './abstractTx';
export declare class SetL1ValidatorWeightTx extends PVMTx {
readonly baseTx: BaseTx;
readonly message: Bytes;
_type: TypeSymbols;
constructor(baseTx: BaseTx, message: Bytes);
static fromBytes(bytes: Uint8Array, codec: Codec): [SetL1ValidatorWeightTx, Uint8Array];
toBytes(codec: Codec): Uint8Array;
}
//# sourceMappingURL=setL1ValidatorWeightTx.d.ts.map