# getAddress

**Method**

```javascript
async function getAddress(): {
  address: string,
  blindingPrivateKey: string,
  publicKey: string
}
```

**Response**

The first address of your liquid account generated by your master key, including the public key and blinding private key (for confidential transactions).

**Code Example**

```javascript
const address = await window.liquid.getAddress();
```
