@avalabs/avalanchejs
Version:
Avalanche Platform JS Library
13 lines • 455 B
TypeScript
import type { Context } from '../../vms/context/model';
import type { UnsignedTx } from '../../vms/common';
export declare const validateBurnedAmount: ({ unsignedTx, context, burnedAmount, baseFee, feeTolerance, }: {
unsignedTx: UnsignedTx;
context: Context;
burnedAmount?: bigint | undefined;
baseFee: bigint;
feeTolerance: number;
}) => {
isValid: boolean;
txFee: bigint;
};
//# sourceMappingURL=validateBurnedAmount.d.ts.map