UNPKG

dpos-offline

Version:

Offline Signing Transactions for DPOS Blockchains

11 lines (10 loc) 455 B
/// <reference types="node" /> import { IVoteTx, LiskVotesAsset } from '../../lisk'; import { RiseV2Transaction } from '../base_rise'; import { BaseRiseV1Codec } from './base_v1'; export declare class RiseVoteV1TxCodec extends BaseRiseV1Codec<LiskVotesAsset> { constructor(); calcFees(tx: IVoteTx): number; transform(from: IVoteTx): RiseV2Transaction<LiskVotesAsset>; protected assetBytes(tx: RiseV2Transaction<LiskVotesAsset>): Buffer; }