diff --git a/contracts/InstadappAdapter.sol b/contracts/InstadappAdapter.sol index e511cc6..1d42405 100644 --- a/contracts/InstadappAdapter.sol +++ b/contracts/InstadappAdapter.sol @@ -11,7 +11,6 @@ import {IDSA} from "./interfaces/IDSA.sol"; /// @notice This contract is inherited by InstadappTarget, it includes the logic to verify signatures /// and execute the calls. /// @dev This contract is not meant to be used directly, it is meant to be inherited by other contracts. -/// @custom:experimental This is an experimental contract. contract InstadappAdapter is EIP712 { /// Structs /// @dev This struct is used to encode the data for InstadappTarget.cast function. @@ -123,5 +122,4 @@ contract InstadappAdapter is EIP712 { function getHash(CastData memory castData) internal pure returns (bytes32) { return keccak256(abi.encode(CASTDATA_TYPEHASH, castData.targetNames, castData.datas, castData.origin)); } - } diff --git a/contracts/InstadappTarget.sol b/contracts/InstadappTarget.sol index ded8417..43b166b 100644 --- a/contracts/InstadappTarget.sol +++ b/contracts/InstadappTarget.sol @@ -13,7 +13,6 @@ import {InstadappAdapter} from "./InstadappAdapter.sol"; /// @dev This contract is used to receive funds from Connext /// and forward them to Instadapp DSA via authCast function, In case of failure, /// funds are forwarded to fallback address defined by the user under callData. -/// @custom:experimental This is an experimental contract. contract InstadappTarget is IXReceiver, InstadappAdapter { using SafeERC20 for IERC20; /// Storage