aboutsummaryrefslogtreecommitdiffstats
path: root/packages/utils/src/sign_typed_data_utils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/utils/src/sign_typed_data_utils.ts')
-rw-r--r--packages/utils/src/sign_typed_data_utils.ts6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/utils/src/sign_typed_data_utils.ts b/packages/utils/src/sign_typed_data_utils.ts
index 657a59ed0..cd5bcb42f 100644
--- a/packages/utils/src/sign_typed_data_utils.ts
+++ b/packages/utils/src/sign_typed_data_utils.ts
@@ -6,11 +6,11 @@ import { EIP712Object, EIP712ObjectValue, EIP712TypedData, EIP712Types } from '@
export const signTypedDataUtils = {
/**
- * Computes the Sign Typed Data hash
+ * Generates the EIP712 Typed Data hash for signing
* @param typedData An object that conforms to the EIP712TypedData interface
- * @return A Buffer containing the hash of the sign typed data.
+ * @return A Buffer containing the hash of the typed data.
*/
- signTypedDataHash(typedData: EIP712TypedData): Buffer {
+ generateTypedDataHash(typedData: EIP712TypedData): Buffer {
return ethUtil.sha3(
Buffer.concat([
Buffer.from('1901', 'hex'),