init
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
import { RippleAPI } from '..';
|
||||
declare function isConnected(this: RippleAPI): boolean;
|
||||
declare function getLedgerVersion(this: RippleAPI): Promise<number>;
|
||||
declare function connect(this: RippleAPI): Promise<void>;
|
||||
declare function disconnect(this: RippleAPI): Promise<void>;
|
||||
declare function formatLedgerClose(ledgerClose: any): object;
|
||||
export { connect, disconnect, isConnected, getLedgerVersion, formatLedgerClose };
|
||||
//# sourceMappingURL=server.d.ts.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../../../src/server/server.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,SAAS,EAAC,MAAM,IAAI,CAAA;AAE5B,iBAAS,WAAW,CAAC,IAAI,EAAE,SAAS,GAAG,OAAO,CAE7C;AAED,iBAAS,gBAAgB,CAAC,IAAI,EAAE,SAAS,GAAG,OAAO,CAAC,MAAM,CAAC,CAE1D;AAED,iBAAe,OAAO,CAAC,IAAI,EAAE,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC,CAErD;AAED,iBAAe,UAAU,CAAC,IAAI,EAAE,SAAS,GAAG,OAAO,CAAC,IAAI,CAAC,CAIxD;AAED,iBAAS,iBAAiB,CAAC,WAAW,EAAE,GAAG,GAAG,MAAM,CAWnD;AAED,OAAO,EAAC,OAAO,EAAE,UAAU,EAAE,WAAW,EAAE,gBAAgB,EAAE,iBAAiB,EAAC,CAAA"}
|
||||
+66
@@ -0,0 +1,66 @@
|
||||
"use strict";
|
||||
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
|
||||
}) : (function(o, m, k, k2) {
|
||||
if (k2 === undefined) k2 = k;
|
||||
o[k2] = m[k];
|
||||
}));
|
||||
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
||||
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
||||
}) : function(o, v) {
|
||||
o["default"] = v;
|
||||
});
|
||||
var __importStar = (this && this.__importStar) || function (mod) {
|
||||
if (mod && mod.__esModule) return mod;
|
||||
var result = {};
|
||||
if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
||||
__setModuleDefault(result, mod);
|
||||
return result;
|
||||
};
|
||||
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
|
||||
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
|
||||
return new (P || (P = Promise))(function (resolve, reject) {
|
||||
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
|
||||
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
|
||||
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
|
||||
step((generator = generator.apply(thisArg, _arguments || [])).next());
|
||||
});
|
||||
};
|
||||
Object.defineProperty(exports, "__esModule", { value: true });
|
||||
exports.formatLedgerClose = exports.getLedgerVersion = exports.isConnected = exports.disconnect = exports.connect = void 0;
|
||||
const common = __importStar(require("../common"));
|
||||
function isConnected() {
|
||||
return this.connection.isConnected();
|
||||
}
|
||||
exports.isConnected = isConnected;
|
||||
function getLedgerVersion() {
|
||||
return this.connection.getLedgerVersion();
|
||||
}
|
||||
exports.getLedgerVersion = getLedgerVersion;
|
||||
function connect() {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
return this.connection.connect();
|
||||
});
|
||||
}
|
||||
exports.connect = connect;
|
||||
function disconnect() {
|
||||
return __awaiter(this, void 0, void 0, function* () {
|
||||
yield this.connection.disconnect();
|
||||
});
|
||||
}
|
||||
exports.disconnect = disconnect;
|
||||
function formatLedgerClose(ledgerClose) {
|
||||
return {
|
||||
baseFeeXRP: common.dropsToXrp(ledgerClose.fee_base),
|
||||
ledgerHash: ledgerClose.ledger_hash,
|
||||
ledgerVersion: ledgerClose.ledger_index,
|
||||
ledgerTimestamp: common.rippleTimeToISO8601(ledgerClose.ledger_time),
|
||||
reserveBaseXRP: common.dropsToXrp(ledgerClose.reserve_base),
|
||||
reserveIncrementXRP: common.dropsToXrp(ledgerClose.reserve_inc),
|
||||
transactionCount: ledgerClose.txn_count,
|
||||
validatedLedgerVersions: ledgerClose.validated_ledgers
|
||||
};
|
||||
}
|
||||
exports.formatLedgerClose = formatLedgerClose;
|
||||
//# sourceMappingURL=server.js.map
|
||||
+1
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"server.js","sourceRoot":"","sources":["../../../src/server/server.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,kDAAmC;AAGnC,SAAS,WAAW;IAClB,OAAO,IAAI,CAAC,UAAU,CAAC,WAAW,EAAE,CAAA;AACtC,CAAC;AA6B4B,kCAAW;AA3BxC,SAAS,gBAAgB;IACvB,OAAO,IAAI,CAAC,UAAU,CAAC,gBAAgB,EAAE,CAAA;AAC3C,CAAC;AAyByC,4CAAgB;AAvB1D,SAAe,OAAO;;QACpB,OAAO,IAAI,CAAC,UAAU,CAAC,OAAO,EAAE,CAAA;IAClC,CAAC;CAAA;AAqBO,0BAAO;AAnBf,SAAe,UAAU;;QAGvB,MAAM,IAAI,CAAC,UAAU,CAAC,UAAU,EAAE,CAAA;IACpC,CAAC;CAAA;AAegB,gCAAU;AAb3B,SAAS,iBAAiB,CAAC,WAAgB;IACzC,OAAO;QACL,UAAU,EAAE,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC,QAAQ,CAAC;QACnD,UAAU,EAAE,WAAW,CAAC,WAAW;QACnC,aAAa,EAAE,WAAW,CAAC,YAAY;QACvC,eAAe,EAAE,MAAM,CAAC,mBAAmB,CAAC,WAAW,CAAC,WAAW,CAAC;QACpE,cAAc,EAAE,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC,YAAY,CAAC;QAC3D,mBAAmB,EAAE,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC,WAAW,CAAC;QAC/D,gBAAgB,EAAE,WAAW,CAAC,SAAS;QACvC,uBAAuB,EAAE,WAAW,CAAC,iBAAiB;KACvD,CAAA;AACH,CAAC;AAE2D,8CAAiB"}
|
||||
Reference in New Issue
Block a user