solhint-plugin-mud 2.0.5 → 2.0.6-account-kit-35a2dcc2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,7 @@
1
1
  # Change Log
2
2
 
3
+ ## 2.0.6-account-kit-35a2dcc2
4
+
3
5
  ## 2.0.5
4
6
 
5
7
  ## 2.0.4
@@ -0,0 +1,32 @@
1
+ import { ContractDefinition, MemberAccess, SourceUnit } from '@solidity-parser/parser/dist/src/ast-types';
2
+
3
+ interface SolhintRule {
4
+ ruleId: string;
5
+ reporter: any;
6
+ config: any;
7
+ }
8
+
9
+ declare class NoMsgSender implements SolhintRule {
10
+ ruleId: string;
11
+ reporter: any;
12
+ config: any;
13
+ isSystemOrLibrary: boolean;
14
+ constructor(reporter: any, config: any);
15
+ ContractDefinition(node: ContractDefinition): void;
16
+ "ContractDefinition:exit"(): void;
17
+ MemberAccess(node: MemberAccess): void;
18
+ }
19
+
20
+ declare class SystemFileName implements SolhintRule {
21
+ ruleId: string;
22
+ reporter: any;
23
+ config: any;
24
+ expectedContractName: string;
25
+ isSystemFile: boolean;
26
+ constructor(reporter: any, config: any, inputSrc: string, fileName: string);
27
+ SourceUnit(node: SourceUnit): void;
28
+ }
29
+
30
+ declare const _default: (typeof NoMsgSender | typeof SystemFileName)[];
31
+
32
+ export { _default as default };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "solhint-plugin-mud",
3
- "version": "2.0.5",
3
+ "version": "2.0.6-account-kit-35a2dcc2",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/latticexyz/mud.git",