Skip to content

Commit d803d98

Browse files
committed
feat(contracts): update natspec escrow contract
1 parent 5565d55 commit d803d98

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

contracts/src/arbitration/arbitrables/Escrow.sol

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,9 +84,12 @@ contract Escrow is IArbitrableV2 {
8484

8585
/// @dev Emitted when a transaction is created.
8686
/// @param _transactionID The index of the transaction.
87+
/// @param _transactionUri The IPFS Uri Hash of the transaction.
8788
/// @param _buyer The address of the buyer.
8889
/// @param _seller The address of the seller.
8990
/// @param _amount The initial amount in the transaction.
91+
/// @param _asset The asset used ("native" for native chain token).
92+
/// @param _deadline The deadline of the transaction.
9093
event TransactionCreated(
9194
uint256 indexed _transactionID,
9295
string _transactionUri,
@@ -169,6 +172,7 @@ contract Escrow is IArbitrableV2 {
169172

170173
/// @dev Create a transaction.
171174
/// @param _timeoutPayment Time after which a party can automatically execute the arbitrable transaction.
175+
/// @param _transactionUri The IPFS Uri Hash of the transaction.
172176
/// @param _seller The recipient of the transaction.
173177
/// @param _templateData The dispute template data.
174178
/// @param _templateDataMappings The dispute template data mappings.

0 commit comments

Comments
 (0)