Retrieves configuration data required for creating a multisignature wallet including available blockchains and owner wallets.
Multisignature wallet creation data retrieved successfully.
Wrapper for API operation results containing success status, error information, and return value.
True if the operation completed successfully, false otherwise.
true
True if the operation failed, false otherwise.
false
Error information returned when the operation fails.
{
"code": "ValidationError",
"message": "The request parameters failed validation.",
"info": [
"The Name field is required.",
"The Id field must be greater than 0."
]
}The result value returned when the operation is successful.
{
"blockchains": [
{
"blockchainId": 137,
"blockchainName": "Polygon",
"blockchainIcon": "data:image/png;base64,..."
}
],
"blockchainTenantWallets": {
"Polygon": [
{
"walletTenantId": 2048,
"walletName": "Main Wallet",
"walletAddress": "0x1234..."
}
]
},
"blockchainGasPayersWalletTenants": {
"Polygon": [
{
"walletTenantId": 2049,
"walletName": "Gas Wallet",
"walletAddress": "0x5678..."
}
]
}
}