Skip to content

Commit

Permalink
fix : linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Harman-singh-waraich committed Apr 11, 2024
1 parent f2c7e18 commit 4ab9a61
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions packages/siwe/lib/ethersCompat.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 4ab9a61

Please sign in to comment.