hardhat-scilla-plugin
Version:
Hardhat TypeScript plugin for scilla testing
16 lines • 573 B
TypeScript
import { BigNumber } from "@ethersproject/bignumber";
export interface EventParam {
type?: string;
value?: string | BigNumber | number | boolean;
vname?: string;
}
declare global {
export namespace Chai {
interface Assertion {
eventLog(eventName: string): Promise<void>;
eventLogWithParams(eventName: string, ...params: EventParam[]): Promise<void>;
}
}
}
export declare const scillaChaiEventMatcher: (static_chai: Chai.ChaiStatic, _utils: Chai.ChaiUtils) => void;
//# sourceMappingURL=ScillaChaiMatchers.d.ts.map