import cobo_waas2
from cobo_waas2.models.create_key_share_holder_group_request import (
CreateKeyShareHolderGroupRequest,
)
from cobo_waas2.models.key_share_holder_group import KeyShareHolderGroup
from cobo_waas2.rest import ApiException
from pprint import pprint
# See configuration.py for a list of all supported configurations.
configuration = cobo_waas2.Configuration(
# Replace `<YOUR_PRIVATE_KEY>` with your private key
api_private_key="<YOUR_PRIVATE_KEY>",
# Select the development environment. To use the production environment, change the URL to https://api.cobo.com/v2.
host="https://api.dev.cobo.com/v2",
)
# Enter a context with an instance of the API client
with cobo_waas2.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = cobo_waas2.WalletsMPCWalletsApi(api_client)
vault_id = "f47ac10b-58cc-4372-a567-0e02b2c3d479"
create_key_share_holder_group_request = cobo_waas2.CreateKeyShareHolderGroupRequest(
key_share_holder_group_type="MainGroup",
participants=3,
threshold=2,
key_share_holders=[
cobo_waas2.CreateKeyShareHolder(
name="Key share holder name",
type="API",
tss_node_id="coboAbCdEfGhIjKlMnOpQrStUvWxYz1234567890abcdefghi",
signer=True
)
]
)
try:
# Create key share holder group
api_response = api_instance.create_key_share_holder_group(
vault_id,
create_key_share_holder_group_request=create_key_share_holder_group_request,
)
print("The response of WalletsMPCWalletsApi->create_key_share_holder_group:\n")
pprint(api_response)
except Exception as e:
print(
"Exception when calling WalletsMPCWalletsApi->create_key_share_holder_group: %s\n"
% e
)
// Import classes:
import com.cobo.waas2.ApiClient;
import com.cobo.waas2.ApiException;
import com.cobo.waas2.Configuration;
import com.cobo.waas2.Env;
import com.cobo.waas2.api.WalletsMpcWalletsApi;
import com.cobo.waas2.model.*;
import java.util.Arrays;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Select the development environment. To use the production environment, replace `Env.DEV` with
// `Env.PROD
defaultClient.setEnv(Env.DEV);
// Replace `<YOUR_PRIVATE_KEY>` with your private key
defaultClient.setPrivKey("<YOUR_PRIVATE_KEY>");
WalletsMpcWalletsApi apiInstance = new WalletsMpcWalletsApi();
UUID vaultId = UUID.fromString("f47ac10b-58cc-4372-a567-0e02b2c3d479");
CreateKeyShareHolderGroupRequest createKeyShareHolderGroupRequest =
new CreateKeyShareHolderGroupRequest()
.keyShareHolderGroupType(KeyShareHolderGroupType.MAINGROUP)
.participants(3)
.threshold(2)
.keyShareHolders(
Arrays.asList(
new CreateKeyShareHolder()
.name("Key share holder name")
.type(KeyShareHolderType.API)
.tssNodeId("coboAbCdEfGhIjKlMnOpQrStUvWxYz1234567890abcdefghi")
.signer(true)
));
try {
KeyShareHolderGroup result =
apiInstance.createKeyShareHolderGroup(vaultId, createKeyShareHolderGroupRequest);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling WalletsMpcWalletsApi#createKeyShareHolderGroup");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
package main
import (
"context"
"fmt"
coboWaas2 "github.com/CoboGlobal/cobo-waas2-go-sdk/cobo_waas2"
"github.com/CoboGlobal/cobo-waas2-go-sdk/cobo_waas2/crypto"
"os"
)
func main() {
vaultId := "f47ac10b-58cc-4372-a567-0e02b2c3d479"
createKeyShareHolderGroupRequest := *coboWaas2.NewCreateKeyShareHolderGroupRequest(coboWaas2.KeyShareHolderGroupType("MainGroup"), int32(3), int32(2), []coboWaas2.CreateKeyShareHolder{*coboWaas2.NewCreateKeyShareHolder()})
configuration := coboWaas2.NewConfiguration()
// Initialize the API client
apiClient := coboWaas2.NewAPIClient(configuration)
ctx := context.Background()
// Select the development environment. To use the production environment, replace coboWaas2.DevEnv with coboWaas2.ProdEnv
ctx = context.WithValue(ctx, coboWaas2.ContextEnv, coboWaas2.DevEnv)
// Replace `<YOUR_PRIVATE_KEY>` with your private key
ctx = context.WithValue(ctx, coboWaas2.ContextPortalSigner, crypto.Ed25519Signer{
Secret: "<YOUR_PRIVATE_KEY>",
})
resp, r, err := apiClient.WalletsMPCWalletsAPI.CreateKeyShareHolderGroup(ctx, vaultId).
CreateKeyShareHolderGroupRequest(createKeyShareHolderGroupRequest).
Execute()
if err != nil {
fmt.Fprintf(
os.Stderr,
"Error when calling `WalletsMPCWalletsAPI.CreateKeyShareHolderGroup``: %v\n",
err,
)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `CreateKeyShareHolderGroup`: KeyShareHolderGroup
fmt.Fprintf(
os.Stdout,
"Response from `WalletsMPCWalletsAPI.CreateKeyShareHolderGroup`: %v\n",
resp,
)
}
const CoboWaas2 = require("@cobo/cobo-waas2");
// Initialize the API client
const apiClient = CoboWaas2.ApiClient.instance;
// Select the development environment. To use the production environment, replace `Env.DEV` with `Env.PROD`
apiClient.setEnv(CoboWaas2.Env.DEV);
// Replace `<YOUR_PRIVATE_KEY>` with your private key
apiClient.setPrivateKey("<YOUR_PRIVATE_KEY>");
// Call the API
const apiInstance = new CoboWaas2.WalletsMPCWalletsApi();
const vault_id = "f47ac10b-58cc-4372-a567-0e02b2c3d479";
const opts = {
CreateKeyShareHolderGroupRequest:
CoboWaas2.CreateKeyShareHolderGroupRequest.constructFromObject({
key_share_holder_group_type: "MainGroup",
participants: 3,
threshold: 2,
key_share_holders: [
{
name: "Key share holder name",
type: "API",
tss_node_id: "coboAbCdEfGhIjKlMnOpQrStUvWxYz1234567890abcdefghi",
signer: true
}
],
}),
};
apiInstance.createKeyShareHolderGroup(vault_id, opts).then(
(data) => {
console.log("API called successfully. Returned data: " + data);
},
(error) => {
console.error(error);
},
);
{
"key_share_holder_group_id": "b33130a9-6e18-44a9-9e48-8b3b41921f0e",
"type": "MainGroup",
"tss_key_share_groups": [
{
"tss_key_share_group_id": "mMedDioOKhTlhGyQRzMv",
"curve": "SECP256K1",
"root_pubkey": "xpub661MyMwAqRbcG4vPNi58VQJrXW8D9VzmauuRq2rTY3oUVnKGuLTxQxvvoEXgLvZ7N9GQXQkWVgKn1rzEUUEm4NdvrBKUqjpNJEnn2UL4rYq"
}
],
"key_share_holders": [
{
"name": "Key share holder name",
"type": "API",
"tss_node_id": "coboAbCdEfGhIjKlMnOpQrStUvWxYz1234567890abcdefghi",
"online": true,
"signer": true,
"status": "Valid",
"account_id": "auth0|cobo|839305394802991371"
}
],
"participants": 3,
"threshold": 2,
"status": "Valid",
"created_timestamp": 1718619403933
}{
"error_code": 123,
"error_message": "<string>",
"error_id": "0b6ddf19083c4bd1a9ca01bec44b24dd"
}{
"error_code": 123,
"error_message": "<string>",
"error_id": "0b6ddf19083c4bd1a9ca01bec44b24dd"
}Create key share holder group
This operation creates a key share holder group for a specified vault.
tss_key_share_groups property until key shares have been created using the Create TSS request operation. Creating a wallet with the Create wallet operation is only possible after you’ve completed the previous actions.import cobo_waas2
from cobo_waas2.models.create_key_share_holder_group_request import (
CreateKeyShareHolderGroupRequest,
)
from cobo_waas2.models.key_share_holder_group import KeyShareHolderGroup
from cobo_waas2.rest import ApiException
from pprint import pprint
# See configuration.py for a list of all supported configurations.
configuration = cobo_waas2.Configuration(
# Replace `<YOUR_PRIVATE_KEY>` with your private key
api_private_key="<YOUR_PRIVATE_KEY>",
# Select the development environment. To use the production environment, change the URL to https://api.cobo.com/v2.
host="https://api.dev.cobo.com/v2",
)
# Enter a context with an instance of the API client
with cobo_waas2.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = cobo_waas2.WalletsMPCWalletsApi(api_client)
vault_id = "f47ac10b-58cc-4372-a567-0e02b2c3d479"
create_key_share_holder_group_request = cobo_waas2.CreateKeyShareHolderGroupRequest(
key_share_holder_group_type="MainGroup",
participants=3,
threshold=2,
key_share_holders=[
cobo_waas2.CreateKeyShareHolder(
name="Key share holder name",
type="API",
tss_node_id="coboAbCdEfGhIjKlMnOpQrStUvWxYz1234567890abcdefghi",
signer=True
)
]
)
try:
# Create key share holder group
api_response = api_instance.create_key_share_holder_group(
vault_id,
create_key_share_holder_group_request=create_key_share_holder_group_request,
)
print("The response of WalletsMPCWalletsApi->create_key_share_holder_group:\n")
pprint(api_response)
except Exception as e:
print(
"Exception when calling WalletsMPCWalletsApi->create_key_share_holder_group: %s\n"
% e
)
// Import classes:
import com.cobo.waas2.ApiClient;
import com.cobo.waas2.ApiException;
import com.cobo.waas2.Configuration;
import com.cobo.waas2.Env;
import com.cobo.waas2.api.WalletsMpcWalletsApi;
import com.cobo.waas2.model.*;
import java.util.Arrays;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Select the development environment. To use the production environment, replace `Env.DEV` with
// `Env.PROD
defaultClient.setEnv(Env.DEV);
// Replace `<YOUR_PRIVATE_KEY>` with your private key
defaultClient.setPrivKey("<YOUR_PRIVATE_KEY>");
WalletsMpcWalletsApi apiInstance = new WalletsMpcWalletsApi();
UUID vaultId = UUID.fromString("f47ac10b-58cc-4372-a567-0e02b2c3d479");
CreateKeyShareHolderGroupRequest createKeyShareHolderGroupRequest =
new CreateKeyShareHolderGroupRequest()
.keyShareHolderGroupType(KeyShareHolderGroupType.MAINGROUP)
.participants(3)
.threshold(2)
.keyShareHolders(
Arrays.asList(
new CreateKeyShareHolder()
.name("Key share holder name")
.type(KeyShareHolderType.API)
.tssNodeId("coboAbCdEfGhIjKlMnOpQrStUvWxYz1234567890abcdefghi")
.signer(true)
));
try {
KeyShareHolderGroup result =
apiInstance.createKeyShareHolderGroup(vaultId, createKeyShareHolderGroupRequest);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling WalletsMpcWalletsApi#createKeyShareHolderGroup");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
package main
import (
"context"
"fmt"
coboWaas2 "github.com/CoboGlobal/cobo-waas2-go-sdk/cobo_waas2"
"github.com/CoboGlobal/cobo-waas2-go-sdk/cobo_waas2/crypto"
"os"
)
func main() {
vaultId := "f47ac10b-58cc-4372-a567-0e02b2c3d479"
createKeyShareHolderGroupRequest := *coboWaas2.NewCreateKeyShareHolderGroupRequest(coboWaas2.KeyShareHolderGroupType("MainGroup"), int32(3), int32(2), []coboWaas2.CreateKeyShareHolder{*coboWaas2.NewCreateKeyShareHolder()})
configuration := coboWaas2.NewConfiguration()
// Initialize the API client
apiClient := coboWaas2.NewAPIClient(configuration)
ctx := context.Background()
// Select the development environment. To use the production environment, replace coboWaas2.DevEnv with coboWaas2.ProdEnv
ctx = context.WithValue(ctx, coboWaas2.ContextEnv, coboWaas2.DevEnv)
// Replace `<YOUR_PRIVATE_KEY>` with your private key
ctx = context.WithValue(ctx, coboWaas2.ContextPortalSigner, crypto.Ed25519Signer{
Secret: "<YOUR_PRIVATE_KEY>",
})
resp, r, err := apiClient.WalletsMPCWalletsAPI.CreateKeyShareHolderGroup(ctx, vaultId).
CreateKeyShareHolderGroupRequest(createKeyShareHolderGroupRequest).
Execute()
if err != nil {
fmt.Fprintf(
os.Stderr,
"Error when calling `WalletsMPCWalletsAPI.CreateKeyShareHolderGroup``: %v\n",
err,
)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `CreateKeyShareHolderGroup`: KeyShareHolderGroup
fmt.Fprintf(
os.Stdout,
"Response from `WalletsMPCWalletsAPI.CreateKeyShareHolderGroup`: %v\n",
resp,
)
}
const CoboWaas2 = require("@cobo/cobo-waas2");
// Initialize the API client
const apiClient = CoboWaas2.ApiClient.instance;
// Select the development environment. To use the production environment, replace `Env.DEV` with `Env.PROD`
apiClient.setEnv(CoboWaas2.Env.DEV);
// Replace `<YOUR_PRIVATE_KEY>` with your private key
apiClient.setPrivateKey("<YOUR_PRIVATE_KEY>");
// Call the API
const apiInstance = new CoboWaas2.WalletsMPCWalletsApi();
const vault_id = "f47ac10b-58cc-4372-a567-0e02b2c3d479";
const opts = {
CreateKeyShareHolderGroupRequest:
CoboWaas2.CreateKeyShareHolderGroupRequest.constructFromObject({
key_share_holder_group_type: "MainGroup",
participants: 3,
threshold: 2,
key_share_holders: [
{
name: "Key share holder name",
type: "API",
tss_node_id: "coboAbCdEfGhIjKlMnOpQrStUvWxYz1234567890abcdefghi",
signer: true
}
],
}),
};
apiInstance.createKeyShareHolderGroup(vault_id, opts).then(
(data) => {
console.log("API called successfully. Returned data: " + data);
},
(error) => {
console.error(error);
},
);
{
"key_share_holder_group_id": "b33130a9-6e18-44a9-9e48-8b3b41921f0e",
"type": "MainGroup",
"tss_key_share_groups": [
{
"tss_key_share_group_id": "mMedDioOKhTlhGyQRzMv",
"curve": "SECP256K1",
"root_pubkey": "xpub661MyMwAqRbcG4vPNi58VQJrXW8D9VzmauuRq2rTY3oUVnKGuLTxQxvvoEXgLvZ7N9GQXQkWVgKn1rzEUUEm4NdvrBKUqjpNJEnn2UL4rYq"
}
],
"key_share_holders": [
{
"name": "Key share holder name",
"type": "API",
"tss_node_id": "coboAbCdEfGhIjKlMnOpQrStUvWxYz1234567890abcdefghi",
"online": true,
"signer": true,
"status": "Valid",
"account_id": "auth0|cobo|839305394802991371"
}
],
"participants": 3,
"threshold": 2,
"status": "Valid",
"created_timestamp": 1718619403933
}{
"error_code": 123,
"error_message": "<string>",
"error_id": "0b6ddf19083c4bd1a9ca01bec44b24dd"
}{
"error_code": 123,
"error_message": "<string>",
"error_id": "0b6ddf19083c4bd1a9ca01bec44b24dd"
}import cobo_waas2
from cobo_waas2.models.create_key_share_holder_group_request import (
CreateKeyShareHolderGroupRequest,
)
from cobo_waas2.models.key_share_holder_group import KeyShareHolderGroup
from cobo_waas2.rest import ApiException
from pprint import pprint
# See configuration.py for a list of all supported configurations.
configuration = cobo_waas2.Configuration(
# Replace `<YOUR_PRIVATE_KEY>` with your private key
api_private_key="<YOUR_PRIVATE_KEY>",
# Select the development environment. To use the production environment, change the URL to https://api.cobo.com/v2.
host="https://api.dev.cobo.com/v2",
)
# Enter a context with an instance of the API client
with cobo_waas2.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = cobo_waas2.WalletsMPCWalletsApi(api_client)
vault_id = "f47ac10b-58cc-4372-a567-0e02b2c3d479"
create_key_share_holder_group_request = cobo_waas2.CreateKeyShareHolderGroupRequest(
key_share_holder_group_type="MainGroup",
participants=3,
threshold=2,
key_share_holders=[
cobo_waas2.CreateKeyShareHolder(
name="Key share holder name",
type="API",
tss_node_id="coboAbCdEfGhIjKlMnOpQrStUvWxYz1234567890abcdefghi",
signer=True
)
]
)
try:
# Create key share holder group
api_response = api_instance.create_key_share_holder_group(
vault_id,
create_key_share_holder_group_request=create_key_share_holder_group_request,
)
print("The response of WalletsMPCWalletsApi->create_key_share_holder_group:\n")
pprint(api_response)
except Exception as e:
print(
"Exception when calling WalletsMPCWalletsApi->create_key_share_holder_group: %s\n"
% e
)
// Import classes:
import com.cobo.waas2.ApiClient;
import com.cobo.waas2.ApiException;
import com.cobo.waas2.Configuration;
import com.cobo.waas2.Env;
import com.cobo.waas2.api.WalletsMpcWalletsApi;
import com.cobo.waas2.model.*;
import java.util.Arrays;
public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
// Select the development environment. To use the production environment, replace `Env.DEV` with
// `Env.PROD
defaultClient.setEnv(Env.DEV);
// Replace `<YOUR_PRIVATE_KEY>` with your private key
defaultClient.setPrivKey("<YOUR_PRIVATE_KEY>");
WalletsMpcWalletsApi apiInstance = new WalletsMpcWalletsApi();
UUID vaultId = UUID.fromString("f47ac10b-58cc-4372-a567-0e02b2c3d479");
CreateKeyShareHolderGroupRequest createKeyShareHolderGroupRequest =
new CreateKeyShareHolderGroupRequest()
.keyShareHolderGroupType(KeyShareHolderGroupType.MAINGROUP)
.participants(3)
.threshold(2)
.keyShareHolders(
Arrays.asList(
new CreateKeyShareHolder()
.name("Key share holder name")
.type(KeyShareHolderType.API)
.tssNodeId("coboAbCdEfGhIjKlMnOpQrStUvWxYz1234567890abcdefghi")
.signer(true)
));
try {
KeyShareHolderGroup result =
apiInstance.createKeyShareHolderGroup(vaultId, createKeyShareHolderGroupRequest);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling WalletsMpcWalletsApi#createKeyShareHolderGroup");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
package main
import (
"context"
"fmt"
coboWaas2 "github.com/CoboGlobal/cobo-waas2-go-sdk/cobo_waas2"
"github.com/CoboGlobal/cobo-waas2-go-sdk/cobo_waas2/crypto"
"os"
)
func main() {
vaultId := "f47ac10b-58cc-4372-a567-0e02b2c3d479"
createKeyShareHolderGroupRequest := *coboWaas2.NewCreateKeyShareHolderGroupRequest(coboWaas2.KeyShareHolderGroupType("MainGroup"), int32(3), int32(2), []coboWaas2.CreateKeyShareHolder{*coboWaas2.NewCreateKeyShareHolder()})
configuration := coboWaas2.NewConfiguration()
// Initialize the API client
apiClient := coboWaas2.NewAPIClient(configuration)
ctx := context.Background()
// Select the development environment. To use the production environment, replace coboWaas2.DevEnv with coboWaas2.ProdEnv
ctx = context.WithValue(ctx, coboWaas2.ContextEnv, coboWaas2.DevEnv)
// Replace `<YOUR_PRIVATE_KEY>` with your private key
ctx = context.WithValue(ctx, coboWaas2.ContextPortalSigner, crypto.Ed25519Signer{
Secret: "<YOUR_PRIVATE_KEY>",
})
resp, r, err := apiClient.WalletsMPCWalletsAPI.CreateKeyShareHolderGroup(ctx, vaultId).
CreateKeyShareHolderGroupRequest(createKeyShareHolderGroupRequest).
Execute()
if err != nil {
fmt.Fprintf(
os.Stderr,
"Error when calling `WalletsMPCWalletsAPI.CreateKeyShareHolderGroup``: %v\n",
err,
)
fmt.Fprintf(os.Stderr, "Full HTTP response: %v\n", r)
}
// response from `CreateKeyShareHolderGroup`: KeyShareHolderGroup
fmt.Fprintf(
os.Stdout,
"Response from `WalletsMPCWalletsAPI.CreateKeyShareHolderGroup`: %v\n",
resp,
)
}
const CoboWaas2 = require("@cobo/cobo-waas2");
// Initialize the API client
const apiClient = CoboWaas2.ApiClient.instance;
// Select the development environment. To use the production environment, replace `Env.DEV` with `Env.PROD`
apiClient.setEnv(CoboWaas2.Env.DEV);
// Replace `<YOUR_PRIVATE_KEY>` with your private key
apiClient.setPrivateKey("<YOUR_PRIVATE_KEY>");
// Call the API
const apiInstance = new CoboWaas2.WalletsMPCWalletsApi();
const vault_id = "f47ac10b-58cc-4372-a567-0e02b2c3d479";
const opts = {
CreateKeyShareHolderGroupRequest:
CoboWaas2.CreateKeyShareHolderGroupRequest.constructFromObject({
key_share_holder_group_type: "MainGroup",
participants: 3,
threshold: 2,
key_share_holders: [
{
name: "Key share holder name",
type: "API",
tss_node_id: "coboAbCdEfGhIjKlMnOpQrStUvWxYz1234567890abcdefghi",
signer: true
}
],
}),
};
apiInstance.createKeyShareHolderGroup(vault_id, opts).then(
(data) => {
console.log("API called successfully. Returned data: " + data);
},
(error) => {
console.error(error);
},
);
Authorizations
The API key. For more details, refer to API key.
In the API playground, enter your API secret, and your API key will be accordingly calculated.
Path Parameters
The vault ID, which you can retrieve by calling List all vaults.
Body
The request body to create a key share holder group.
The type of key share holder group. Possible values include:
-
MainGroup: A Main Group. -
SigningGroup: A Signing Group. -
RecoveryGroup: A Recovery Group.
Note: For MainGroup and SigningGroup, a Cobo key share holder will be added automatically.
MainGroup, SigningGroup, RecoveryGroup "MainGroup"
The number of key share holders in this key share holder group.
Notes:
-
Currently, the available Threshold Signature Schemes (TSS) are 2-2, 2-3, and 3-3 schemes (in the "threshold - participants" format), so you can only set
participantsto 2 or 3. -
thresholdmust be less than or equal toparticipants.
3
The number of key share holders required to sign an operation.
Notes:
-
Currently, the available Threshold Signature Schemes (TSS) are 2-2, 2-3, and 3-3 schemes (in the "threshold - participants" format), so you can only set
thresholdto 2 or 3. -
thresholdmust be less than or equal toparticipants.
2
Show child attributes
Show child attributes
Response
mpc vault successfully created
The data for key share holder group information.
The key share holder group ID.
"b33130a9-6e18-44a9-9e48-8b3b41921f0e"
The type of key share holder group. Possible values include:
-
MainGroup: A Main Group. -
SigningGroup: A Signing Group. -
RecoveryGroup: A Recovery Group.
Note: For MainGroup and SigningGroup, a Cobo key share holder will be added automatically.
MainGroup, SigningGroup, RecoveryGroup "MainGroup"
Show child attributes
Show child attributes
Show child attributes
Show child attributes
The number of key share holders in this key share holder group.
3
The number of key share holders required to approve each operation in this key share holder group.
2
The status of the key share holder group. Possible values include:
-
New: The key share holder group has been newly created. The status will becomeValidafter you call Create TSS request and specifying this key share holder group as the target key share holder group. -
Valid: The key share holder group is valid. -
Unavailable: The key share holder group is currently unavailable. This status appears when a key share holder uses mobile co-signer to change node. For example, when a key share holder changes to a new phone or loses their phone, and is in the process of setting up Cobo Guard on their new phone.
New, Valid, Unavailable "Valid"
The key share holder group's creation time in Unix timestamp format, measured in milliseconds.
1718619403933
Was this page helpful?
