# ExecuteTransaction

### Description

Creates and executes a blockchain transaction of any supported type.

**Supported Transaction Types:**

* Native token transfers
* ERC-20 token transfers
* NFT transfers (ERC-721, ERC-1155)
* Smart contract interactions

{% code overflow="wrap" %}

```csharp
public static VyTask<VyTransactionResultDto> ExecuteTransaction(VyExecuteTransactionRequest reqParams, VyUserAuth signingMethod)
```

{% endcode %}

{% tabs %}
{% tab title="Details" %}
**Parameters**

| reqParams     | [VyExecuteTransactionRequest](/sdk-reference/c-sdk-v3/object-references/wallet/vyexecutetransactionrequest.md) | Request data for the operation                                             |
| ------------- | -------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------- |
| signingMethod | VyUserAuth                                                                                                     | This operation requires a valid Signing-Method from the corresponding user |

**Returns**

VyTask<[VyTransactionResultDto](/sdk-reference/c-sdk-v3/object-references/wallet/vytransactionresultdto.md)>\
Transaction executed successfully.
{% endtab %}
{% endtabs %}


---

# 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://sdk.venly.io/sdk-reference/c-sdk-v3/function-references/wallet/transactions/executetransaction.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.
