From 4a31514d9b49bdb86b502dbd800f2975262398f0 Mon Sep 17 00:00:00 2001 From: Michael Asiedu Date: Tue, 20 Aug 2024 20:26:58 +0000 Subject: [PATCH] chore: Update event parameter name in InputAdded event --- .../version-1.5/rollups-apis/json-rpc/input-box.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cartesi-rollups_versioned_docs/version-1.5/rollups-apis/json-rpc/input-box.md b/cartesi-rollups_versioned_docs/version-1.5/rollups-apis/json-rpc/input-box.md index dde658cb..7e7f2044 100644 --- a/cartesi-rollups_versioned_docs/version-1.5/rollups-apis/json-rpc/input-box.md +++ b/cartesi-rollups_versioned_docs/version-1.5/rollups-apis/json-rpc/input-box.md @@ -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. @@ -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 |