From 23afff8ed1741a171237ffafa5d2b6d5bda70583 Mon Sep 17 00:00:00 2001 From: Spablob <99089658+Spablob@users.noreply.github.com> Date: Fri, 20 Dec 2024 09:24:06 +0000 Subject: [PATCH] add OTHERS dispute tag (#363) --- script/foundry/utils/DeployHelper.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/script/foundry/utils/DeployHelper.sol b/script/foundry/utils/DeployHelper.sol index 253e652e..e0d12c3b 100644 --- a/script/foundry/utils/DeployHelper.sol +++ b/script/foundry/utils/DeployHelper.sol @@ -763,6 +763,7 @@ contract DeployHelper is Script, BroadcastManager, JsonDeploymentHandler, Storag disputeModule.whitelistDisputeTag("IMPROPER_USAGE", true); disputeModule.whitelistDisputeTag("IMPROPER_PAYMENT", true); disputeModule.whitelistDisputeTag("CONTENT_STANDARDS_VIOLATION", true); + disputeModule.whitelistDisputeTag("OTHERS", true); disputeModule.whitelistArbitrationPolicy(address(arbitrationPolicyUMA), true); disputeModule.setArbitrationRelayer(address(arbitrationPolicyUMA), address(arbitrationPolicyUMA)); disputeModule.setBaseArbitrationPolicy(address(arbitrationPolicyUMA));