@uniswap/conedison
Advanced tools
Comparing version 1.2.0 to 1.2.1
@@ -11,2 +11,2 @@ import type { TypedDataDomain, TypedDataField } from '@ethersproject/abstract-signer'; | ||
*/ | ||
export declare function signTypedData(signer: JsonRpcSigner, domain: TypedDataDomain, types: Record<string, TypedDataField[]>, value: Record<string, unknown>): Promise<any>; | ||
export declare function signTypedData(signer: JsonRpcSigner, domain: TypedDataDomain, types: Record<string, TypedDataField[]>, value: Record<string, any>): Promise<any>; |
@@ -47,3 +47,6 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { | ||
*/ | ||
export function signTypedData(signer, domain, types, value) { | ||
export function signTypedData(signer, domain, types, | ||
// Use Record<string, any> for the value to match the JsonRpcSigner._signTypedData signature. | ||
// eslint-disable-next-line @typescript-eslint/no-explicit-any | ||
value) { | ||
return __awaiter(this, void 0, void 0, function () { | ||
@@ -50,0 +53,0 @@ var populated, address, error_1, error_2, hash; |
{ | ||
"name": "@uniswap/conedison", | ||
"version": "1.2.0", | ||
"version": "1.2.1", | ||
"description": "Utilities for Uniswap front-end development", | ||
@@ -5,0 +5,0 @@ "repository": "https://github.com/Uniswap/conedison", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
23681
459