Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

web3-eth-abi

Package Overview
Dependencies
Maintainers
1
Versions
491
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

web3-eth-abi - npm Package Compare versions

Comparing version 1.0.0-beta.24 to 1.0.0-beta.25

6

package.json
{
"name": "web3-eth-abi",
"namespace": "ethereum",
"version": "1.0.0-beta.24",
"version": "1.0.0-beta.25",
"description": "Web3 module encode and decode EVM in/output.",

@@ -12,5 +12,5 @@ "repository": "https://github.com/ethereum/web3.js/tree/master/packages/web3-eth-abi",

"underscore": "1.8.3",
"web3-core-helpers": "^1.0.0-beta.24",
"web3-utils": "^1.0.0-beta.24"
"web3-core-helpers": "^1.0.0-beta.25",
"web3-utils": "^1.0.0-beta.25"
}
}

@@ -65,2 +65,6 @@ /*

if (result.length > 64) {
throw new Error('Given parameter bytes is too long: "' + value + '"');
}
var l = Math.floor((result.length + 63) / 64);

@@ -162,3 +166,3 @@ result = utils.padRight(result, l * 64);

if(!value) {
if(!value && param.rawValue) {
throw new Error('Couldn\'t decode '+ name +' from ABI: 0x'+ param.rawValue);

@@ -165,0 +169,0 @@ }

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