# Send

## Introduction

The Send block simply sends an asset from your either your key wallet or your smart wallet to another address. This is useful for sending on funds that you have just swapped, for example.

![](/files/okQgamLqbJHgyX734SEg)

The above block will send a small amount of aUSDC to the address in the "Receiver address" box.

![](/files/uYXDnM8uZDOQjKiJzJCK)

Once the user executes this block, the aUSDC will be sent to the address entered in the previous step.

### Implementation

Copy and paste the code below to get started.

```jsx
import {
  Etherspot,
  TRANSACTION_BLOCK_TYPE,
} from "@etherspot/react-transaction-buidler";

// ...

return (
  <Etherspot
    defaultTransactionBlocks={[{ type: TRANSACTION_BLOCK_TYPE.SEND_ASSET }]}
  />
);
```


---

# 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://v1.etherspot.io/buidler-react-component/blocks/send.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.
