UNPKG

dpos-offline

Version:

Offline Signing Transactions for DPOS Blockchains

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