Skip to main content

Documentation Index

Fetch the complete documentation index at: https://cobo.com/developers/llms.txt

Use this file to discover all available pages before exploring further.

Try Cobo WaaS Skill in your AI coding assistant (Claude Code, Cursor, etc.). Describe your needs in natural language to auto-generate production-ready SDK code and debug faster 🚀
public func getTSSKeyShareGroups(tssKeyShareGroupIDs: [String]) throws -> [TSSKeyShareGroup]
let tssKeyShareGroupIDs = ["gjRIvhmnDfpcGrzjOABE"]

do {
    if let groups = try sdkInstance?.getTSSKeyShareGroups(tssKeyShareGroupIDs: tssKeyShareGroupIDs) {
        for group in groups {
            print("\(group)\n")
        }
    } else {
        print("No TSS key share groups found")
    }
} catch {
    print("Error: \(error)")
}

Parameters

tssKeyShareGroupIDs
string[]
The list of IDs for the TSS key share groups to be retrieved.

Response

tssKeyShareGroups
object[]
The list of retrieved TSS key share groups.