From d803d98daf74a5d1e9e7147faae59d0b94732363 Mon Sep 17 00:00:00 2001 From: kemuru <102478601+kemuru@users.noreply.github.com> Date: Wed, 10 Jan 2024 12:22:59 +0100 Subject: [PATCH] feat(contracts): update natspec escrow contract --- contracts/src/arbitration/arbitrables/Escrow.sol | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/contracts/src/arbitration/arbitrables/Escrow.sol b/contracts/src/arbitration/arbitrables/Escrow.sol index 38a102d30..aee794a65 100644 --- a/contracts/src/arbitration/arbitrables/Escrow.sol +++ b/contracts/src/arbitration/arbitrables/Escrow.sol @@ -84,9 +84,12 @@ contract Escrow is IArbitrableV2 { /// @dev Emitted when a transaction is created. /// @param _transactionID The index of the transaction. + /// @param _transactionUri The IPFS Uri Hash of the transaction. /// @param _buyer The address of the buyer. /// @param _seller The address of the seller. /// @param _amount The initial amount in the transaction. + /// @param _asset The asset used ("native" for native chain token). + /// @param _deadline The deadline of the transaction. event TransactionCreated( uint256 indexed _transactionID, string _transactionUri, @@ -169,6 +172,7 @@ contract Escrow is IArbitrableV2 { /// @dev Create a transaction. /// @param _timeoutPayment Time after which a party can automatically execute the arbitrable transaction. + /// @param _transactionUri The IPFS Uri Hash of the transaction. /// @param _seller The recipient of the transaction. /// @param _templateData The dispute template data. /// @param _templateDataMappings The dispute template data mappings.