# TxEnvelopeTempo.encodeForSigning

Encodes a [`TxEnvelopeTempo.TxEnvelopeTempo`](/tempo/reference/TxEnvelopeTempo/types#txenvelopetempo) for sender signing.

Returns the raw serialized transaction bytes that are hashed by [`TxEnvelopeTempo.getSignPayload`](/tempo/reference/TxEnvelopeTempo/getSignPayload). Sender signatures are stripped, and fee payer signatures are normalized to the sender pre-sign marker.

## Imports

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

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

## Examples

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

const envelope = TxEnvelopeTempo.from({
  chainId: 1,
  calls: [
    {
      to: '0x70997970c51812dc3a010c7d01b50e0d17dc79c8'
    }
  ],
  nonce: 0n
})

const encoded = TxEnvelopeTempo.encodeForSigning(envelope) // [!code focus]
const payload = Hash.keccak256(encoded)
```

## Definition

```ts
function encodeForSigning(
  envelope: TxEnvelopeTempo,
): encodeForSigning.ReturnValue
```

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

## Parameters

### envelope

* **Type:** `TxEnvelopeTempo`

The transaction envelope to encode for signing.

#### envelope.accessList

* **Type:** `readonly { address: abitype_Address; storageKeys: readonly 0x${string}[]; }[]`
* **Optional**

EIP-2930 Access List.

#### envelope.authorizationList

* **Type:** `readonly { address: abitype_Address; chainId: numberType; nonce: bigintType; signature: SignatureEnvelope; }[]`
* **Optional**

EIP-7702 (Tempo) Authorization list for the transaction.

#### envelope.calls

* **Type:** `readonly Call[]`

Array of calls to execute.

#### envelope.chainId

* **Type:** `numberType`

EIP-155 Chain ID.

#### envelope.feePayerSignature

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

Fee payer signature.

#### envelope.feeToken

* **Type:** `Address.Address | undefined`
* **Optional**

Fee token preference. Address of the TIP-20 token.

#### envelope.from

* **Type:** `Address.Address | undefined`
* **Optional**

Sender of the transaction.

#### envelope.gas

* **Type:** `bigintType`
* **Optional**

Gas provided for transaction execution

#### envelope.keyAuthorization

* **Type:** `Signed`
* **Optional**

Key authorization for provisioning a new access key.

When present, this transaction will add the specified key to the AccountKeychain precompile,
before verifying the transaction signature.
The authorization must be signed with the root key, the tx can be signed by the Keychain signature.

#### envelope.maxFeePerGas

* **Type:** `bigintType`
* **Optional**

Total fee per gas in wei (gasPrice/baseFeePerGas + maxPriorityFeePerGas).

#### envelope.maxPriorityFeePerGas

* **Type:** `bigintType`
* **Optional**

Max priority fee per gas (in wei).

#### envelope.nonce

* **Type:** `bigintType`
* **Optional**

Unique number identifying this transaction

#### envelope.nonceKey

* **Type:** `bigintType`
* **Optional**

Nonce key for 2D nonce system (192 bits).

#### envelope.signature

* **Type:** `SignatureEnvelope`
* **Optional**

#### envelope.type

* **Type:** `type`

Transaction type

#### envelope.validAfter

* **Type:** `numberType`
* **Optional**

Transaction can only be included in a block after this timestamp.

#### envelope.validBefore

* **Type:** `numberType`
* **Optional**

Transaction can only be included in a block before this timestamp.

## Return Type

The serialized transaction bytes used as the sender signing preimage.

`encodeForSigning.ReturnValue`
