Skip to main content
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 🚀
An active TSS key share group is one that has been created and has already completed its associated TSS request.
public func listTSSKeyShareGroups()  throws -> [TSSKeyShareGroup]
do {
    if let groups = try sdkInstance?.listTSSKeyShareGroups() {
        for group in groups {
            print("\(group)\n")
        }
    } else {
        print("Get no TSS key share group")
    }
} catch {
    print("Error: \(error)")
}

Response

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