# Address and Signature

### Address Generation

\
The `generateAddress` function can be directly called without binding a private key.

```
AixcClient.generateAddress();
```

This returns a private key that can be directly used on Aixchain network.

Example:&#x20;

```java
AixcClient client = new WelClient("172.104.51.182:16669","172.104.51.182:16669","privatete Key");
System.out.println(client.generateAddress());
```

### Signature

Aixchain SDK has encapsulated signature function, refer to `signTransaction` in RPC\_APIs.

Binding a private key with a AixcClient instance or providing a `SECP256K1.KeyPair` to accomplish the signing process.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://developers.aixchain.com/aixchain-sdk/address-and-signature.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
