# eth\_signTransaction

**Note:** Krypc does not support the **eth\_signTransaction** RPC method

1. **Parameters**

* **Object** array- The transaction response object which contains the following fields:
  * <mark style="color:blue;">from</mark> The address the transaction is sent from&#x20;
  * <mark style="color:blue;">to</mark> (optional for contract creation) The address the transaction is directed to&#x20;
  * <mark style="color:blue;">gas</mark> (default: 90000) The integer of the gas provided for the transaction execution&#x20;
  * <mark style="color:blue;">gasPrice</mark> The integer of the gasPrice used for each paid gas, in wei&#x20;
  * <mark style="color:blue;">value</mark> The integer of the value sent with this transaction, in wei&#x20;
  * <mark style="color:blue;">data</mark> The compiled code of a contract or the hash of the invoked method signature and encoded parameters&#x20;
  * <mark style="color:blue;">nonce</mark> The integer of a nonce. This allows overwriting the own pending transactions that use the same nonce

```json
Not supported by Krypc!
```

2. Returns- The signed transaction object
