Skip to main content
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.