mina-ledger-js
Version:
JS API for Mina App (Ledger Nano S/X)
14 lines (13 loc) • 505 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TxType = exports.Networks = void 0;
var Networks;
(function (Networks) {
Networks[Networks["MAINNET"] = 1] = "MAINNET";
Networks[Networks["DEVNET"] = 0] = "DEVNET";
})(Networks = exports.Networks || (exports.Networks = {}));
var TxType;
(function (TxType) {
TxType[TxType["PAYMENT"] = 0] = "PAYMENT";
TxType[TxType["DELEGATION"] = 4] = "DELEGATION";
})(TxType = exports.TxType || (exports.TxType = {}));