We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 056cc29 + 82ff973 commit 88b2fdbCopy full SHA for 88b2fdb
package.json
@@ -16,6 +16,7 @@
16
"test:vp": "jest -i vp.test.ts",
17
"test:delegation": "jest -i delegation.test.ts",
18
"test:validation": "jest -i validation.test.ts",
19
+ "test:integration": "jest -i test/integration/",
20
"test:unit": "jest -i test/unit/",
21
"prepublishOnly": "npm run build",
22
"postinstall": "npm run build",
src/validations/validation.ts
@@ -31,6 +31,7 @@ export default class Validation {
31
this.params = params;
32
}
33
34
+ // TODO: validate invalid networks
35
async validate(customAuthor = this.author): Promise<boolean> {
36
try {
37
this.validateAddressType(customAuthor);
0 commit comments