From fa7f2033fefa36ca2a0679ae4de6db2afddc1444 Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Wed, 14 May 2025 16:57:17 +0300 Subject: [PATCH 1/3] Update IEvidenceV1.sol --- contracts/src/kleros-v1/interfaces/IEvidenceV1.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/src/kleros-v1/interfaces/IEvidenceV1.sol b/contracts/src/kleros-v1/interfaces/IEvidenceV1.sol index b39b8dddd..c298311e8 100644 --- a/contracts/src/kleros-v1/interfaces/IEvidenceV1.sol +++ b/contracts/src/kleros-v1/interfaces/IEvidenceV1.sol @@ -22,7 +22,7 @@ interface IEvidenceV1 { /// @dev To be raised when evidence is submitted. Should point to the resource (evidences are not to be stored on chain due to gas considerations). /// @param _arbitrator The arbitrator of the contract. /// @param _evidenceGroupID Unique identifier of the evidence group the evidence belongs to. - /// @param _party The address of the party submiting the evidence. Note that 0x0 refers to evidence not submitted by any party. + /// @param _party The address of the party submitting the evidence. Note that 0x0 refers to evidence not submitted by any party. /// @param _evidence IPFS path to evidence, example: '/ipfs/Qmarwkf7C9RuzDEJNnarT3WZ7kem5bk8DZAzx78acJjMFH/evidence.json' event Evidence( IArbitratorV1 indexed _arbitrator, From 5e217da9f5ce7c688fbadb10eaf73c9fbf7add91 Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Wed, 14 May 2025 16:57:44 +0300 Subject: [PATCH 2/3] Update WrappedPinakion.sol --- contracts/src/kleros-v1/kleros-liquid-xdai/WrappedPinakion.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/src/kleros-v1/kleros-liquid-xdai/WrappedPinakion.sol b/contracts/src/kleros-v1/kleros-liquid-xdai/WrappedPinakion.sol index 39abcbc5d..4d3a1547c 100644 --- a/contracts/src/kleros-v1/kleros-liquid-xdai/WrappedPinakion.sol +++ b/contracts/src/kleros-v1/kleros-liquid-xdai/WrappedPinakion.sol @@ -146,7 +146,7 @@ contract WrappedPinakion is Initializable { /// @notice Moves `_amount` tokens from the caller's account to `_recipient`. /// @param _recipient The entity receiving the funds. - /// @param _amount The amount to tranfer in base units. + /// @param _amount The amount to transfer in base units. /// @return True on success. function transfer(address _recipient, uint256 _amount) public returns (bool) { if (isContract(controller)) { From 46adf9db14b220c1647136fb8e46e0d2ae18f41e Mon Sep 17 00:00:00 2001 From: leopardracer <136604165+leopardracer@users.noreply.github.com> Date: Wed, 14 May 2025 16:59:18 +0300 Subject: [PATCH 3/3] Update IEvidence.sol --- contracts/src/arbitration/interfaces/IEvidence.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/src/arbitration/interfaces/IEvidence.sol b/contracts/src/arbitration/interfaces/IEvidence.sol index a43c1af65..f40f16c6e 100644 --- a/contracts/src/arbitration/interfaces/IEvidence.sol +++ b/contracts/src/arbitration/interfaces/IEvidence.sol @@ -5,7 +5,7 @@ pragma solidity 0.8.24; /// @title IEvidence interface IEvidence { /// @dev To be raised when evidence is submitted. Should point to the resource (evidences are not to be stored on chain due to gas considerations). - /// @param _externalDisputeID Unique identifier for this dispute outside Kleros. It's the submitter responsability to submit the right external dispute ID. + /// @param _externalDisputeID Unique identifier for this dispute outside Kleros. It's the submitter responsibility to submit the right external dispute ID. /// @param _party The address of the party submiting the evidence. Note that 0x0 refers to evidence not submitted by any party. /// @param _evidence Stringified evidence object, example: '{"name" : "Justification", "description" : "Description", "fileURI" : "/ipfs/QmWQV5ZFFhEJiW8Lm7ay2zLxC2XS4wx1b2W7FfdrLMyQQc"}'. event Evidence(uint256 indexed _externalDisputeID, address indexed _party, string _evidence);