Skip to content

Commit

Permalink
Merge pull request #11890 from stolab/11889-transaction
Browse files Browse the repository at this point in the history
change the recipient field to 'to' field fixes[11889]
  • Loading branch information
corwintines authored Jan 10, 2024
2 parents 273bf40 + e5969c8 commit c23dea4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion public/content/developers/docs/transactions/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit c23dea4

Please sign in to comment.