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

abitty

Package Overview
Dependencies
Maintainers
0
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

abitty - npm Package Compare versions

Comparing version 0.1.0 to 0.1.1

2

package.json
{
"name": "abitty",
"version": "0.1.0",
"version": "0.1.1",
"description": "Abitty cherry-picks specific functions from your Solidity ABIs and saves them for individual importing. Stop using thicc JSON files, start shaking that tree.",

@@ -5,0 +5,0 @@ "main": "dist/index.js",

@@ -34,2 +34,7 @@ #!/usr/bin/env node

const solidityTypeToTsType = (solidityType: string): string => {
const arrayMatch = solidityType.match(/(.+)\[\]$/);
if (arrayMatch) {
return `${solidityTypeToTsType(arrayMatch[1])}[]`;
}
switch (solidityType) {

@@ -36,0 +41,0 @@ case 'uint256':

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