> ## Documentation Index
> Fetch the complete documentation index at: https://docs.spark.money/llms.txt
> Use this file to discover all available pages before exploring further.

# getTokenL1Address

> Get the L1 Bitcoin address derived from identity key for tokens.

Gets the Layer 1 Bitcoin address derived from the wallet's identity key for token operations.

## Method Signature

```typescript theme={null}
async getTokenL1Address(): Promise<string>
```

## Returns

<ResponseField name="address" type="string" required>
  A P2WPKH Bitcoin address derived from the wallet's identity public key
</ResponseField>

## Example

```typescript theme={null}
const l1Address = await wallet.getTokenL1Address();
console.log("Token L1 address:", l1Address);
```
