dpos-offline
Version:
Offline Signing Transactions for DPOS Blockchains
11 lines (10 loc) • 537 B
TypeScript
import { LiskSendTxCodec } from './0_send';
import { LiskSecondSignTxCodec } from './1_secondsignature';
import { LiskRegDelegateTxCodec } from './2_regdelegate';
import { LiskVoteTxCodec } from './3_vote';
import { BaseLiskCodec } from './base_lisk';
export declare const liskCodecUtils: {
allCodecs: (LiskSendTxCodec | LiskSecondSignTxCodec | LiskRegDelegateTxCodec | LiskVoteTxCodec)[];
findCodecFromType<T = any>(type: number): BaseLiskCodec<T>;
findCodecFromIdentifier<T = any>(identifier: string): BaseLiskCodec<T>;
};