Skip to content

Commit c5c55c7

Browse files
committed
chore: removed obsolete custom natspec
1 parent 25b462b commit c5c55c7

21 files changed

+1
-125
lines changed

contracts/src/arbitration/KlerosCore.sol

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@unknownunknown1, @jaybuidl]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
8-
93
pragma solidity 0.8.24;
104

115
import {KlerosCoreBase, IDisputeKit, ISortitionModule, IERC20} from "./KlerosCoreBase.sol";

contracts/src/arbitration/KlerosCoreBase.sol

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@unknownunknown1, @jaybuidl]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
8-
93
pragma solidity 0.8.24;
104

115
import {IArbitrableV2, IArbitratorV2} from "./interfaces/IArbitratorV2.sol";

contracts/src/arbitration/KlerosCoreNeo.sol

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@unknownunknown1, @jaybuidl]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
8-
93
pragma solidity 0.8.24;
104

115
import {KlerosCoreBase, IDisputeKit, ISortitionModule, IERC20, OnError, StakingResult} from "./KlerosCoreBase.sol";

contracts/src/arbitration/KlerosGovernor.sol

-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@unknownunknown1]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:deployments: []
7-
83
pragma solidity 0.8.24;
94

105
import {IArbitrableV2, IArbitratorV2} from "./interfaces/IArbitrableV2.sol";

contracts/src/arbitration/arbitrables/DisputeResolver.sol

-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@unknownunknown1, @jaybuidl]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
83
import {IArbitrableV2, IArbitratorV2} from "../interfaces/IArbitrableV2.sol";
94
import "../interfaces/IDisputeTemplateRegistry.sol";
105

contracts/src/arbitration/devtools/DisputeResolverRuler.sol

-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@unknownunknown1, @jaybuidl]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
83
import {DisputeResolver, IArbitratorV2, IDisputeTemplateRegistry} from "../arbitrables/DisputeResolver.sol";
94

105
pragma solidity 0.8.24;

contracts/src/arbitration/dispute-kits/DisputeKitClassic.sol

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@unknownunknown1, @jaybuidl]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
8-
93
pragma solidity 0.8.24;
104

115
import {DisputeKitClassicBase, KlerosCore} from "./DisputeKitClassicBase.sol";

contracts/src/arbitration/dispute-kits/DisputeKitClassicBase.sol

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@unknownunknown1, @jaybuidl]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
8-
93
pragma solidity 0.8.24;
104

115
import {KlerosCore, KlerosCoreBase, IDisputeKit, ISortitionModule} from "../KlerosCore.sol";

contracts/src/arbitration/dispute-kits/DisputeKitGated.sol

+1-7
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@unknownunknown1, @jaybuidl]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
8-
93
pragma solidity 0.8.24;
104

115
import {DisputeKitClassicBase, KlerosCore} from "./DisputeKitClassicBase.sol";
@@ -115,4 +109,4 @@ contract DisputeKitGated is DisputeKitClassicBase {
115109
return IBalanceHolder(tokenGate).balanceOf(_juror) > 0;
116110
}
117111
}
118-
}
112+
}

contracts/src/arbitration/dispute-kits/DisputeKitSybilResistant.sol

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@unknownunknown1, @jaybuidl]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
8-
93
pragma solidity 0.8.24;
104

115
import {DisputeKitClassicBase, KlerosCore} from "./DisputeKitClassicBase.sol";

contracts/src/arbitration/evidence/EvidenceModule.sol

-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@jaybuidl, @fnanni-0]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
8-
/// @custom:tools: []
9-
103
pragma solidity 0.8.24;
114

125
import "../interfaces/IArbitratorV2.sol";

contracts/src/arbitration/evidence/ModeratedEvidenceModule.sol

-7
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@fnanni-0]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
8-
/// @custom:tools: []
9-
103
pragma solidity 0.8.24;
114

125
// TODO: standard interfaces should be placed in a separated repo (?)

contracts/src/arbitration/interfaces/IDisputeKit.sol

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@unknownunknown1, @jaybuidl]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
8-
93
pragma solidity 0.8.24;
104

115
import "./IArbitratorV2.sol";

contracts/src/gateway/ForeignGateway.sol

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@jaybuidl, @shotaronowhere, @shalzz]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
8-
93
pragma solidity 0.8.24;
104

115
import "./interfaces/IForeignGateway.sol";

contracts/src/gateway/HomeGateway.sol

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@jaybuidl, @shotaronowhere, @shalzz]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
8-
93
pragma solidity 0.8.24;
104

115
import "./interfaces/IForeignGateway.sol";

contracts/src/gateway/interfaces/IForeignGateway.sol

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@jaybuidl, @shotaronowhere, @shalzz]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
8-
93
pragma solidity 0.8.24;
104

115
import "../../arbitration/interfaces/IArbitratorV2.sol";

contracts/src/gateway/interfaces/IHomeGateway.sol

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@jaybuidl, @shotaronowhere, @shalzz]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
8-
93
pragma solidity 0.8.24;
104

115
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";

contracts/src/kleros-v1/interfaces/IArbitrableV1.sol

-5
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@ferittuncer, @hbarcelos, @clesaege]
4-
/// @custom:reviewers: [@remedcu]
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
83
pragma solidity 0.8.24;
94

105
import "./IArbitratorV1.sol";

contracts/src/kleros-v1/interfaces/IArbitratorV1.sol

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@ferittuncer, @hbarcelos, @clesaege]
4-
/// @custom:reviewers: [@remedcu]
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
8-
93
pragma solidity 0.8.24;
104

115
import "./IArbitrableV1.sol";

contracts/src/libraries/SortitionSumTreeFactory.sol

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@epiqueras, @unknownunknown1]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
8-
93
pragma solidity 0.8.24;
104

115
/// @title SortitionSumTreeFactory

contracts/src/test/KlerosCoreMock.sol

-6
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,5 @@
11
// SPDX-License-Identifier: MIT
22

3-
/// @custom:authors: [@unknownunknown1]
4-
/// @custom:reviewers: []
5-
/// @custom:auditors: []
6-
/// @custom:bounties: []
7-
/// @custom:deployments: []
8-
93
pragma solidity 0.8.24;
104

115
import "../arbitration/KlerosCore.sol";

0 commit comments

Comments
 (0)