@avalabs/avalanchejs
Version:
Avalanche Platform JS Library
58 lines • 4.09 kB
TypeScript
import { AddDelegatorTx, AddPermissionlessDelegatorTx, AddPermissionlessValidatorTx, AddSubnetValidatorTx, AddValidatorTx, AdvanceTimeTx, CreateChainTx, CreateSubnetTx, ExportTx, ImportTx, ProofOfPossession, Signer, StakeableLockIn, StakeableLockOut, SubnetValidator, Validator, RemoveSubnetValidatorTx, TransferSubnetOwnershipTx, TransformSubnetTx, ConvertSubnetToL1Tx, RegisterL1ValidatorTx, SetL1ValidatorWeightTx, IncreaseL1ValidatorBalanceTx, DisableL1ValidatorTx } from '../serializable/pvm';
import type { FeeState } from '../vms/pvm';
import { L1Validator } from '../serializable/fxs/pvm/L1Validator';
import { PChainOwner } from '../serializable/fxs/pvm/pChainOwner';
export declare const validator: () => Validator;
export declare const validatorBytes: () => Uint8Array;
export declare const addValidatorTx: () => AddValidatorTx;
export declare const addValidatorTxBytes: () => Uint8Array;
export declare const subnetValidator: () => SubnetValidator;
export declare const subnetValidatorBytes: () => Uint8Array;
export declare const addSubnetValidatorTx: () => AddSubnetValidatorTx;
export declare const addSubnetValidatorTxBytes: () => Uint8Array;
export declare const addDelegatorTx: () => AddDelegatorTx;
export declare const addDelegatorTxBytes: () => Uint8Array;
export declare const createChainTx: () => CreateChainTx;
export declare const createChainTxBytes: () => Uint8Array;
export declare const createSubnetTx: () => CreateSubnetTx;
export declare const removeValidatorTx: () => RemoveSubnetValidatorTx;
export declare const createSubnetTxBytes: () => Uint8Array;
export declare const importTx: () => ImportTx;
export declare const importTxBytes: () => Uint8Array;
export declare const exportTx: () => ExportTx;
export declare const exportTxBytes: () => Uint8Array;
export declare const removeSubnetValidatorTxBytes: () => Uint8Array;
export declare const stakeableLockIn: () => StakeableLockIn;
export declare const stakeableLockInBytes: () => Uint8Array;
export declare const stakeableLockOut: () => StakeableLockOut<import("..").TransferOutput>;
export declare const stakeableLockOutBytes: () => Uint8Array;
export declare const advanceTimeTx: () => AdvanceTimeTx;
export declare const advanceTimeBytesTx: () => Uint8Array;
export declare const proofOfPossession: () => ProofOfPossession;
export declare const proofOfPossessionBytes: () => Uint8Array;
export declare const signer: () => Signer;
export declare const signerBytes: () => Uint8Array;
export declare const addPermissionlessValidatorTx: () => AddPermissionlessValidatorTx;
export declare const addPermissionlessValidatorTxBytes: () => Uint8Array;
export declare const addPermissionlessDelegatorTx: () => AddPermissionlessDelegatorTx;
export declare const addPermissionlessDelegatorTxBytes: () => Uint8Array;
export declare const transferSubnetOwnershipTx: () => TransferSubnetOwnershipTx;
export declare const transferSubnetOwnershipTxBytes: () => Uint8Array;
export declare const transformSubnetTx: () => TransformSubnetTx;
export declare const transformSubnetTxBytes: () => Uint8Array;
export declare const pChainOwner: () => PChainOwner;
export declare const pChainOwnerBytes: () => Uint8Array;
export declare const l1Validator: () => L1Validator;
export declare const l1ValidatorBytes: () => Uint8Array;
export declare const convertSubnetToL1Tx: () => ConvertSubnetToL1Tx;
export declare const convertSubnetToL1TxBytes: () => Uint8Array;
export declare const registerL1ValidatorTx: () => RegisterL1ValidatorTx;
export declare const registerL1ValidatorTxBytes: () => Uint8Array;
export declare const setL1ValidatorWeightTx: () => SetL1ValidatorWeightTx;
export declare const setL1ValidatorWeightTxBytes: () => Uint8Array;
export declare const increaseL1ValidatorBalanceTx: () => IncreaseL1ValidatorBalanceTx;
export declare const increaseL1ValidatorBalanceTxBytes: () => Uint8Array;
export declare const disableL1ValidatorTx: () => DisableL1ValidatorTx;
export declare const disableL1ValidatorTxBytes: () => Uint8Array;
export declare const feeState: () => FeeState;
//# sourceMappingURL=pvm.d.ts.map