Skip to content
This repository was archived by the owner on Feb 26, 2024. It is now read-only.

Commit 89667fe

Browse files
authored
Merge pull request #5534 from eltociear/patch-5
Fix typo in contract/README.md
2 parents f625faa + 526c4c8 commit 89667fe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/contract/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ const val = instance.getValue();
312312

313313
#### Processing transaction results
314314

315-
When you make a transaction, you're given a `result` object that gives you a wealth of information about the transaction. You're given the transaction hash (`result.tx`), the decoded events (also known as logs; `result.logs`), and a transaction receipt (`result.receipt`). In the below example, you'll recieve the `ValueSet()` event because you triggered the event using the `setValue()` function:
315+
When you make a transaction, you're given a `result` object that gives you a wealth of information about the transaction. You're given the transaction hash (`result.tx`), the decoded events (also known as logs; `result.logs`), and a transaction receipt (`result.receipt`). In the below example, you'll receive the `ValueSet()` event because you triggered the event using the `setValue()` function:
316316

317317
```javascript
318318
const result = await instance.setValue(5);

0 commit comments

Comments
 (0)