Socket
Socket
Sign inDemoInstall

web3-utils

Package Overview
Dependencies
Maintainers
2
Versions
453
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

web3-utils - npm Package Compare versions

Comparing version 1.0.0-beta.48 to 1.0.0-beta.49

LICENSE

8

package.json
{
"name": "web3-utils",
"namespace": "ethereum",
"version": "1.0.0-beta.48",
"version": "1.0.0-beta.49",
"description": "Collection of utility functions used in web3.js.",

@@ -32,3 +32,4 @@ "repository": "https://github.com/ethereum/web3.js/tree/1.0/packages/web3-utils",

"crypto-js": "3.1.9-1",
"dtslint": "^0.4.2"
"definitelytyped-header-parser": "^1.0.1",
"dtslint": "0.4.2"
},

@@ -38,3 +39,4 @@ "files": [

"types/index.d.ts"
]
],
"gitHead": "eb1452cdd1591e0f26ff0f66df68ee0feb3f8c47"
}

@@ -122,3 +122,3 @@ /*

export function testTopic(bloom: string, topic: string): boolean;
export function getSignatureParameters(signature: string): object;
export function getSignatureParameters(signature: string): {r: string; s: string; v: number};

@@ -172,3 +172,3 @@ // interfaces

testTopic(bloom: string, topic: string): boolean;
getSignatureParameters(signature: string): object;
getSignatureParameters(signature: string): {r: string; s: string; v: number};
}

@@ -214,3 +214,3 @@

name?: string;
outputs?: AbiOuput[];
outputs?: AbiOutput[];
payable?: boolean;

@@ -225,7 +225,9 @@ stateMutability?: StateMutabilityType;

indexed?: boolean;
components?: AbiInput[];
}
export interface AbiOuput {
export interface AbiOutput {
name: string;
type: string;
components?: AbiOutput[];
}
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc