https://github.com/coboglobal/cobo-waas2-java-sdk
WaaS2 Java SDK
https://github.com/coboglobal/cobo-waas2-java-sdk
Last synced: 2 months ago
JSON representation
WaaS2 Java SDK
- Host: GitHub
- URL: https://github.com/coboglobal/cobo-waas2-java-sdk
- Owner: CoboGlobal
- Created: 2024-05-10T09:19:40.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-04-23T09:55:19.000Z (3 months ago)
- Last Synced: 2025-04-23T10:43:16.418Z (3 months ago)
- Language: Java
- Size: 2.22 MB
- Stars: 1
- Watchers: 1
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# cobo-waas2-java-sdk
Cobo Wallet as a Service 2.0
- API version: 1.0.0
- Generator version: 7.6.0The Cobo Wallet-as-a-Service (WaaS) 2.0 API is the latest version of Cobo's WaaS API offering. It enables you to access Cobo's full suite of crypto wallet technologies with powerful and flexible access controls. By encapsulating complex security protocols and streamlining blockchain interactions, this API allows you to concentrate on your core business activities without worrying about the safety of your assets. The WaaS 2.0 API presents the following key features:
- A unified API for Cobo's [all four wallet types](https://manuals.cobo.com/en/portal/introduction#an-all-in-one-wallet-platform)
- Support for 80+ chains and 3000+ tokens
- A comprehensive selection of webhook events
- Flexible usage models for MPC Wallets, including [Organization-Controlled Wallets](https://manuals.cobo.com/en/portal/mpc-wallets/ocw/introduction) and [User-Controlled Wallets](https://manuals.cobo.com/en/portal/mpc-wallets/ucw/introduction)
- Programmatic control of smart contract wallets such as Safe{Wallet} with fine-grained access controls
- Seamlessly transfer funds across multiple exchanges, including Binance, OKX, Bybit, Deribit, and moreFor more information about the WaaS 2.0 API, see [Introduction to WaaS 2.0](https://www.cobo.com/developers/v2/guides/overview/introduction).
For more information, please visit [https://www.cobo.com/waas](https://www.cobo.com/waas)
*Automatically generated by the [OpenAPI Generator](https://openapi-generator.tech)*
## Requirements
Building the API client library requires:
1. Java 1.8+
2. Maven (3.8.3+)/Gradle (7.2+)## Installation
To install the API client library to your local Maven repository, simply execute:
```shell
mvn clean install
```To deploy it to a remote Maven repository instead, configure the settings of the repository and execute:
```shell
mvn clean deploy
```Refer to the [OSSRH Guide](http://central.sonatype.org/pages/ossrh-guide.html) for more information.
### Maven users
Add this dependency to your project's POM:
```xml
com.cobo.waas2
cobo-waas2
1.14.0
compile```
### Gradle users
Add this dependency to your project's build file:
```groovy
repositories {
mavenCentral() // Needed if the 'cobo-waas2' jar has been published to maven central.
mavenLocal() // Needed if the 'cobo-waas2' jar has been published to the local maven repo.
}dependencies {
implementation "com.cobo.waas2:cobo-waas2:1.14.0"
}
```### Callback/Webhook Server Demo
A server demo for callback and webhook was implemented at `src/main/java/com/cobo/waas2/demo`.
Run this demo with command:```shell
mvn spring-boot:run
```or
```shell
./gradlew bootRun
```### Others
At first generate the JAR by executing:
```shell
mvn clean package
```Then manually install the following JARs:
* `target/cobo-waas2-1.14.0.jar`
* `target/lib/*.jar`## Getting Started
### Initiate the API client
The `ApiClient` class is designed to configure and interact with a web API. It supports the following main features:- Setting Private Key: You can set the private key using setPrivKey() for authentication. The method supports ED25519 keys by default, but can be customized for other key types as well.
- Using a Custom Signer: If you want more control over the signing process, you can pass a custom signer object using the setSigner() method.
- Setting Environment: You can switch between different environments (e.g., development, production) using setEnv().Here’s an example of how to use the ApiClient:
```
public class Main {
public static void main(String[] args) {
ApiClient client = new ApiClient();// Set a private key with default ED25519 key type
String privKey = "your-private-key-in-hex";
client.setPrivKey(privKey);// Alternatively, set a private key with a custom key type
client.setPrivKey(privKey, "SECP256K1");// Set a signer
Signer signer = new LocalEd25519Signer(privKey);
client.setSigner(signer);// for dev environment
client.setEnv(Env.DEV);
// for production environment
client.setEnv(Env.PROD);// Now you can use the client to make API requests
// Example: client.doSomething();
}
}```
In certain scenarios, the private key may be restricted from export, such as when it is stored in AWS Key Management Service (KMS). In such cases, please pass in a custom implementation using the ApiSigner interface:
```java
import com.cobo.waas2.auth.Signer;
new Signer() {
@Override
public String sign(byte[] message) {
return null;
}@Override
public String getPublicKey() {
return null;
}
}
```### Call api methods
Please follow the [installation](#installation) instruction and execute the following Java code:```java
// Import classes:
import com.cobo.waas2.ApiClient;
import com.cobo.waas2.ApiException;
import com.cobo.waas2.Configuration;
import com.cobo.waas2.model.*;
import com.cobo.waas2.api.WalletsApi;public class Example {
public static void main(String[] args) {
ApiClient defaultClient = Configuration.getDefaultApiClient();
// for dev environment
// defaultClient.setEnv(Env.DEV);
// for production environment
// defaultClient.setEnv(Env.PROD);
defaultClient.setPrivKey("");
WalletsApi apiInstance = new WalletsApi();
WalletType walletType = WalletType.fromValue("Custodial");
WalletSubtype walletSubtype = WalletSubtype.fromValue("Asset");
String chainIds = "BTC,ETH";
Integer limit = 10;
String before = "";
String after = "";
try {
ListSupportedChains200Response result = apiInstance.listSupportedChains(walletType, walletSubtype, chainIds, limit, before, after);
System.out.println(result);
} catch (ApiException e) {
System.err.println("Exception when calling WalletsApi#listSupportedChains");
System.err.println("Status code: " + e.getCode());
System.err.println("Reason: " + e.getResponseBody());
System.err.println("Response headers: " + e.getResponseHeaders());
e.printStackTrace();
}
}
}
```## Documentation for API Endpoints
All URIs are relative to *https://api.dev.cobo.com/v2*
Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*AddressBooksApi* | [**listAddressBooks**](docs/AddressBooksApi.md#listAddressBooks) | **GET** /address_books | List address book entries
*DevelopersApi* | [**getApiKeyInfo**](docs/DevelopersApi.md#getApiKeyInfo) | **GET** /developers/api_key_info | Get API key information
*DevelopersApi* | [**listCallbackMessages**](docs/DevelopersApi.md#listCallbackMessages) | **GET** /developers/callback_messages | List all callback messages
*DevelopersApi* | [**retryCallbackMessage**](docs/DevelopersApi.md#retryCallbackMessage) | **POST** /developers/callback_messages/{message_id}/retry | Retry callback message
*DevelopersWebhooksApi* | [**createWebhookEndpoint**](docs/DevelopersWebhooksApi.md#createWebhookEndpoint) | **POST** /webhooks/endpoints | Register webhook endpoint
*DevelopersWebhooksApi* | [**getWebhookEndpointById**](docs/DevelopersWebhooksApi.md#getWebhookEndpointById) | **GET** /webhooks/endpoints/{endpoint_id} | Get webhook endpoint information
*DevelopersWebhooksApi* | [**getWebhookEventById**](docs/DevelopersWebhooksApi.md#getWebhookEventById) | **GET** /webhooks/endpoints/{endpoint_id}/events/{event_id} | Retrieve event information
*DevelopersWebhooksApi* | [**listWebhookEndpoints**](docs/DevelopersWebhooksApi.md#listWebhookEndpoints) | **GET** /webhooks/endpoints | List webhook endpoints
*DevelopersWebhooksApi* | [**listWebhookEventDefinitions**](docs/DevelopersWebhooksApi.md#listWebhookEventDefinitions) | **GET** /webhooks/events/definitions | Get webhook event types
*DevelopersWebhooksApi* | [**listWebhookEventLogs**](docs/DevelopersWebhooksApi.md#listWebhookEventLogs) | **GET** /webhooks/endpoints/{endpoint_id}/events/{event_id}/logs | List webhook event logs
*DevelopersWebhooksApi* | [**listWebhookEvents**](docs/DevelopersWebhooksApi.md#listWebhookEvents) | **GET** /webhooks/endpoints/{endpoint_id}/events | List all webhook events
*DevelopersWebhooksApi* | [**retryWebhookEventById**](docs/DevelopersWebhooksApi.md#retryWebhookEventById) | **POST** /webhooks/endpoints/{endpoint_id}/events/{event_id}/retry | Retry event
*DevelopersWebhooksApi* | [**triggerTestWebhookEvent**](docs/DevelopersWebhooksApi.md#triggerTestWebhookEvent) | **POST** /webhooks/events/trigger | Trigger test event
*DevelopersWebhooksApi* | [**updateWebhookEndpointById**](docs/DevelopersWebhooksApi.md#updateWebhookEndpointById) | **PUT** /webhooks/endpoints/{endpoint_id} | Update webhook endpoint
*FeeStationApi* | [**estimateFeeStationFee**](docs/FeeStationApi.md#estimateFeeStationFee) | **POST** /fee_station/transactions/estimate_fee | Estimate transaction fee
*FeeStationApi* | [**getFeeStationTransactionById**](docs/FeeStationApi.md#getFeeStationTransactionById) | **GET** /fee_station/transactions/{transaction_id} | Get Fee Station transaction information
*FeeStationApi* | [**listFeeStationAddresses**](docs/FeeStationApi.md#listFeeStationAddresses) | **GET** /fee_station/addresses | List Fee Station addresses
*FeeStationApi* | [**listFeeStationTransactions**](docs/FeeStationApi.md#listFeeStationTransactions) | **GET** /fee_station/transactions | List all Fee Station transactions
*FeeStationApi* | [**listTokenBalancesForFeeStation**](docs/FeeStationApi.md#listTokenBalancesForFeeStation) | **GET** /fee_station/tokens | List Fee Station token balances
*OAuthApi* | [**getToken**](docs/OAuthApi.md#getToken) | **GET** /oauth/token | Get Org Access Token
*OAuthApi* | [**refreshToken**](docs/OAuthApi.md#refreshToken) | **POST** /oauth/token | Refresh Org Access Token
*PaymentApi* | [**createBankAccount**](docs/PaymentApi.md#createBankAccount) | **POST** /payments/bank_accounts | Create bank account
*PaymentApi* | [**createMerchant**](docs/PaymentApi.md#createMerchant) | **POST** /payments/merchants | Create merchant
*PaymentApi* | [**createPaymentOrder**](docs/PaymentApi.md#createPaymentOrder) | **POST** /payments/orders | Create pay-in order
*PaymentApi* | [**createRefund**](docs/PaymentApi.md#createRefund) | **POST** /payments/refunds | Create refund order
*PaymentApi* | [**createSettlementRequest**](docs/PaymentApi.md#createSettlementRequest) | **POST** /payments/settlement_requests | Create settlement request
*PaymentApi* | [**getExchangeRate**](docs/PaymentApi.md#getExchangeRate) | **GET** /payments/exchange_rates/{token_id}/{currency} | Get exchange rate
*PaymentApi* | [**getPaymentOrderDetailById**](docs/PaymentApi.md#getPaymentOrderDetailById) | **GET** /payments/orders/{order_id} | Get pay-in order information
*PaymentApi* | [**getRefundDetailById**](docs/PaymentApi.md#getRefundDetailById) | **GET** /payments/refunds/{refund_id} | Get refund order information
*PaymentApi* | [**getRefunds**](docs/PaymentApi.md#getRefunds) | **GET** /payments/refunds | List all refund orders
*PaymentApi* | [**getSettlementById**](docs/PaymentApi.md#getSettlementById) | **GET** /payments/settlement_requests/{settlement_request_id} | Get settlement request information
*PaymentApi* | [**getSettlementInfoByIds**](docs/PaymentApi.md#getSettlementInfoByIds) | **GET** /payments/settlement_info | Get withdrawable balances
*PaymentApi* | [**listBankAccounts**](docs/PaymentApi.md#listBankAccounts) | **GET** /payments/bank_accounts | List all bank accounts
*PaymentApi* | [**listMerchants**](docs/PaymentApi.md#listMerchants) | **GET** /payments/merchants | List all merchants
*PaymentApi* | [**listPaymentOrders**](docs/PaymentApi.md#listPaymentOrders) | **GET** /payments/orders | List all pay-in orders
*PaymentApi* | [**listSettlementRequests**](docs/PaymentApi.md#listSettlementRequests) | **GET** /payments/settlement_requests | List all settlement requests
*PaymentApi* | [**updateBankAccountById**](docs/PaymentApi.md#updateBankAccountById) | **PUT** /payments/bank_accounts/{bank_account_id} | Update bank account
*PaymentApi* | [**updateMerchantById**](docs/PaymentApi.md#updateMerchantById) | **PUT** /payments/merchants/{merchant_id} | Update merchant
*PaymentApi* | [**updatePaymentOrder**](docs/PaymentApi.md#updatePaymentOrder) | **PUT** /payments/orders/{order_id} | Update pay-in order
*PrimeBrokerApi* | [**changeGuardPubkey**](docs/PrimeBrokerApi.md#changeGuardPubkey) | **PUT** /prime_broker/user/{user_id}/guard_pubkey | Change Guard pubkey binding
*PrimeBrokerApi* | [**createGuardPubkey**](docs/PrimeBrokerApi.md#createGuardPubkey) | **POST** /prime_broker/user/{user_id}/guard_pubkey | Create Guard pubkey binding
*PrimeBrokerApi* | [**createPrimeBrokerAddress**](docs/PrimeBrokerApi.md#createPrimeBrokerAddress) | **POST** /prime_broker/user/{user_id}/addresses | Bind addresses to a broker user
*PrimeBrokerApi* | [**deleteGuardPubkey**](docs/PrimeBrokerApi.md#deleteGuardPubkey) | **POST** /prime_broker/user/{user_id}/guard_pubkey/delete | Delete Guard pubkey binding
*PrimeBrokerApi* | [**queryApprovalStatement**](docs/PrimeBrokerApi.md#queryApprovalStatement) | **GET** /prime_broker/approval_statement/{statement_id} | Query approval statement
*PrimeBrokerApi* | [**queryGuardPubkey**](docs/PrimeBrokerApi.md#queryGuardPubkey) | **GET** /prime_broker/user/{user_id}/guard_pubkey | Query a Guard pubkey
*StakingsApi* | [**createBabylonAirdropRegistration**](docs/StakingsApi.md#createBabylonAirdropRegistration) | **POST** /stakings/protocols/babylon/airdrops/registrations | Register for Babylon airdrop
*StakingsApi* | [**createBabylonStakingRegistration**](docs/StakingsApi.md#createBabylonStakingRegistration) | **POST** /stakings/protocols/babylon/stakings/registrations | Register for Babylon Phase-2
*StakingsApi* | [**createClaimActivity**](docs/StakingsApi.md#createClaimActivity) | **POST** /stakings/activities/claim | Create claim activity
*StakingsApi* | [**createStakeActivity**](docs/StakingsApi.md#createStakeActivity) | **POST** /stakings/activities/stake | Create stake activity
*StakingsApi* | [**createUnstakeActivity**](docs/StakingsApi.md#createUnstakeActivity) | **POST** /stakings/activities/unstake | Create unstake activity
*StakingsApi* | [**createWithdrawActivity**](docs/StakingsApi.md#createWithdrawActivity) | **POST** /stakings/activities/withdraw | Create withdraw activity
*StakingsApi* | [**getBabylonAirdropRegistrationById**](docs/StakingsApi.md#getBabylonAirdropRegistrationById) | **GET** /stakings/protocols/babylon/airdrops/registrations/{registration_id} | Get Babylon airdrop registration details
*StakingsApi* | [**getBabylonStakingRegistrationById**](docs/StakingsApi.md#getBabylonStakingRegistrationById) | **GET** /stakings/protocols/babylon/stakings/registrations/{registration_id} | Get Babylon Phase-2 registration details
*StakingsApi* | [**getStakingActivityById**](docs/StakingsApi.md#getStakingActivityById) | **GET** /stakings/activities/{activity_id} | Get staking activity details
*StakingsApi* | [**getStakingById**](docs/StakingsApi.md#getStakingById) | **GET** /stakings/{staking_id} | Get staking position details
*StakingsApi* | [**getStakingEstimationFee**](docs/StakingsApi.md#getStakingEstimationFee) | **POST** /stakings/estimate_fee | Estimate staking fees
*StakingsApi* | [**getStakingEstimationFeeV2**](docs/StakingsApi.md#getStakingEstimationFeeV2) | **POST** /stakings/estimate_fee_v2 | Estimate staking fees v2
*StakingsApi* | [**getStakingPoolById**](docs/StakingsApi.md#getStakingPoolById) | **GET** /stakings/pools/{pool_id} | Get staking pool details
*StakingsApi* | [**listBabylonAirdropRegistrations**](docs/StakingsApi.md#listBabylonAirdropRegistrations) | **GET** /stakings/protocols/babylon/airdrops/registrations | List Babylon airdrop registrations
*StakingsApi* | [**listBabylonEligibleAirdrops**](docs/StakingsApi.md#listBabylonEligibleAirdrops) | **GET** /stakings/protocols/babylon/airdrops/eligibles | List wallets eligible for Babylon airdrop
*StakingsApi* | [**listBabylonEligibleStakings**](docs/StakingsApi.md#listBabylonEligibleStakings) | **GET** /stakings/protocols/babylon/stakings/eligibles | List staking positions eligible for Babylon Phase-2
*StakingsApi* | [**listBabylonStakingRegistrations**](docs/StakingsApi.md#listBabylonStakingRegistrations) | **GET** /stakings/protocols/babylon/stakings/registrations | List Babylon Phase-2 registrations
*StakingsApi* | [**listStakingActivities**](docs/StakingsApi.md#listStakingActivities) | **GET** /stakings/activities | List staking activities
*StakingsApi* | [**listStakingPools**](docs/StakingsApi.md#listStakingPools) | **GET** /stakings/pools | List staking pools
*StakingsApi* | [**listStakings**](docs/StakingsApi.md#listStakings) | **GET** /stakings | List staking positions
*TransactionsApi* | [**broadcastSignedTransactions**](docs/TransactionsApi.md#broadcastSignedTransactions) | **POST** /transactions/broadcast | Broadcast signed transactions
*TransactionsApi* | [**cancelTransactionById**](docs/TransactionsApi.md#cancelTransactionById) | **POST** /transactions/{transaction_id}/cancel | Cancel transaction
*TransactionsApi* | [**checkLoopTransfers**](docs/TransactionsApi.md#checkLoopTransfers) | **GET** /transactions/check_loop_transfers | Check Cobo Loop transfers
*TransactionsApi* | [**createContractCallTransaction**](docs/TransactionsApi.md#createContractCallTransaction) | **POST** /transactions/contract_call | Call smart contract
*TransactionsApi* | [**createMessageSignTransaction**](docs/TransactionsApi.md#createMessageSignTransaction) | **POST** /transactions/message_sign | Sign message
*TransactionsApi* | [**createTransferTransaction**](docs/TransactionsApi.md#createTransferTransaction) | **POST** /transactions/transfer | Transfer token
*TransactionsApi* | [**dropTransactionById**](docs/TransactionsApi.md#dropTransactionById) | **POST** /transactions/{transaction_id}/drop | Drop transaction
*TransactionsApi* | [**estimateFee**](docs/TransactionsApi.md#estimateFee) | **POST** /transactions/estimate_fee | Estimate transaction fee
*TransactionsApi* | [**getTransactionApprovalDetail**](docs/TransactionsApi.md#getTransactionApprovalDetail) | **GET** /transactions/{transaction_id}/approval_detail | Get transaction approval details
*TransactionsApi* | [**getTransactionById**](docs/TransactionsApi.md#getTransactionById) | **GET** /transactions/{transaction_id} | Get transaction information
*TransactionsApi* | [**listTransactionApprovalDetails**](docs/TransactionsApi.md#listTransactionApprovalDetails) | **GET** /transactions/approval_details | List transaction approval details
*TransactionsApi* | [**listTransactions**](docs/TransactionsApi.md#listTransactions) | **GET** /transactions | List all transactions
*TransactionsApi* | [**resendTransactionById**](docs/TransactionsApi.md#resendTransactionById) | **POST** /transactions/{transaction_id}/resend | Resend transaction
*TransactionsApi* | [**signAndBroadcastTransactionById**](docs/TransactionsApi.md#signAndBroadcastTransactionById) | **POST** /transactions/{transaction_id}/sign_and_broadcast | Sign and broadcast transaction
*TransactionsApi* | [**speedupTransactionById**](docs/TransactionsApi.md#speedupTransactionById) | **POST** /transactions/{transaction_id}/speedup | Speed up transaction
*TravelRuleApi* | [**getTransactionLimitation**](docs/TravelRuleApi.md#getTransactionLimitation) | **GET** /travel_rule/transaction/limitation | Retrieve transaction limitations
*TravelRuleApi* | [**listSupportedCountries**](docs/TravelRuleApi.md#listSupportedCountries) | **GET** /travel_rule/transaction/countries | List supported countries
*TravelRuleApi* | [**submitDepositTravelRuleInfo**](docs/TravelRuleApi.md#submitDepositTravelRuleInfo) | **POST** /travel_rule/transaction/deposit/travel_rule_info | Submit Travel Rule information for deposits
*TravelRuleApi* | [**submitWithdrawTravelRuleInfo**](docs/TravelRuleApi.md#submitWithdrawTravelRuleInfo) | **POST** /travel_rule/transaction/withdraw/travel_rule_info | Submit Travel Rule information for withdrawals
*WalletsApi* | [**checkAddressChainsValidity**](docs/WalletsApi.md#checkAddressChainsValidity) | **GET** /wallets/check_address_chains_validity | Check address validity across chains
*WalletsApi* | [**checkAddressValidity**](docs/WalletsApi.md#checkAddressValidity) | **GET** /wallets/check_address_validity | Check address validity
*WalletsApi* | [**checkAddressesValidity**](docs/WalletsApi.md#checkAddressesValidity) | **GET** /wallets/check_addresses_validity | Check addresses validity
*WalletsApi* | [**createAddress**](docs/WalletsApi.md#createAddress) | **POST** /wallets/{wallet_id}/addresses | Create addresses in wallet
*WalletsApi* | [**createTokenListingRequest**](docs/WalletsApi.md#createTokenListingRequest) | **POST** /wallets/tokens/listing_requests | Submit token listing request
*WalletsApi* | [**createWallet**](docs/WalletsApi.md#createWallet) | **POST** /wallets | Create wallet
*WalletsApi* | [**deleteWalletById**](docs/WalletsApi.md#deleteWalletById) | **POST** /wallets/{wallet_id}/delete | Delete wallet
*WalletsApi* | [**getChainById**](docs/WalletsApi.md#getChainById) | **GET** /wallets/chains/{chain_id} | Get chain information
*WalletsApi* | [**getMaxTransferableValue**](docs/WalletsApi.md#getMaxTransferableValue) | **GET** /wallets/{wallet_id}/max_transferable_value | Get maximum transferable value
*WalletsApi* | [**getTokenById**](docs/WalletsApi.md#getTokenById) | **GET** /wallets/tokens/{token_id} | Get token information
*WalletsApi* | [**getTokenListingRequestByRequestId**](docs/WalletsApi.md#getTokenListingRequestByRequestId) | **GET** /wallets/tokens/listing_requests/{request_id} | Get token listing request details
*WalletsApi* | [**getWalletById**](docs/WalletsApi.md#getWalletById) | **GET** /wallets/{wallet_id} | Get wallet information
*WalletsApi* | [**listAddressBalancesByToken**](docs/WalletsApi.md#listAddressBalancesByToken) | **GET** /wallets/{wallet_id}/tokens/{token_id} | List address balances by token
*WalletsApi* | [**listAddresses**](docs/WalletsApi.md#listAddresses) | **GET** /wallets/{wallet_id}/addresses | List wallet addresses
*WalletsApi* | [**listEnabledChains**](docs/WalletsApi.md#listEnabledChains) | **GET** /wallets/enabled_chains | List enabled chains
*WalletsApi* | [**listEnabledTokens**](docs/WalletsApi.md#listEnabledTokens) | **GET** /wallets/enabled_tokens | List enabled tokens
*WalletsApi* | [**listSupportedChains**](docs/WalletsApi.md#listSupportedChains) | **GET** /wallets/chains | List supported chains
*WalletsApi* | [**listSupportedTokens**](docs/WalletsApi.md#listSupportedTokens) | **GET** /wallets/tokens | List supported tokens
*WalletsApi* | [**listTokenBalancesForAddress**](docs/WalletsApi.md#listTokenBalancesForAddress) | **GET** /wallets/{wallet_id}/addresses/{address}/tokens | List token balances by address
*WalletsApi* | [**listTokenBalancesForWallet**](docs/WalletsApi.md#listTokenBalancesForWallet) | **GET** /wallets/{wallet_id}/tokens | List token balances by wallet
*WalletsApi* | [**listTokenListingRequests**](docs/WalletsApi.md#listTokenListingRequests) | **GET** /wallets/tokens/listing_requests | Get all token listing requests
*WalletsApi* | [**listUtxos**](docs/WalletsApi.md#listUtxos) | **GET** /wallets/{wallet_id}/utxos | List UTXOs
*WalletsApi* | [**listWallets**](docs/WalletsApi.md#listWallets) | **GET** /wallets | List all wallets
*WalletsApi* | [**lockUtxos**](docs/WalletsApi.md#lockUtxos) | **POST** /wallets/{wallet_id}/utxos/lock | Lock UTXOs
*WalletsApi* | [**refreshAddressBalancesByToken**](docs/WalletsApi.md#refreshAddressBalancesByToken) | **PUT** /wallets/{wallet_id}/tokens/{token_id}/refresh_address_balances | Refresh address balances by token
*WalletsApi* | [**unlockUtxos**](docs/WalletsApi.md#unlockUtxos) | **POST** /wallets/{wallet_id}/utxos/unlock | Unlock UTXOs
*WalletsApi* | [**updateWalletById**](docs/WalletsApi.md#updateWalletById) | **PUT** /wallets/{wallet_id} | Update wallet
*WalletsExchangeWalletApi* | [**listAssetBalancesForExchangeWallet**](docs/WalletsExchangeWalletApi.md#listAssetBalancesForExchangeWallet) | **GET** /wallets/{wallet_id}/exchanges/assets | List asset balances
*WalletsExchangeWalletApi* | [**listExchanges**](docs/WalletsExchangeWalletApi.md#listExchanges) | **GET** /wallets/exchanges | List supported exchanges
*WalletsExchangeWalletApi* | [**listSupportedAssetsForExchange**](docs/WalletsExchangeWalletApi.md#listSupportedAssetsForExchange) | **GET** /wallets/exchanges/{exchange_id}/assets | List supported assets
*WalletsExchangeWalletApi* | [**listSupportedChainsForExchange**](docs/WalletsExchangeWalletApi.md#listSupportedChainsForExchange) | **GET** /wallets/exchanges/{exchange_id}/assets/{asset_id}/chains | List supported chains
*WalletsMpcWalletsApi* | [**cancelTssRequestById**](docs/WalletsMpcWalletsApi.md#cancelTssRequestById) | **POST** /wallets/mpc/vaults/{vault_id}/tss_requests/{tss_request_id}/cancel | Cancel TSS request
*WalletsMpcWalletsApi* | [**createKeyShareHolderGroup**](docs/WalletsMpcWalletsApi.md#createKeyShareHolderGroup) | **POST** /wallets/mpc/vaults/{vault_id}/key_share_holder_groups | Create key share holder group
*WalletsMpcWalletsApi* | [**createMpcProject**](docs/WalletsMpcWalletsApi.md#createMpcProject) | **POST** /wallets/mpc/projects | Create project
*WalletsMpcWalletsApi* | [**createMpcVault**](docs/WalletsMpcWalletsApi.md#createMpcVault) | **POST** /wallets/mpc/vaults | Create vault
*WalletsMpcWalletsApi* | [**createTssRequest**](docs/WalletsMpcWalletsApi.md#createTssRequest) | **POST** /wallets/mpc/vaults/{vault_id}/tss_requests | Create TSS request
*WalletsMpcWalletsApi* | [**deleteKeyShareHolderGroupById**](docs/WalletsMpcWalletsApi.md#deleteKeyShareHolderGroupById) | **POST** /wallets/mpc/vaults/{vault_id}/key_share_holder_groups/{key_share_holder_group_id}/delete | Delete key share holder group
*WalletsMpcWalletsApi* | [**getKeyShareHolderByTssNodeId**](docs/WalletsMpcWalletsApi.md#getKeyShareHolderByTssNodeId) | **GET** /wallets/mpc/vaults/{vault_id}/key_share_holders/{tss_node_id} | Get key share holder information
*WalletsMpcWalletsApi* | [**getKeyShareHolderGroupById**](docs/WalletsMpcWalletsApi.md#getKeyShareHolderGroupById) | **GET** /wallets/mpc/vaults/{vault_id}/key_share_holder_groups/{key_share_holder_group_id} | Get key share holder group information
*WalletsMpcWalletsApi* | [**getMpcProjectById**](docs/WalletsMpcWalletsApi.md#getMpcProjectById) | **GET** /wallets/mpc/projects/{project_id} | Get project information
*WalletsMpcWalletsApi* | [**getMpcVaultById**](docs/WalletsMpcWalletsApi.md#getMpcVaultById) | **GET** /wallets/mpc/vaults/{vault_id} | Get vault information
*WalletsMpcWalletsApi* | [**getTssRequestById**](docs/WalletsMpcWalletsApi.md#getTssRequestById) | **GET** /wallets/mpc/vaults/{vault_id}/tss_requests/{tss_request_id} | Get TSS request
*WalletsMpcWalletsApi* | [**listCoboKeyHolders**](docs/WalletsMpcWalletsApi.md#listCoboKeyHolders) | **GET** /wallets/mpc/cobo_key_share_holders | List all Cobo key share holders
*WalletsMpcWalletsApi* | [**listKeyShareHolderGroups**](docs/WalletsMpcWalletsApi.md#listKeyShareHolderGroups) | **GET** /wallets/mpc/vaults/{vault_id}/key_share_holder_groups | List all key share holder groups
*WalletsMpcWalletsApi* | [**listKeyShareHolders**](docs/WalletsMpcWalletsApi.md#listKeyShareHolders) | **GET** /wallets/mpc/vaults/{vault_id}/key_share_holders | List all key share holders
*WalletsMpcWalletsApi* | [**listMpcProjects**](docs/WalletsMpcWalletsApi.md#listMpcProjects) | **GET** /wallets/mpc/projects | List all projects
*WalletsMpcWalletsApi* | [**listMpcVaults**](docs/WalletsMpcWalletsApi.md#listMpcVaults) | **GET** /wallets/mpc/vaults | List all vaults
*WalletsMpcWalletsApi* | [**listTssRequests**](docs/WalletsMpcWalletsApi.md#listTssRequests) | **GET** /wallets/mpc/vaults/{vault_id}/tss_requests | List TSS requests
*WalletsMpcWalletsApi* | [**updateKeyShareHolderGroupById**](docs/WalletsMpcWalletsApi.md#updateKeyShareHolderGroupById) | **PUT** /wallets/mpc/vaults/{vault_id}/key_share_holder_groups/{key_share_holder_group_id} | Update key share holder group
*WalletsMpcWalletsApi* | [**updateMpcProjectById**](docs/WalletsMpcWalletsApi.md#updateMpcProjectById) | **PUT** /wallets/mpc/projects/{project_id} | Update project name
*WalletsMpcWalletsApi* | [**updateMpcVaultById**](docs/WalletsMpcWalletsApi.md#updateMpcVaultById) | **PUT** /wallets/mpc/vaults/{vault_id} | Update vault name
*WalletsSmartContractWalletsApi* | [**listSafeWalletDelegates**](docs/WalletsSmartContractWalletsApi.md#listSafeWalletDelegates) | **POST** /wallets/{wallet_id}/smart_contracts/delegates | List Delegates## Documentation for Models
- [Activity](docs/Activity.md)
- [ActivityAction](docs/ActivityAction.md)
- [ActivityExtra](docs/ActivityExtra.md)
- [ActivityInitiator](docs/ActivityInitiator.md)
- [ActivityStatus](docs/ActivityStatus.md)
- [ActivityTimeline](docs/ActivityTimeline.md)
- [ActivityType](docs/ActivityType.md)
- [AddressBalance](docs/AddressBalance.md)
- [AddressBook](docs/AddressBook.md)
- [AddressEncoding](docs/AddressEncoding.md)
- [AddressInfo](docs/AddressInfo.md)
- [AddressTransferDestination](docs/AddressTransferDestination.md)
- [AddressTransferDestinationAccountOutput](docs/AddressTransferDestinationAccountOutput.md)
- [AddressTransferDestinationUtxoOutputsInner](docs/AddressTransferDestinationUtxoOutputsInner.md)
- [AddressesEventData](docs/AddressesEventData.md)
- [AddressesEventDataAllOfAddresses](docs/AddressesEventDataAllOfAddresses.md)
- [AmountDetailsInner](docs/AmountDetailsInner.md)
- [AmountStatus](docs/AmountStatus.md)
- [ApiLogDetails](docs/ApiLogDetails.md)
- [ApiLogSummary](docs/ApiLogSummary.md)
- [ApprovalStatementStatus](docs/ApprovalStatementStatus.md)
- [AssetBalance](docs/AssetBalance.md)
- [AssetInfo](docs/AssetInfo.md)
- [AutoFuelType](docs/AutoFuelType.md)
- [BTCBIP137MessageSignDestination](docs/BTCBIP137MessageSignDestination.md)
- [BTCBIP322MessageSignDestination](docs/BTCBIP322MessageSignDestination.md)
- [BTCEIP191MessageSignDestination](docs/BTCEIP191MessageSignDestination.md)
- [BabylonAirdropPop](docs/BabylonAirdropPop.md)
- [BabylonAirdropRegistration](docs/BabylonAirdropRegistration.md)
- [BabylonEligibleAirdrop](docs/BabylonEligibleAirdrop.md)
- [BabylonRegistrationRequestStatus](docs/BabylonRegistrationRequestStatus.md)
- [BabylonRegistrationStatus](docs/BabylonRegistrationStatus.md)
- [BabylonStakeEstimatedFee](docs/BabylonStakeEstimatedFee.md)
- [BabylonStakeExtra](docs/BabylonStakeExtra.md)
- [BabylonStakingActivityDetailExtra](docs/BabylonStakingActivityDetailExtra.md)
- [BabylonStakingExtra](docs/BabylonStakingExtra.md)
- [BabylonStakingRegistration](docs/BabylonStakingRegistration.md)
- [BabylonValidator](docs/BabylonValidator.md)
- [Balance](docs/Balance.md)
- [BankAccount](docs/BankAccount.md)
- [BaseContractCallSource](docs/BaseContractCallSource.md)
- [BaseEstimateStakingFee](docs/BaseEstimateStakingFee.md)
- [BaseStakeExtra](docs/BaseStakeExtra.md)
- [BaseStakeSource](docs/BaseStakeSource.md)
- [BroadcastSignedTransactions201ResponseInner](docs/BroadcastSignedTransactions201ResponseInner.md)
- [BroadcastSignedTransactionsRequest](docs/BroadcastSignedTransactionsRequest.md)
- [CallbackMessage](docs/CallbackMessage.md)
- [ChainInfo](docs/ChainInfo.md)
- [ChainsEventData](docs/ChainsEventData.md)
- [ChangeGuardPubkey200Response](docs/ChangeGuardPubkey200Response.md)
- [CheckAddressChainsValidity200ResponseInner](docs/CheckAddressChainsValidity200ResponseInner.md)
- [CheckAddressValidity200Response](docs/CheckAddressValidity200Response.md)
- [CheckAddressesValidity200ResponseInner](docs/CheckAddressesValidity200ResponseInner.md)
- [CheckLoopTransfers200ResponseInner](docs/CheckLoopTransfers200ResponseInner.md)
- [CoboSafeDelegate](docs/CoboSafeDelegate.md)
- [CoboSafeDelegateType](docs/CoboSafeDelegateType.md)
- [ContractCallDestination](docs/ContractCallDestination.md)
- [ContractCallDestinationType](docs/ContractCallDestinationType.md)
- [ContractCallParams](docs/ContractCallParams.md)
- [ContractCallSource](docs/ContractCallSource.md)
- [ContractCallSourceType](docs/ContractCallSourceType.md)
- [CoreStakeExtra](docs/CoreStakeExtra.md)
- [CoreStakingActivityDetailExtra](docs/CoreStakingActivityDetailExtra.md)
- [CoreStakingExtra](docs/CoreStakingExtra.md)
- [CosmosAdr36MessageSignDestination](docs/CosmosAdr36MessageSignDestination.md)
- [CosmosContractCallDestination](docs/CosmosContractCallDestination.md)
- [CosmosContractCallMessage](docs/CosmosContractCallMessage.md)
- [CreateAddressRequest](docs/CreateAddressRequest.md)
- [CreateBabylonAirdropRegistration201Response](docs/CreateBabylonAirdropRegistration201Response.md)
- [CreateBabylonAirdropRegistrationRequest](docs/CreateBabylonAirdropRegistrationRequest.md)
- [CreateBabylonStakingRegistration201Response](docs/CreateBabylonStakingRegistration201Response.md)
- [CreateBabylonStakingRegistrationRequest](docs/CreateBabylonStakingRegistrationRequest.md)
- [CreateBankAccountRequest](docs/CreateBankAccountRequest.md)
- [CreateClaimActivity](docs/CreateClaimActivity.md)
- [CreateClaimActivityRequest](docs/CreateClaimActivityRequest.md)
- [CreateCustodialWalletParams](docs/CreateCustodialWalletParams.md)
- [CreateExchangeWalletParams](docs/CreateExchangeWalletParams.md)
- [CreateKeyShareHolder](docs/CreateKeyShareHolder.md)
- [CreateKeyShareHolderGroupRequest](docs/CreateKeyShareHolderGroupRequest.md)
- [CreateMerchantRequest](docs/CreateMerchantRequest.md)
- [CreateMpcProjectRequest](docs/CreateMpcProjectRequest.md)
- [CreateMpcVaultRequest](docs/CreateMpcVaultRequest.md)
- [CreateMpcWalletParams](docs/CreateMpcWalletParams.md)
- [CreatePaymentOrderRequest](docs/CreatePaymentOrderRequest.md)
- [CreatePrimeBrokerAddress201Response](docs/CreatePrimeBrokerAddress201Response.md)
- [CreatePrimeBrokerAddressRequest](docs/CreatePrimeBrokerAddressRequest.md)
- [CreateRefundRequest](docs/CreateRefundRequest.md)
- [CreateSafeWalletParams](docs/CreateSafeWalletParams.md)
- [CreateSettlement](docs/CreateSettlement.md)
- [CreateSettlementRequestRequest](docs/CreateSettlementRequestRequest.md)
- [CreateSmartContractWalletParams](docs/CreateSmartContractWalletParams.md)
- [CreateStakeActivity](docs/CreateStakeActivity.md)
- [CreateStakeActivity201Response](docs/CreateStakeActivity201Response.md)
- [CreateStakeActivityExtra](docs/CreateStakeActivityExtra.md)
- [CreateStakeActivityRequest](docs/CreateStakeActivityRequest.md)
- [CreateTokenListingRequest201Response](docs/CreateTokenListingRequest201Response.md)
- [CreateTokenListingRequestRequest](docs/CreateTokenListingRequestRequest.md)
- [CreateTransferTransaction201Response](docs/CreateTransferTransaction201Response.md)
- [CreateTssRequestRequest](docs/CreateTssRequestRequest.md)
- [CreateUnstakeActivity](docs/CreateUnstakeActivity.md)
- [CreateUnstakeActivityExtra](docs/CreateUnstakeActivityExtra.md)
- [CreateUnstakeActivityRequest](docs/CreateUnstakeActivityRequest.md)
- [CreateWalletParams](docs/CreateWalletParams.md)
- [CreateWebhookEndpointRequest](docs/CreateWebhookEndpointRequest.md)
- [CreateWithdrawActivity](docs/CreateWithdrawActivity.md)
- [CreateWithdrawActivityRequest](docs/CreateWithdrawActivityRequest.md)
- [CreatedWalletInfo](docs/CreatedWalletInfo.md)
- [CurveType](docs/CurveType.md)
- [CustodialTransferSource](docs/CustodialTransferSource.md)
- [CustodialWalletInfo](docs/CustodialWalletInfo.md)
- [CustodialWeb3ContractCallSource](docs/CustodialWeb3ContractCallSource.md)
- [CustodialWeb3MessageSignSource](docs/CustodialWeb3MessageSignSource.md)
- [CustodialWeb3TransferSource](docs/CustodialWeb3TransferSource.md)
- [DeleteGuardPubkey201Response](docs/DeleteGuardPubkey201Response.md)
- [DeleteKeyShareHolderGroupById201Response](docs/DeleteKeyShareHolderGroupById201Response.md)
- [DeleteWalletById201Response](docs/DeleteWalletById201Response.md)
- [DestinationWalletType](docs/DestinationWalletType.md)
- [EigenLayerLstStakeExtra](docs/EigenLayerLstStakeExtra.md)
- [EigenLayerNativeStakeExtra](docs/EigenLayerNativeStakeExtra.md)
- [EigenlayerValidator](docs/EigenlayerValidator.md)
- [ErrorResponse](docs/ErrorResponse.md)
- [EstimateClaimFee](docs/EstimateClaimFee.md)
- [EstimateContractCallFeeParams](docs/EstimateContractCallFeeParams.md)
- [EstimateFeeParams](docs/EstimateFeeParams.md)
- [EstimateFeeRequestType](docs/EstimateFeeRequestType.md)
- [EstimateStakeFee](docs/EstimateStakeFee.md)
- [EstimateTransferFeeParams](docs/EstimateTransferFeeParams.md)
- [EstimateUnstakeFee](docs/EstimateUnstakeFee.md)
- [EstimateWithdrawFee](docs/EstimateWithdrawFee.md)
- [EstimatedEvmEip1559Fee](docs/EstimatedEvmEip1559Fee.md)
- [EstimatedEvmEip1559FeeSlow](docs/EstimatedEvmEip1559FeeSlow.md)
- [EstimatedEvmLegacyFee](docs/EstimatedEvmLegacyFee.md)
- [EstimatedEvmLegacyFeeSlow](docs/EstimatedEvmLegacyFeeSlow.md)
- [EstimatedFee](docs/EstimatedFee.md)
- [EstimatedFixedFee](docs/EstimatedFixedFee.md)
- [EstimatedUtxoFee](docs/EstimatedUtxoFee.md)
- [EstimatedUtxoFeeSlow](docs/EstimatedUtxoFeeSlow.md)
- [EthStakeEstimatedFee](docs/EthStakeEstimatedFee.md)
- [EthStakeExtra](docs/EthStakeExtra.md)
- [EthStakingActivityDetailExtra](docs/EthStakingActivityDetailExtra.md)
- [EthStakingExtra](docs/EthStakingExtra.md)
- [EthStakingExtraAllOfBeaconValidators](docs/EthStakingExtraAllOfBeaconValidators.md)
- [EthUnstakeExtra](docs/EthUnstakeExtra.md)
- [EvmContractCallDestination](docs/EvmContractCallDestination.md)
- [EvmEIP191MessageSignDestination](docs/EvmEIP191MessageSignDestination.md)
- [EvmEIP712MessageSignDestination](docs/EvmEIP712MessageSignDestination.md)
- [EvmEip1559FeeBasePrice](docs/EvmEip1559FeeBasePrice.md)
- [EvmEip1559FeeRate](docs/EvmEip1559FeeRate.md)
- [EvmLegacyFeeBasePrice](docs/EvmLegacyFeeBasePrice.md)
- [EvmLegacyFeeRate](docs/EvmLegacyFeeRate.md)
- [ExchangeId](docs/ExchangeId.md)
- [ExchangeTransferDestination](docs/ExchangeTransferDestination.md)
- [ExchangeTransferSource](docs/ExchangeTransferSource.md)
- [ExchangeWalletInfo](docs/ExchangeWalletInfo.md)
- [ExtendedTokenInfo](docs/ExtendedTokenInfo.md)
- [FeeAmount](docs/FeeAmount.md)
- [FeeGasLimit](docs/FeeGasLimit.md)
- [FeeRate](docs/FeeRate.md)
- [FeeReserved](docs/FeeReserved.md)
- [FeeStationDestination](docs/FeeStationDestination.md)
- [FeeStationTransactionType](docs/FeeStationTransactionType.md)
- [FeeStationTransfer](docs/FeeStationTransfer.md)
- [FeeType](docs/FeeType.md)
- [FixedFeeRate](docs/FixedFeeRate.md)
- [GetApiKeyInfo200Response](docs/GetApiKeyInfo200Response.md)
- [GetExchangeRate200Response](docs/GetExchangeRate200Response.md)
- [GetRefunds200Response](docs/GetRefunds200Response.md)
- [GetSettlementInfoByIds200Response](docs/GetSettlementInfoByIds200Response.md)
- [GetStakingEstimationFee201Response](docs/GetStakingEstimationFee201Response.md)
- [GetStakingEstimationFeeRequest](docs/GetStakingEstimationFeeRequest.md)
- [GetToken2XXResponse](docs/GetToken2XXResponse.md)
- [GetToken4XXResponse](docs/GetToken4XXResponse.md)
- [GetTransactionLimitation200Response](docs/GetTransactionLimitation200Response.md)
- [GuardPubkeyStatus](docs/GuardPubkeyStatus.md)
- [KeyShareHolder](docs/KeyShareHolder.md)
- [KeyShareHolderGroup](docs/KeyShareHolderGroup.md)
- [KeyShareHolderGroupStatus](docs/KeyShareHolderGroupStatus.md)
- [KeyShareHolderGroupType](docs/KeyShareHolderGroupType.md)
- [KeyShareHolderStatus](docs/KeyShareHolderStatus.md)
- [KeyShareHolderType](docs/KeyShareHolderType.md)
- [ListAddressBalancesByToken200Response](docs/ListAddressBalancesByToken200Response.md)
- [ListAddressBooks200Response](docs/ListAddressBooks200Response.md)
- [ListAddresses200Response](docs/ListAddresses200Response.md)
- [ListAssetBalancesForExchangeWallet200Response](docs/ListAssetBalancesForExchangeWallet200Response.md)
- [ListBabylonAirdropRegistrations200Response](docs/ListBabylonAirdropRegistrations200Response.md)
- [ListBabylonEligibleAirdrops200Response](docs/ListBabylonEligibleAirdrops200Response.md)
- [ListBabylonEligibleStakings200Response](docs/ListBabylonEligibleStakings200Response.md)
- [ListBabylonEligibleStakings200ResponseDataInner](docs/ListBabylonEligibleStakings200ResponseDataInner.md)
- [ListBabylonStakingRegistrations200Response](docs/ListBabylonStakingRegistrations200Response.md)
- [ListCallbackMessages200Response](docs/ListCallbackMessages200Response.md)
- [ListExchanges200ResponseInner](docs/ListExchanges200ResponseInner.md)
- [ListKeyShareHolderGroups200Response](docs/ListKeyShareHolderGroups200Response.md)
- [ListKeyShareHolders200Response](docs/ListKeyShareHolders200Response.md)
- [ListMerchants200Response](docs/ListMerchants200Response.md)
- [ListMpcProjects200Response](docs/ListMpcProjects200Response.md)
- [ListMpcVaults200Response](docs/ListMpcVaults200Response.md)
- [ListPaymentOrders200Response](docs/ListPaymentOrders200Response.md)
- [ListSettlementRequests200Response](docs/ListSettlementRequests200Response.md)
- [ListStakingActivities200Response](docs/ListStakingActivities200Response.md)
- [ListStakingPools200Response](docs/ListStakingPools200Response.md)
- [ListStakings200Response](docs/ListStakings200Response.md)
- [ListSupportedAssetsForExchange200Response](docs/ListSupportedAssetsForExchange200Response.md)
- [ListSupportedChains200Response](docs/ListSupportedChains200Response.md)
- [ListSupportedCountries200ResponseInner](docs/ListSupportedCountries200ResponseInner.md)
- [ListSupportedTokens200Response](docs/ListSupportedTokens200Response.md)
- [ListTokenBalancesForAddress200Response](docs/ListTokenBalancesForAddress200Response.md)
- [ListTokenBalancesForFeeStation200Response](docs/ListTokenBalancesForFeeStation200Response.md)
- [ListTokenBalancesForFeeStation200ResponseDataInner](docs/ListTokenBalancesForFeeStation200ResponseDataInner.md)
- [ListTokenListingRequests200Response](docs/ListTokenListingRequests200Response.md)
- [ListTransactionApprovalDetails200Response](docs/ListTransactionApprovalDetails200Response.md)
- [ListTransactions200Response](docs/ListTransactions200Response.md)
- [ListTssRequests200Response](docs/ListTssRequests200Response.md)
- [ListUtxos200Response](docs/ListUtxos200Response.md)
- [ListWallets200Response](docs/ListWallets200Response.md)
- [ListWebhookEndpoints200Response](docs/ListWebhookEndpoints200Response.md)
- [ListWebhookEventDefinitions200ResponseInner](docs/ListWebhookEventDefinitions200ResponseInner.md)
- [ListWebhookEventLogs200Response](docs/ListWebhookEventLogs200Response.md)
- [ListWebhookEvents200Response](docs/ListWebhookEvents200Response.md)
- [LockUtxos201Response](docs/LockUtxos201Response.md)
- [LockUtxosRequest](docs/LockUtxosRequest.md)
- [LockUtxosRequestUtxosInner](docs/LockUtxosRequestUtxosInner.md)
- [MPCDelegate](docs/MPCDelegate.md)
- [MPCProject](docs/MPCProject.md)
- [MPCVault](docs/MPCVault.md)
- [MPCVaultEventData](docs/MPCVaultEventData.md)
- [MPCVaultType](docs/MPCVaultType.md)
- [MPCWalletInfo](docs/MPCWalletInfo.md)
- [MaxFeeAmount](docs/MaxFeeAmount.md)
- [MaxTransferableValue](docs/MaxTransferableValue.md)
- [Merchant](docs/Merchant.md)
- [MessageSignDestination](docs/MessageSignDestination.md)
- [MessageSignDestinationType](docs/MessageSignDestinationType.md)
- [MessageSignParams](docs/MessageSignParams.md)
- [MessageSignSource](docs/MessageSignSource.md)
- [MessageSignSourceType](docs/MessageSignSourceType.md)
- [MpcContractCallSource](docs/MpcContractCallSource.md)
- [MpcMessageSignSource](docs/MpcMessageSignSource.md)
- [MpcSigningGroup](docs/MpcSigningGroup.md)
- [MpcStakeSource](docs/MpcStakeSource.md)
- [MpcTransferSource](docs/MpcTransferSource.md)
- [Order](docs/Order.md)
- [OrderStatus](docs/OrderStatus.md)
- [OrgInfo](docs/OrgInfo.md)
- [Pagination](docs/Pagination.md)
- [PaymentOrderEventData](docs/PaymentOrderEventData.md)
- [PaymentRefundEventData](docs/PaymentRefundEventData.md)
- [PaymentSettlementEvent](docs/PaymentSettlementEvent.md)
- [PaymentTransaction](docs/PaymentTransaction.md)
- [PoolDetails](docs/PoolDetails.md)
- [PoolDetailsAllOfValidatorsInfo](docs/PoolDetailsAllOfValidatorsInfo.md)
- [PoolSummary](docs/PoolSummary.md)
- [QueryApprovalStatement200Response](docs/QueryApprovalStatement200Response.md)
- [QueryGuardPubkey200Response](docs/QueryGuardPubkey200Response.md)
- [QueryGuardPubkey200ResponseAddressesInner](docs/QueryGuardPubkey200ResponseAddressesInner.md)
- [RawMessageSignDestination](docs/RawMessageSignDestination.md)
- [RefreshAddressBalancesByToken200Response](docs/RefreshAddressBalancesByToken200Response.md)
- [RefreshAddressBalancesByTokenRequest](docs/RefreshAddressBalancesByTokenRequest.md)
- [RefreshToken2XXResponse](docs/RefreshToken2XXResponse.md)
- [RefreshTokenRequest](docs/RefreshTokenRequest.md)
- [Refund](docs/Refund.md)
- [RefundStatus](docs/RefundStatus.md)
- [RefundType](docs/RefundType.md)
- [ReplaceType](docs/ReplaceType.md)
- [RetryCallbackMessage201Response](docs/RetryCallbackMessage201Response.md)
- [RetryWebhookEventById201Response](docs/RetryWebhookEventById201Response.md)
- [RoleScopes](docs/RoleScopes.md)
- [RootPubkey](docs/RootPubkey.md)
- [SafeContractCallSource](docs/SafeContractCallSource.md)
- [SafeTransferSource](docs/SafeTransferSource.md)
- [SafeTxDecodedData](docs/SafeTxDecodedData.md)
- [SafeTxDecodedDataParameters](docs/SafeTxDecodedDataParameters.md)
- [SafeTxExtraData](docs/SafeTxExtraData.md)
- [SafeTxSubTransaction](docs/SafeTxSubTransaction.md)
- [SafeWallet](docs/SafeWallet.md)
- [SafeWalletDelegates](docs/SafeWalletDelegates.md)
- [SafeWalletDelegatesContractCall](docs/SafeWalletDelegatesContractCall.md)
- [SafeWalletDelegatesTransfer](docs/SafeWalletDelegatesTransfer.md)
- [Scopes](docs/Scopes.md)
- [SelectedEntityType](docs/SelectedEntityType.md)
- [SelfCustodyWallet](docs/SelfCustodyWallet.md)
- [SettleRequestStatus](docs/SettleRequestStatus.md)
- [SettleStatus](docs/SettleStatus.md)
- [Settlement](docs/Settlement.md)
- [SettlementDetail](docs/SettlementDetail.md)
- [SettlementInfo](docs/SettlementInfo.md)
- [SettlementType](docs/SettlementType.md)
- [SmartContractInitiator](docs/SmartContractInitiator.md)
- [SmartContractWalletInfo](docs/SmartContractWalletInfo.md)
- [SmartContractWalletOperationType](docs/SmartContractWalletOperationType.md)
- [SmartContractWalletType](docs/SmartContractWalletType.md)
- [SolContractCallAccount](docs/SolContractCallAccount.md)
- [SolContractCallDestination](docs/SolContractCallDestination.md)
- [SolContractCallInstruction](docs/SolContractCallInstruction.md)
- [SourceGroup](docs/SourceGroup.md)
- [StakeSourceType](docs/StakeSourceType.md)
- [StakingPoolId](docs/StakingPoolId.md)
- [StakingPoolType](docs/StakingPoolType.md)
- [StakingSource](docs/StakingSource.md)
- [Stakings](docs/Stakings.md)
- [StakingsExtra](docs/StakingsExtra.md)
- [SubWalletAssetBalance](docs/SubWalletAssetBalance.md)
- [SubmitDepositTravelRuleInfo201Response](docs/SubmitDepositTravelRuleInfo201Response.md)
- [SwapActivity](docs/SwapActivity.md)
- [SwapActivityDetail](docs/SwapActivityDetail.md)
- [SwapActivityStatus](docs/SwapActivityStatus.md)
- [SwapActivityTimeline](docs/SwapActivityTimeline.md)
- [SwapQuote](docs/SwapQuote.md)
- [SwapToken](docs/SwapToken.md)
- [SwapType](docs/SwapType.md)
- [TSSGroups](docs/TSSGroups.md)
- [TSSRequest](docs/TSSRequest.md)
- [TSSRequestStatus](docs/TSSRequestStatus.md)
- [TSSRequestType](docs/TSSRequestType.md)
- [TSSRequestWebhookEventData](docs/TSSRequestWebhookEventData.md)
- [TokenAssetModelType](docs/TokenAssetModelType.md)
- [TokenBalance](docs/TokenBalance.md)
- [TokenInfo](docs/TokenInfo.md)
- [TokenListing](docs/TokenListing.md)
- [TokenListingEventData](docs/TokenListingEventData.md)
- [TokenListingRequestSource](docs/TokenListingRequestSource.md)
- [TokenListingRequestStatus](docs/TokenListingRequestStatus.md)
- [TokensEventData](docs/TokensEventData.md)
- [Transaction](docs/Transaction.md)
- [TransactionApprovalDetail](docs/TransactionApprovalDetail.md)
- [TransactionApprovalResult](docs/TransactionApprovalResult.md)
- [TransactionApprover](docs/TransactionApprover.md)
- [TransactionBIP137Destination](docs/TransactionBIP137Destination.md)
- [TransactionBIP322Destination](docs/TransactionBIP322Destination.md)
- [TransactionBabylonBusinessInfo](docs/TransactionBabylonBusinessInfo.md)
- [TransactionBabylonTxParameters](docs/TransactionBabylonTxParameters.md)
- [TransactionBlockInfo](docs/TransactionBlockInfo.md)
- [TransactionCoboCategory](docs/TransactionCoboCategory.md)
- [TransactionCoreStakeInfo](docs/TransactionCoreStakeInfo.md)
- [TransactionCosmosAdr36Destination](docs/TransactionCosmosAdr36Destination.md)
- [TransactionCosmosContractDestination](docs/TransactionCosmosContractDestination.md)
- [TransactionCosmosMessage](docs/TransactionCosmosMessage.md)
- [TransactionCustodialAssetWalletSource](docs/TransactionCustodialAssetWalletSource.md)
- [TransactionCustodialWeb3WalletSource](docs/TransactionCustodialWeb3WalletSource.md)
- [TransactionDepositFromAddressSource](docs/TransactionDepositFromAddressSource.md)
- [TransactionDepositFromLoopSource](docs/TransactionDepositFromLoopSource.md)
- [TransactionDepositFromWalletSource](docs/TransactionDepositFromWalletSource.md)
- [TransactionDepositToAddressDestination](docs/TransactionDepositToAddressDestination.md)
- [TransactionDepositToAddressDestinationTxInfo](docs/TransactionDepositToAddressDestinationTxInfo.md)
- [TransactionDepositToWalletDestination](docs/TransactionDepositToWalletDestination.md)
- [TransactionDestination](docs/TransactionDestination.md)
- [TransactionDestinationType](docs/TransactionDestinationType.md)
- [TransactionDetail](docs/TransactionDetail.md)
- [TransactionDetails](docs/TransactionDetails.md)
- [TransactionEvmCalldataInfo](docs/TransactionEvmCalldataInfo.md)
- [TransactionEvmContractDestination](docs/TransactionEvmContractDestination.md)
- [TransactionEvmContractMethod](docs/TransactionEvmContractMethod.md)
- [TransactionEvmEip1559Fee](docs/TransactionEvmEip1559Fee.md)
- [TransactionEvmLegacyFee](docs/TransactionEvmLegacyFee.md)
- [TransactionExchangeWalletSource](docs/TransactionExchangeWalletSource.md)
- [TransactionExtra](docs/TransactionExtra.md)
- [TransactionExtraType](docs/TransactionExtraType.md)
- [TransactionFee](docs/TransactionFee.md)
- [TransactionFeeStationWalletSource](docs/TransactionFeeStationWalletSource.md)
- [TransactionFixedFee](docs/TransactionFixedFee.md)
- [TransactionFuelingInfo](docs/TransactionFuelingInfo.md)
- [TransactionInitiatorType](docs/TransactionInitiatorType.md)
- [TransactionMPCWalletSource](docs/TransactionMPCWalletSource.md)
- [TransactionMessageSignBTCEIP191Destination](docs/TransactionMessageSignBTCEIP191Destination.md)
- [TransactionMessageSignEIP191Destination](docs/TransactionMessageSignEIP191Destination.md)
- [TransactionMessageSignEIP712Destination](docs/TransactionMessageSignEIP712Destination.md)
- [TransactionProcessType](docs/TransactionProcessType.md)
- [TransactionRawMessageSignDestination](docs/TransactionRawMessageSignDestination.md)
- [TransactionRawTxInfo](docs/TransactionRawTxInfo.md)
- [TransactionRbf](docs/TransactionRbf.md)
- [TransactionRbfSource](docs/TransactionRbfSource.md)
- [TransactionReplacement](docs/TransactionReplacement.md)
- [TransactionRequestEvmEip1559Fee](docs/TransactionRequestEvmEip1559Fee.md)
- [TransactionRequestEvmLegacyFee](docs/TransactionRequestEvmLegacyFee.md)
- [TransactionRequestFee](docs/TransactionRequestFee.md)
- [TransactionRequestFixedFee](docs/TransactionRequestFixedFee.md)
- [TransactionRequestUtxoFee](docs/TransactionRequestUtxoFee.md)
- [TransactionResend](docs/TransactionResend.md)
- [TransactionResult](docs/TransactionResult.md)
- [TransactionResultType](docs/TransactionResultType.md)
- [TransactionRoleApprovalDetail](docs/TransactionRoleApprovalDetail.md)
- [TransactionSelectedUtxo](docs/TransactionSelectedUtxo.md)
- [TransactionSignatureResult](docs/TransactionSignatureResult.md)
- [TransactionSigner](docs/TransactionSigner.md)
- [TransactionSmartContractSafeWalletSource](docs/TransactionSmartContractSafeWalletSource.md)
- [TransactionSolContractAccount](docs/TransactionSolContractAccount.md)
- [TransactionSolContractDestination](docs/TransactionSolContractDestination.md)
- [TransactionSolContractInstruction](docs/TransactionSolContractInstruction.md)
- [TransactionSource](docs/TransactionSource.md)
- [TransactionSourceType](docs/TransactionSourceType.md)
- [TransactionStatus](docs/TransactionStatus.md)
- [TransactionSubStatus](docs/TransactionSubStatus.md)
- [TransactionTimeline](docs/TransactionTimeline.md)
- [TransactionTokeApproval](docs/TransactionTokeApproval.md)
- [TransactionTokenAmount](docs/TransactionTokenAmount.md)
- [TransactionTransferToAddressDestination](docs/TransactionTransferToAddressDestination.md)
- [TransactionTransferToAddressDestinationAccountOutput](docs/TransactionTransferToAddressDestinationAccountOutput.md)
- [TransactionTransferToAddressDestinationUtxoOutputsInner](docs/TransactionTransferToAddressDestinationUtxoOutputsInner.md)
- [TransactionTransferToWalletDestination](docs/TransactionTransferToWalletDestination.md)
- [TransactionType](docs/TransactionType.md)
- [TransactionUserApprovalDetail](docs/TransactionUserApprovalDetail.md)
- [TransactionUtxo](docs/TransactionUtxo.md)
- [TransactionUtxoChange](docs/TransactionUtxoChange.md)
- [TransactionUtxoFee](docs/TransactionUtxoFee.md)
- [TransactionWebhookEventData](docs/TransactionWebhookEventData.md)
- [TransferDestination](docs/TransferDestination.md)
- [TransferDestinationType](docs/TransferDestinationType.md)
- [TransferParams](docs/TransferParams.md)
- [TransferSource](docs/TransferSource.md)
- [TravelRuleDepositExchangesOrVASP](docs/TravelRuleDepositExchangesOrVASP.md)
- [TravelRuleDepositExchangesOrVASPEntityInfo](docs/TravelRuleDepositExchangesOrVASPEntityInfo.md)
- [TravelRuleDepositLegalEntity](docs/TravelRuleDepositLegalEntity.md)
- [TravelRuleDepositNaturalEntity](docs/TravelRuleDepositNaturalEntity.md)
- [TravelRuleDepositRequest](docs/TravelRuleDepositRequest.md)
- [TravelRuleDepositRequestTravelRuleInfo](docs/TravelRuleDepositRequestTravelRuleInfo.md)
- [TravelRuleWithdrawExchangesOrVASP](docs/TravelRuleWithdrawExchangesOrVASP.md)
- [TravelRuleWithdrawExchangesOrVASPEntityInfo](docs/TravelRuleWithdrawExchangesOrVASPEntityInfo.md)
- [TravelRuleWithdrawLegalEntity](docs/TravelRuleWithdrawLegalEntity.md)
- [TravelRuleWithdrawNaturalEntity](docs/TravelRuleWithdrawNaturalEntity.md)
- [TravelRuleWithdrawRequest](docs/TravelRuleWithdrawRequest.md)
- [TravelRuleWithdrawRequestTravelRuleInfo](docs/TravelRuleWithdrawRequestTravelRuleInfo.md)
- [TriggerTestWebhookEvent201Response](docs/TriggerTestWebhookEvent201Response.md)
- [TriggerTestWebhookEventRequest](docs/TriggerTestWebhookEventRequest.md)
- [UTXO](docs/UTXO.md)
- [UpdateCustodialWalletParams](docs/UpdateCustodialWalletParams.md)
- [UpdateExchangeWalletParams](docs/UpdateExchangeWalletParams.md)
- [UpdateGroupAction](docs/UpdateGroupAction.md)
- [UpdateKeyShareHolderGroupByIdRequest](docs/UpdateKeyShareHolderGroupByIdRequest.md)
- [UpdateMerchantByIdRequest](docs/UpdateMerchantByIdRequest.md)
- [UpdateMpcProjectByIdRequest](docs/UpdateMpcProjectByIdRequest.md)
- [UpdateMpcVaultByIdRequest](docs/UpdateMpcVaultByIdRequest.md)
- [UpdateMpcWalletParams](docs/UpdateMpcWalletParams.md)
- [UpdatePaymentOrderRequest](docs/UpdatePaymentOrderRequest.md)
- [UpdateSmartContractWalletParams](docs/UpdateSmartContractWalletParams.md)
- [UpdateWalletParams](docs/UpdateWalletParams.md)
- [UpdateWebhookEndpointByIdRequest](docs/UpdateWebhookEndpointByIdRequest.md)
- [UtxoFeeBasePrice](docs/UtxoFeeBasePrice.md)
- [UtxoFeeRate](docs/UtxoFeeRate.md)
- [Vasp](docs/Vasp.md)
- [WalletInfo](docs/WalletInfo.md)
- [WalletInfoEventData](docs/WalletInfoEventData.md)
- [WalletSubtype](docs/WalletSubtype.md)
- [WalletType](docs/WalletType.md)
- [WebhookEndpoint](docs/WebhookEndpoint.md)
- [WebhookEndpointStatus](docs/WebhookEndpointStatus.md)
- [WebhookEvent](docs/WebhookEvent.md)
- [WebhookEventData](docs/WebhookEventData.md)
- [WebhookEventDataType](docs/WebhookEventDataType.md)
- [WebhookEventLog](docs/WebhookEventLog.md)
- [WebhookEventStatus](docs/WebhookEventStatus.md)
- [WebhookEventType](docs/WebhookEventType.md)
## Documentation for AuthorizationAuthentication schemes defined for the API:
### CoboAuth- **Type**: API key
- **API key parameter name**: BIZ-API-KEY
- **Location**: HTTP header- **Type**: API key
- **API key parameter name**: BIZ-API-SIGNATURE
- **Location**: HTTP header- **Type**: API key
- **API key parameter name**: BIZ-API-NONCE
- **Location**: HTTP header- **Type**: OAuth
- **Flow**: accessCode
- **Authorization URL**: https://auth.cobo.com/authorize
- **Scopes**:
- address_book.read: Read address book
- api_key.read: Read API key information
- callback.read: Read callback message
- callback.resend: Resend callback message
- wallet.create: Create wallet
- wallet.read: Read wallet information
- wallet.update: Update wallet information
- wallet.delete: Delete wallet information
- wallet.create_address: Create wallet address
- wallet.manage_utxo: Manage UTXO
- mpc_project.create: Create MPC project
- mpc_project.read: Read MPC project information
- mpc_project.update: Update MPC project information
- mpc_vault.create: Create MPC Vault
- mpc_vault.read: Read MPC Vault information
- mpc_vault.update: Update MPC Vault information
- mpc_key_group.create: Create MPC key group
- mpc_key_group.read: Read MPC key group information
- mpc_key_group.update: Update MPC key group information
- mpc_key_group.delete: Delete MPC key group information
- transaction.read: Read transaction information
- transaction.withdraw: Make withdrawals
- transaction.estimate_fee: Estimate transaction fee
- transaction.contract_call: Initiate contract calls
- transaction.message_sign: Initiate message signings
- transaction.stake: Stake assets
- transaction.unstake: Unstake assets
- transaction.unstake_withdraw: Withdraw unstaked assets
- transaction.manage: Manage ongoing transactions
- transaction.update: Update transaction notes
- travel_rule.read: Read travel rule information
- travel_rule.edit: Edit travel rule information
- webhook.read: Read webhook URLs/events
- webhook.edit: Edit webhook URLs
- webhook.resend: Resend webhook events
- payment_orders_payin.create: Create pay-in order
- payment_orders_payin.read: Read pay-in order information
- payment_orders_payin.update: Update pay-in order
- payment_orders_refund.create: Create payment refund order
- payment_orders_refund.read: Read payment refund order information
- payment_settlement.create: Create payment settlement request
- payment_settlement.read: Read payment settlement request information
- payment_merchant.create: Create payment merchant
- payment_merchant.read: Read payment merchant information
- payment_merchant.update: Update payment merchant## Recommendation
It's recommended to create an instance of `ApiClient` per thread in a multithreaded environment to avoid any potential issues.
## Author