# TransactionSigner

### What is it?

TransactionSigner is actually the class that is returned directly from methods such as transfer, approve etc. and contains the prepared transacion. With this class, this transaction can be signed and sent to the node.

### Methods

```typescript
import { assets } from '@multiplechain/evm-chains'

const txSigner = await new assets.Coin().transfer('0x123', '0x456', 0.1)

const txId = await (await txSigner.sign('0x123')).send()

const rawTxData = txSigner.getRawData()

// Only after signing
const signedData = txSigner.getSignedData()
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://multiplechain.gitbook.io/multiplechain-docs-v0.4/structure/services/transactionsigner.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
