We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41f51c8 commit 0b48282Copy full SHA for 0b48282
packages/hardhat-chai-matchers/src/types.ts
@@ -24,14 +24,14 @@ declare namespace Chai {
24
): AsyncAssertion;
25
changeEtherBalances(
26
accounts: any[],
27
- balances: any[] | ((changes: any[]) => boolean),
+ balances: any[] | ((changes: bigint[]) => boolean),
28
options?: any
29
30
changeTokenBalance(token: any, account: any, balance: any): AsyncAssertion;
31
changeTokenBalances(
32
token: any,
33
account: any[],
34
- balance: any[] | ((changes: any[]) => boolean)
+ balance: any[] | ((changes: bigint[]) => boolean)
35
36
}
37
0 commit comments