@hashgraph/solo
Version:
An opinionated CLI tool to deploy and manage private Hedera Networks.
50 lines • 1.54 kB
JavaScript
// SPDX-License-Identifier: Apache-2.0
export class ApplicationVersions {
encapsulatedObject;
constructor(encapsulatedObject) {
this.encapsulatedObject = encapsulatedObject;
}
get cli() {
return this.encapsulatedObject.cli;
}
set cli(cli) {
this.encapsulatedObject.cli = cli;
}
get chart() {
return this.encapsulatedObject.chart;
}
set chart(chart) {
this.encapsulatedObject.chart = chart;
}
get consensusNode() {
return this.encapsulatedObject.consensusNode;
}
set consensusNode(consensusNode) {
this.encapsulatedObject.consensusNode = consensusNode;
}
get mirrorNodeChart() {
return this.encapsulatedObject.mirrorNodeChart;
}
set mirrorNodeChart(mirrorNodeChart) {
this.encapsulatedObject.mirrorNodeChart = mirrorNodeChart;
}
get explorerChart() {
return this.encapsulatedObject.explorerChart;
}
set explorerChart(explorerChart) {
this.encapsulatedObject.explorerChart = explorerChart;
}
get jsonRpcRelayChart() {
return this.encapsulatedObject.jsonRpcRelayChart;
}
set jsonRpcRelayChart(jsonRpcRelayChart) {
this.encapsulatedObject.jsonRpcRelayChart = jsonRpcRelayChart;
}
get blockNodeChart() {
return this.encapsulatedObject.blockNodeChart;
}
set blockNodeChart(blockNodeChart) {
this.encapsulatedObject.blockNodeChart = blockNodeChart;
}
}
//# sourceMappingURL=application-versions.js.map