UNPKG

@avalabs/avalanchejs

Version:
11 lines 422 B
import type { Serializable } from '../common/types'; import type { Id } from '../fxs/common'; import type { Input } from '../fxs/secp256k1'; import { PVMTx } from './abstractTx'; export declare abstract class AbstractSubnetTx extends PVMTx { abstract subnetAuth: Serializable; abstract getSubnetID(): Id; getSubnetAuth(): Input; getSigIndices(): number[][]; } //# sourceMappingURL=abstractSubnetTx.d.ts.map