UNPKG

@pokt-network/pocket-js

Version:

Pocket-js core package with the main functionalities to interact with the Pocket Network.

18 lines 587 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.BaseTxEncoder = void 0; var BaseTxEncoder = /** @class */ (function () { // Concrete constructor function BaseTxEncoder(entropy, chainID, msg, fee, feeDenom, memo) { this.memo = ""; this.entropy = entropy; this.chainID = chainID; this.msg = msg; this.fee = fee; this.feeDenom = feeDenom; this.memo = memo ? memo : ""; } return BaseTxEncoder; }()); exports.BaseTxEncoder = BaseTxEncoder; //# sourceMappingURL=base-tx-encoder.js.map