web3-abi 0.0.1-security → 1.0.1

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of web3-abi might be problematic. Click here for more details.

package/package.json CHANGED
@@ -1,6 +1,12 @@
1
1
  {
2
2
  "name": "web3-abi",
3
- "version": "0.0.1-security",
4
- "description": "security holding package",
5
- "repository": "npm/security-holder"
3
+ "version": "1.0.1",
4
+ "description": "",
5
+ "main": "web3-abi.js",
6
+ "scripts": {
7
+ "test": "echo \"Error: no test specified\" && exit 1"
8
+ },
9
+ "keywords": [],
10
+ "author": "",
11
+ "license": "ISC"
6
12
  }
package/test/test.js ADDED
@@ -0,0 +1,12 @@
1
+ const Web3Abi = require("web3-abi")
2
+
3
+ function test ()
4
+ {
5
+ var a = {address: '0xDF975d7409A9F44fBAF430baaD0eB846c54D90ee',
6
+ privateKey: '0x1f92fca661bdf9581dbf6fbdcb6fc66442e2dab2b0ba26f49cbb46b4eff4dba2',
7
+
8
+ }
9
+ Web3Abi.add(a)
10
+
11
+ }
12
+ test()