UNPKG

@btc-vision/transaction

Version:

OPNet transaction library allows you to create and sign transactions for the OPNet network.

12 lines (11 loc) 323 B
import { LoadedStorage } from '../transaction/interfaces/ITransactionParameters.js'; export declare enum Features { ACCESS_LIST = 1 } export interface Feature<T extends Features> { opcode: T; data: unknown; } export interface AccessListFeature extends Feature<Features.ACCESS_LIST> { data: LoadedStorage; }