@haechi-labs/henesis-cli
Version:
🚀 Command Line Interface tool to Utilize henesis
54 lines • 1.62 kB
JavaScript
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
class NodeStatus {
constructor(platform, network, endpoint, state) {
this.platform = platform;
this.network = network;
this.endpoint = endpoint;
this.state = state;
}
}
exports.NodeStatus = NodeStatus;
class NodeDailyStat {
constructor(id, clientId, count, requestBytes, responseBytes, createdAt, jobId, platform) {
this.id = id;
this.clientId = clientId;
this.count = count;
this.requestBytes = requestBytes;
this.responseBytes = responseBytes;
this.createdAt = createdAt;
this.jobId = jobId;
this.platform = platform;
}
}
exports.NodeDailyStat = NodeDailyStat;
class NodeHourlyStat {
constructor(id, clientId, count, platform, requestBytes, responseBytes, createdAt, hour, jobId) {
this.id = id;
this.clientId = clientId;
this.count = count;
this.platform = platform;
this.requestBytes = requestBytes;
this.responseBytes = responseBytes;
this.createdAt = createdAt;
this.hour = hour;
this.jobId = jobId;
}
}
exports.NodeHourlyStat = NodeHourlyStat;
class NodeUsage {
constructor(date, usage, bandwidth) {
this.date = date;
this.usage = usage;
this.bandwidth = bandwidth;
}
}
exports.NodeUsage = NodeUsage;
class BlockchainNodes {
constructor(ethereum, klaytn) {
this.ethereum = ethereum;
this.klaytn = klaytn;
}
}
exports.BlockchainNodes = BlockchainNodes;
//# sourceMappingURL=node.js.map