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

# Native Token Address

> The sentinel address used for the native token.

Skip approval for the native token (e.g. ETH). Use this address for comparisons:

```text theme={null}
0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE
```

Filter it out before calling `getAllowance` or `approve`:

```typescript theme={null}
const NATIVE = "0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE";
const tokensForApproval = tokens.filter(
  (t) => t.address.toLowerCase() !== NATIVE.toLowerCase()
);
```

## Next steps

* [Approvals](/sdk/approvals/check-allowance)
