# Mnemonic.engine

Compiles the WASM implementation of [`Mnemonic.toSeed`](/api/Mnemonic/toSeed), without installing it.

## Imports

:::code-group
```ts [Named]
import { Mnemonic } from 'ox/wasm'
```

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

## Examples

```ts twoslash
// @noErrors
import { Engine } from 'ox'
import { Mnemonic } from 'ox/wasm'

await Engine.install({ Mnemonic: Mnemonic.engine() })

Mnemonic.toSeed(
  'test test test test test test test test test test test junk'
)
```

## Definition

```ts
function engine(): Promise<engine.ReturnType>
```

**Source:** [src/wasm/Mnemonic.ts](https://github.com/wevm/ox/blob/main/src/wasm/Mnemonic.ts#L29)

## Return Type

The WASM implementation of the `Mnemonic` slot.

`Promise<engine.ReturnType>`
