@avalabs/avalanchejs
Version:
Avalanche Platform JS Library
10 lines • 400 B
TypeScript
import { Transaction } from '../../vms/common/transaction';
import type { BaseTx } from './baseTx';
import type { TransferableInput } from './transferableInput';
export declare abstract class AvaxTx extends Transaction {
abstract baseTx?: BaseTx;
getInputs(): readonly TransferableInput[];
getBlockchainId(): string;
getSigIndices(): number[][];
}
//# sourceMappingURL=avaxTx.d.ts.map