> **Can't find what you're looking for?** Use `search_docs` on the docs MCP server at `https://v3.viem.sh/api/mcp` to find what you need.

# TxEnvelopeEip2930.serialize

:::info
`TxEnvelopeEip2930.serialize` is a re-export of ox's [`TxEnvelopeEip2930.serialize`](https://oxlib.sh/api/TxEnvelopeEip2930/serialize). Refer to the ox documentation for the full reference.
:::

Serializes a [`TxEnvelopeEip2930.TxEnvelopeEip2930`](/docs/utilities/txenvelopeeip2930/types#txenvelopeeip2930).

## Imports

```ts
import { TxEnvelopeEip2930 } from 'viem/utils'
```

## Examples

```ts twoslash
// @noErrors
import { TxEnvelopeEip2930, Value } from 'viem/utils'

const envelope = TxEnvelopeEip2930.from({
  chainId: 1,
  gasPrice: Value.fromGwei('10'),
  to: '0x0000000000000000000000000000000000000000',
  value: Value.fromEther('1')
})

const serialized = TxEnvelopeEip2930.serialize(envelope) // [!code focus]
```

### Attaching Signatures

It is possible to attach a `signature` to the serialized Transaction Envelope.

```ts twoslash
// @noErrors
import { Secp256k1, TxEnvelopeEip2930, Value } from 'viem/utils'

const envelope = TxEnvelopeEip2930.from({
  chainId: 1,
  gasPrice: Value.fromGwei('10'),
  to: '0x0000000000000000000000000000000000000000',
  value: Value.fromEther('1')
})

const signature = Secp256k1.sign({
  payload: TxEnvelopeEip2930.getSignPayload(envelope),
  privateKey: '0x...'
})

const serialized = TxEnvelopeEip2930.serialize(envelope, {
  // [!code focus]
  signature // [!code focus]
}) // [!code focus]

// ... send `serialized` transaction to JSON-RPC `eth_sendRawTransaction`
```

## Definition

```ts
function serialize(
  envelope: PartialBy<TxEnvelopeEip2930, 'type'>,
  options?: serialize.Options,
): Serialized
```

## Parameters

### envelope

* **Type:** `PartialBy<TxEnvelopeEip2930, 'type'>`

The Transaction Envelope to serialize.

### options

* **Type:** `serialize.Options`
* **Optional**

Options.

#### options.signature

* **Type:** `{ r: 0x${string}; s: 0x${string}; yParity: number; }`
* **Optional**

Signature to append to the serialized Transaction Envelope.

## Return Type

The serialized Transaction Envelope.

[`TxEnvelopeEip2930.Serialized`](/docs/utilities/txenvelopeeip2930/types#txenvelopeeip2930serialized)
