@hashgraph/sdk
Version:
210 lines (195 loc) • 5.76 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = exports.Network = void 0;
var _Client = _interopRequireDefault(require("./Client.cjs"));
var _NativeChannel = _interopRequireDefault(require("../channel/NativeChannel.cjs"));
var _AccountId = _interopRequireDefault(require("../account/AccountId.cjs"));
var _LedgerId = _interopRequireDefault(require("../LedgerId.cjs"));
var _ClientConstants = require("../constants/ClientConstants.cjs");
function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
// SPDX-License-Identifier: Apache-2.0
// eslint-disable-next-line @typescript-eslint/no-unused-vars
/**
* @typedef {import("./Client.js").ClientConfiguration} ClientConfiguration
*/
const Network = exports.Network = {
/**
* @param {string} name
* @returns {{[key: string]: (string | AccountId)}}
*/
fromName(name) {
switch (name) {
case "mainnet":
return Network.MAINNET;
case "testnet":
return Network.TESTNET;
case "previewnet":
return Network.PREVIEWNET;
default:
throw new Error(`unknown network name: ${name}`);
}
},
MAINNET: _ClientConstants.MAINNET,
TESTNET: _ClientConstants.NATIVE_TESTNET,
PREVIEWNET: _ClientConstants.NATIVE_PREVIEWNET
};
/**
* @augments {Client<NativeChannel, *>}
*/
class NativeClient extends _Client.default {
/**
* @param {ClientConfiguration} [props]
*/
constructor(props) {
super(props);
if (props != null) {
if (typeof props.network === "string") {
switch (props.network) {
case "mainnet":
this.setNetwork(Network.MAINNET);
this.setLedgerId(_LedgerId.default.MAINNET);
break;
case "testnet":
this.setNetwork(Network.TESTNET);
this.setLedgerId(_LedgerId.default.TESTNET);
break;
case "previewnet":
this.setNetwork(Network.PREVIEWNET);
this.setLedgerId(_LedgerId.default.PREVIEWNET);
break;
default:
throw new Error(
// eslint-disable-next-line @typescript-eslint/restrict-template-expressions
`unknown network: ${props.network}`);
}
} else if (props.network != null) {
_Client.default._validateNetworkConsistency(props.network);
const {
shard,
realm
} = _Client.default._extractShardRealm(props.network);
// Shard and realm are inferred from the network, so we need to set them here
// to ensure that the client is properly configured.
this._shard = shard;
this._realm = realm;
this.setNetwork(props.network);
}
}
}
/**
* @param {string | ClientConfiguration} data
* @returns {NativeClient}
*/
static fromConfig(data) {
return new NativeClient(typeof data === "string" ? (/** @type {ClientConfiguration | undefined} */
JSON.parse(data)) : data);
}
/**
* Construct a client for a specific network.
*
* It is the responsibility of the caller to ensure that all nodes in the map are part of the
* same Hedera network. Failure to do so will result in undefined behavior.
*
* The client will load balance all requests to Hedera using a simple round-robin scheme to
* chose nodes to send transactions to. For one transaction, at most 1/3 of the nodes will be
* tried.
*
* @param {{[key: string]: (string | AccountId)} | string} network
* @returns {NativeClient}
*/
static forNetwork(network) {
return new NativeClient({
network,
scheduleNetworkUpdate: false
});
}
/**
* @param {string} network
* @returns {NativeClient}
*/
static forName(network) {
return new NativeClient({
network,
scheduleNetworkUpdate: false
});
}
/**
* Construct a Hedera client pre-configured for Mainnet access.
*
* @returns {NativeClient}
*/
static forMainnet() {
return new NativeClient({
network: "mainnet",
scheduleNetworkUpdate: false
});
}
/**
* Construct a Hedera client pre-configured for Testnet access.
*
* @returns {NativeClient}
*/
static forTestnet() {
return new NativeClient({
network: "testnet",
scheduleNetworkUpdate: false
});
}
/**
* Construct a Hedera client pre-configured for Previewnet access.
*
* @returns {NativeClient}
*/
static forPreviewnet() {
return new NativeClient({
network: "previewnet",
scheduleNetworkUpdate: false
});
}
/**
* @param {{[key: string]: (string | AccountId)} | string} network
* @returns {void}
*/
setNetwork(network) {
if (typeof network === "string") {
switch (network) {
case "previewnet":
this._network.setNetwork(Network.PREVIEWNET);
break;
case "testnet":
this._network.setNetwork(Network.TESTNET);
break;
case "mainnet":
this._network.setNetwork(Network.MAINNET);
}
} else {
this._network.setNetwork(network);
}
}
/**
* @param {string[] | string} mirrorNetwork
* @returns {void}
*/
// eslint-disable-next-line @typescript-eslint/no-unused-vars
setMirrorNetwork(mirrorNetwork) {
// Do nothing as this is not currently supported
}
/**
* @override
* @returns {(address: string) => NativeChannel}
*/
_createNetworkChannel() {
return address => new _NativeChannel.default(address);
}
/**
* @abstract
* @returns {(address: string) => *}
*/
_createMirrorNetworkChannel() {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
return address => null;
}
}
exports.default = NativeClient;