> ## Documentation Index
> Fetch the complete documentation index at: https://docs.sequence.xyz/llms.txt
> Use this file to discover all available pages before exploring further.

# 送金

ETH（またはネットワークのガス通貨）を送金する場合は、`TranferEth.CreateTransaction`の利用を推奨します。

```csharp theme={null}
EthTransaction transferTransaction = await TransferEth.CreateTransaction(client, wallet, recipientAddress, DecimalNormalizer.Normalize(1));
TransactionReceipt receipt = await wallet.SendTransactionAndWaitForReceipt(client, transferTransaction);
```

この処理の裏側では、`GasLimitEstimator`が作成され、適切なgasPrice、gasLimit、nonceを自動的に設定してトランザクションを構築します。
