Response
string
The retrieved TSS Node ID.
For example,
coboJTKRVEWHgmigeE8FB2FDpN6nadUwXkUdsRZbhyFAq8bDV.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
do {
if let tssNodeID = try sdkInstance?.getTSSNodeID() {
print("TSS Node ID: \(tssNodeID)")
} else {
print("Failed to retrieve the TSS Node ID")
}
} catch {
print("Error: \(error)")
}
try {
final tssNodeID = await sdkInstance?.getTSSNodeID();
print("TSS Node ID: $tssNodeID");
} catch (error) {
print("Error: $error");
}
This operation retrieves the TSS Node ID.
public func getTSSNodeID() throws -> String
Future<String> getTSSNodeID() async
do {
if let tssNodeID = try sdkInstance?.getTSSNodeID() {
print("TSS Node ID: \(tssNodeID)")
} else {
print("Failed to retrieve the TSS Node ID")
}
} catch {
print("Error: \(error)")
}
try {
final tssNodeID = await sdkInstance?.getTSSNodeID();
print("TSS Node ID: $tssNodeID");
} catch (error) {
print("Error: $error");
}
coboJTKRVEWHgmigeE8FB2FDpN6nadUwXkUdsRZbhyFAq8bDV.Was this page helpful?