/// /// import { ClaimTransactionJSON, ClaimTransactionModel, ClaimTransactionModelAdd, UInt160Hex } from '@neo-one/client-common'; import { Constructor } from '@neo-one/utils'; import BN from 'bn.js'; import { DeserializeWireBaseOptions, SerializeJSONContext } from '../Serializable'; import { VerifyScriptResult } from '../vm'; import { Witness } from '../Witness'; import { Attribute } from './attribute'; import { Input } from './Input'; import { Output } from './Output'; import { FeeContext, GetReferencesOptions, TransactionGetScriptHashesForVerifyingOptions, TransactionVerifyOptions } from './TransactionBase'; import { TransactionType } from './TransactionType'; export interface ClaimTransactionAdd extends ClaimTransactionModelAdd { } declare const ClaimTransaction_base: { new (...args: any[]): { readonly equals: import("..").Equals; readonly toKeyString: () => string; readonly getSortedScriptHashesForVerifying: (input: TransactionGetScriptHashesForVerifyingOptions) => Promise; readonly sizeInternal: () => number; readonly networkFee: (input: FeeContext) => Promise; readonly getReferencesInternal: (input: GetReferencesOptions) => Promise; readonly getTransactionResultsInternal: (input: import("./TransactionBase").GetTransactionResultsOptions) => Promise<{ readonly [x: string]: BN | undefined; }>; readonly baseGetScriptHashesForVerifyingInternal: (input: TransactionGetScriptHashesForVerifyingOptions) => Promise>; readonly size: number; serializeTransactionBaseJSON(context: SerializeJSONContext): Promise; serializeJSON(_context: SerializeJSONContext): Promise; getNetworkFee(context: FeeContext): Promise; getSystemFee({ fees }: FeeContext): BN; getReferences(options: GetReferencesOptions): Promise; getTransactionResults(options: import("./TransactionBase").GetTransactionResultsOptions): Promise<{ readonly [key: string]: BN; }>; getScriptHashesForVerifying(options: TransactionGetScriptHashesForVerifyingOptions): Promise>; verify(options: TransactionVerifyOptions): Promise; readonly sizeExclusive: () => number; verifyDoubleSpend({ isSpent }: TransactionVerifyOptions): Promise; verifyOutputs({ getAsset, currentHeight }: TransactionVerifyOptions): Promise; verifyTransactionResults({ getOutput, utilityToken, governingToken, fees, registerValidatorFee, }: TransactionVerifyOptions): Promise; verifyScripts({ getAsset, getOutput, verifyScript, }: TransactionVerifyOptions): Promise; readonly type: TransactionType.Claim; readonly version: number; readonly attributes: readonly Attribute[]; readonly inputs: readonly Input[]; readonly outputs: readonly Output[]; readonly scripts: readonly Witness[]; readonly serializeWire: import("../Serializable").SerializeWire; readonly serializeUnsigned: import("../Serializable").SerializeWire; readonly hashInternal: () => import("@neo-one/client-common").UInt256; readonly hashHexInternal: () => string; readonly messageInternal: () => Buffer; clone(options: { readonly scripts?: readonly Witness[] | undefined; readonly attributes?: readonly Attribute[] | undefined; readonly inputs?: readonly Input[] | undefined; readonly outputs?: readonly Output[] | undefined; }): any; readonly hash: import("@neo-one/client-common").UInt256; readonly hashHex: string; readonly message: Buffer; sign(key: import("@neo-one/client-common").PrivateKey): any; signWithSignature(signature: Buffer, publicKey: import("@neo-one/client-common").ECPoint): any; serializeExclusiveBase(_writer: import("@neo-one/client-common").BinaryWriter): void; serializeUnsignedBase(writer: import("@neo-one/client-common").BinaryWriter): void; serializeWireBase(writer: import("@neo-one/client-common").BinaryWriter): void; }; deserializeTransactionBaseStartWireBase({ reader, }: DeserializeWireBaseOptions): { readonly type: TransactionType; readonly version: number; }; deserializeTransactionBaseEndWireBase(options: DeserializeWireBaseOptions): { readonly attributes: readonly Attribute[]; readonly inputs: readonly Input[]; readonly outputs: readonly Output[]; readonly scripts: readonly Witness[]; }; deserializeWireBase(_options: DeserializeWireBaseOptions): any; deserializeWire(options: import("../Serializable").DeserializeWireOptions): any; readonly WitnessConstructor: Constructor; } & Constructor>; export declare class ClaimTransaction extends ClaimTransaction_base { static deserializeWireBase(options: DeserializeWireBaseOptions): ClaimTransaction; readonly claims: readonly Input[]; protected readonly sizeExclusive: () => number; private readonly claimGetScriptHashesForVerifyingInternal; constructor(add: ClaimTransactionAdd); getNetworkFee(_context: FeeContext): Promise; getClaimReferences({ getOutput }: GetReferencesOptions): Promise; getScriptHashesForVerifying(options: TransactionGetScriptHashesForVerifyingOptions): Promise>; verify(options: TransactionVerifyOptions): Promise; serializeJSON(context: SerializeJSONContext): Promise; private verifyInternal; } export {};