UNPKG

516 BTypeScriptView Raw
1import { Transaction } from "./types";
2export declare type TransactionConstructor = typeof Transaction;
3declare class TransactionRegistry {
4 private readonly coreTypes;
5 private readonly customTypes;
6 constructor();
7 registerCustomType(constructor: TransactionConstructor): void;
8 deregisterCustomType(type: number): void;
9 updateStaticFees(height?: number): void;
10 private registerCoreType;
11 private updateSchemas;
12}
13export declare const transactionRegistry: TransactionRegistry;
14export {};