@pokt-network/pocket-js
Version:
Pocket-js core package with the main functionalities to interact with the Pocket Network.
7 lines (6 loc) • 348 B
TypeScript
import { BaseTxEncoder } from "./base-tx-encoder";
import { TxMsg } from '../models/msgs';
import { CoinDenom } from '../models/coin-denom';
export declare class TxEncoderFactory {
static createEncoder(entropy: string, chainID: string, msg: TxMsg, fee: string, feeDenom?: CoinDenom, memo?: string, useLegacyTxCodec?: boolean): BaseTxEncoder;
}