From ed4b7ee0acddf69a8b81a9cc1b4833bc57e68a21 Mon Sep 17 00:00:00 2001 From: Geoff Hayes Date: Wed, 25 Sep 2024 14:21:44 -0700 Subject: [PATCH] Add EIP-712 Change for Quark V2 (#84) This patch adds an EIP-712 change for Quark V2, which adds an `isReplayable` field in the typehash of the EIP-712 struct. --- src/builder/EIP712Helper.sol | 1 + 1 file changed, 1 insertion(+) diff --git a/src/builder/EIP712Helper.sol b/src/builder/EIP712Helper.sol index e4172f2c..53cb6426 100644 --- a/src/builder/EIP712Helper.sol +++ b/src/builder/EIP712Helper.sol @@ -90,6 +90,7 @@ library EIP712Helper { abi.encode( QUARK_OPERATION_TYPEHASH, op.nonce, + op.isReplayable, op.scriptAddress, keccak256(encodedScriptSources), keccak256(op.scriptCalldata),