From 0db44e8032134a3d9d8db3bb4aa69bcd751d8915 Mon Sep 17 00:00:00 2001 From: arnaud Date: Mon, 8 Jan 2024 17:25:38 +0100 Subject: [PATCH] change the recipient field to 'to' field fixes[11889] --- src/content/developers/docs/transactions/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/developers/docs/transactions/index.md b/src/content/developers/docs/transactions/index.md index 3908eb73bea..47c88b77174 100644 --- a/src/content/developers/docs/transactions/index.md +++ b/src/content/developers/docs/transactions/index.md @@ -24,7 +24,7 @@ Transactions require a fee and must be included in a validated block. To make th A submitted transaction includes the following information: - `from` – the address of the sender, that will be signing the transaction. This will be an externally-owned account as contract accounts cannot send transactions. -- `recipient` – the receiving address (if an externally-owned account, the transaction will transfer value. If a contract account, the transaction will execute the contract code) +- `to` – the receiving address (if an externally-owned account, the transaction will transfer value. If a contract account, the transaction will execute the contract code) - `signature` – the identifier of the sender. This is generated when the sender's private key signs the transaction and confirms the sender has authorized this transaction - `nonce` - a sequentially incrementing counter which indicates the transaction number from the account - `value` – amount of ETH to transfer from sender to recipient (denominated in WEI, where 1ETH equals 1e+18wei)