## arrayBufferToHex() function

Converts an ArrayBuffer to hex string. See: [https://stackoverflow.com/a/55200387](https://stackoverflow.com/a/55200387)

**Signature:**

```typescript
export declare function arrayBufferToHex(arrayBuffer: ArrayBufferLike | ArrayBufferView): string;
```

## Parameters

| Parameter | Type | Description |
| --- | --- | --- |
| arrayBuffer | ArrayBufferLike \| ArrayBufferView | The input array buffer. |

**Returns:**

string

The resulting hex string.

- [arrayBufferToHex() function](/content/docs/sdk/core.arraybuffertohex#arraybuffertohex-function/index.html)
- [Parameters](/content/docs/sdk/core.arraybuffertohex#parameters/index.html)
