diff --git a/packages/siwe/lib/ethersCompat.ts b/packages/siwe/lib/ethersCompat.ts index 74fc5eb9..0d83d40a 100644 --- a/packages/siwe/lib/ethersCompat.ts +++ b/packages/siwe/lib/ethersCompat.ts @@ -5,26 +5,26 @@ type Ethers6BigNumberish = string | number | bigint; type Ethers6SignatureLike = | string | { - r: string; - s: string; - v: Ethers6BigNumberish; - yParity?: 0 | 1; - yParityAndS?: string; - } + r: string; + s: string; + v: Ethers6BigNumberish; + yParity?: 0 | 1; + yParityAndS?: string; + } | { - r: string; - yParityAndS: string; - yParity?: 0 | 1; - s?: string; - v?: number; - } + r: string; + yParityAndS: string; + yParity?: 0 | 1; + s?: string; + v?: number; + } | { - r: string; - s: string; - yParity: 0 | 1; - v?: Ethers6BigNumberish; - yParityAndS?: string; - }; + r: string; + s: string; + yParity: 0 | 1; + v?: Ethers6BigNumberish; + yParityAndS?: string; + }; let ethersVerifyMessage = null; let ethersHashMessage = null;