diff --git a/scripts/v1/StructWithString.ts b/scripts/v1/StructWithString.ts index 34dd115..102ef48 100644 --- a/scripts/v1/StructWithString.ts +++ b/scripts/v1/StructWithString.ts @@ -28,7 +28,6 @@ function getDomain(chainId: string): StarknetDomain { } function getTypedDataHash(myStruct: StructWithString, chainId: string, owner: bigint): string { - console.log(JSON.stringify(getTypedData(myStruct, chainId))); return typedData.getMessageHash(getTypedData(myStruct, chainId), owner); } @@ -43,7 +42,6 @@ function getTypedData(myStruct: StructWithString, chainId: string): TypedData { }; } -console.log(byteArray.byteArrayFromString("Some long message that exceeds 31 characters")); const structWithByteArray: StructWithString = { some_felt252: "712", some_string: "Some long message that exceeds 31 characters", diff --git a/scripts/v1/StructWithU256.ts b/scripts/v1/StructWithU256.ts index 65654ce..0466822 100644 --- a/scripts/v1/StructWithU256.ts +++ b/scripts/v1/StructWithU256.ts @@ -32,7 +32,6 @@ function getDomain(chainId: string): StarknetDomain { } function getTypedDataHash(myStruct: StructWithU256, chainId: string, owner: bigint): string { - console.log(JSON.stringify(getTypedData(myStruct, chainId))); return typedData.getMessageHash(getTypedData(myStruct, chainId), owner); }