# TxEnvelopeTempo.deserialize

Deserializes a [`TxEnvelopeTempo.TxEnvelopeTempo`](/tempo/reference/TxEnvelopeTempo/types#txenvelopetempo) from its serialized form.

## Imports

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

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

## Examples

```ts twoslash
import { TxEnvelopeTempo } from 'ox/tempo'

const envelope = TxEnvelopeTempo.deserialize(
  '0x76f84a0182031184773594008477359400809470997970c51812dc3a010c7d01b50e0d17dc79c8880de0b6b3a764000080c0808080'
)
// @log: {
// @log:   type: 'tempo',
// @log:   nonce: 785n,
// @log:   maxFeePerGas: 2000000000n,
// @log:   gas: 1000000n,
// @log:   calls: [{ to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8', value: 1000000000000000000n }],
// @log: }
```

## Definition

```ts
function deserialize(
  serialized: Serialized,
): Compute<TxEnvelopeTempo>
```

**Source:** [src/tempo/TxEnvelopeTempo.ts](https://github.com/wevm/ox/blob/main/src/tempo/TxEnvelopeTempo.ts#L1168)

## Parameters

### serialized

* **Type:** `Serialized`

The serialized transaction.

## Return Type

Deserialized Transaction Envelope.

`Compute<TxEnvelopeTempo>`
