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

web3-types

Package Overview
Dependencies
Maintainers
5
Versions
345
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

web3-types - npm Package Compare versions

Comparing version 1.8.2-dev.4ca66af.0 to 1.8.2-dev.69d83e7.0

2

lib/commonjs/eth_abi_types.d.ts

@@ -126,3 +126,3 @@ import { Address } from './eth_types.js';

ArrToObjectWithFunctions<[...ContractMethodOutputParametersRecursiveArray<Params>]> & ContractMethodOutputParametersRecursiveRecord<Params> : [];
export declare type ContractMethodInputParameters<Params extends ReadonlyArray<unknown> | undefined> = Params extends readonly [] ? [] : Params extends readonly [infer H, ...infer R] ? H extends AbiParameter ? [
export declare type ContractMethodInputParameters<Params extends ReadonlyArray<unknown> | undefined> = Params extends undefined ? any[] : Params extends readonly [] ? [] : Params extends readonly [infer H, ...infer R] ? H extends AbiParameter ? [
MatchPrimitiveType<H['type'], H['components']>,

@@ -129,0 +129,0 @@ ...ContractMethodInputParameters<R>

@@ -126,3 +126,3 @@ import { Address } from './eth_types.js';

ArrToObjectWithFunctions<[...ContractMethodOutputParametersRecursiveArray<Params>]> & ContractMethodOutputParametersRecursiveRecord<Params> : [];
export declare type ContractMethodInputParameters<Params extends ReadonlyArray<unknown> | undefined> = Params extends readonly [] ? [] : Params extends readonly [infer H, ...infer R] ? H extends AbiParameter ? [
export declare type ContractMethodInputParameters<Params extends ReadonlyArray<unknown> | undefined> = Params extends undefined ? any[] : Params extends readonly [] ? [] : Params extends readonly [infer H, ...infer R] ? H extends AbiParameter ? [
MatchPrimitiveType<H['type'], H['components']>,

@@ -129,0 +129,0 @@ ...ContractMethodInputParameters<R>

{
"name": "web3-types",
"version": "1.8.2-dev.4ca66af.0+4ca66af",
"version": "1.8.2-dev.69d83e7.0+69d83e7",
"description": "Provide the common data structures and interfaces for web3 modules.",

@@ -59,3 +59,3 @@ "main": "./lib/commonjs/index.js",

},
"gitHead": "4ca66af181a46f134df514d3bd7b67c4c440f159"
"gitHead": "69d83e72126939308bbee19be80f8edb80d64e47"
}

@@ -323,3 +323,5 @@ /*

export type ContractMethodInputParameters<Params extends ReadonlyArray<unknown> | undefined> =
Params extends readonly []
Params extends undefined
? any[]
: Params extends readonly []
? []

@@ -326,0 +328,0 @@ : Params extends readonly [infer H, ...infer R]

Sorry, the diff of this file is not supported yet

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