Skip to content

Commit

Permalink
chore: Update event parameter name in InputAdded event
Browse files Browse the repository at this point in the history
  • Loading branch information
masiedu4 committed Aug 20, 2024
1 parent fca8078 commit 4a31514
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ From the perspective of this contract, inputs are encoding-agnostic byte arrays.
## `InputAdded()`

```solidity
event InputAdded(address dapp, uint256 inboxInputIndex, address sender, bytes input)
event InputAdded(address dapp, uint256 inputIndex, address sender, bytes input)
```

Emitted when an input is added to a dApp's input box.
Expand All @@ -28,7 +28,7 @@ Emitted when an input is added to a dApp's input box.
| Name | Type | Description |
| --------------- | ------- | --------------------------------------- |
| dapp | address | The address of the dApp |
| inboxInputIndex | uint256 | The index of the input in the input box |
| inputIndex | uint256 | The index of the input in the input box |
| sender | address | The address that sent the input |
| input | bytes | The contents of the input |

Expand Down

0 comments on commit 4a31514

Please sign in to comment.