UNPKG

@avalabs/avalanchejs

Version:
19 lines 836 B
import { BaseTx } from '../avax/baseTx'; import { Codec } from '../codec/codec'; import { Id } from '../fxs/common'; import { NodeId } from '../fxs/common/nodeId'; import type { Serializable } from '../common/types'; import { TypeSymbols } from '../constants'; import { AbstractSubnetTx } from './abstractSubnetTx'; export declare class RemoveSubnetValidatorTx extends AbstractSubnetTx { readonly baseTx: BaseTx; readonly nodeId: NodeId; readonly subnetId: Id; readonly subnetAuth: Serializable; _type: TypeSymbols; constructor(baseTx: BaseTx, nodeId: NodeId, subnetId: Id, subnetAuth: Serializable); getSubnetID(): Id; static fromBytes(bytes: Uint8Array, codec: Codec): [RemoveSubnetValidatorTx, Uint8Array]; toBytes(codec: Codec): Uint8Array; } //# sourceMappingURL=removeSubnetValidatorTx.d.ts.map