# BinaryStateTree.create

Creates a new Binary State Tree instance.

## Imports

:::code-group
```ts [Named]
import { BinaryStateTree } from 'ox'
```

```ts [Entrypoint]
import * as BinaryStateTree from 'ox/BinaryStateTree'
```
:::

## Examples

```ts twoslash
import { BinaryStateTree } from 'ox'

const tree = BinaryStateTree.create()
```

## Definition

```ts
function create(): BinaryStateTree
```

**Source:** [src/core/BinaryStateTree.ts](https://github.com/wevm/ox/blob/main/src/core/BinaryStateTree.ts#L281)

## Return Type

A Binary State Tree.

[`BinaryStateTree.BinaryStateTree`](/api/BinaryStateTree/types#binarystatetreebinarystatetree)
