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.70352cd.0 to 1.8.2-dev.95b4bab.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.70352cd.0+70352cd",
"version": "1.8.2-dev.95b4bab.0+95b4bab",
"description": "Provide the common data structures and interfaces for web3 modules.",

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

},
"gitHead": "70352cdf6fd6eff92b352ca5d6b3a07507fe5472"
"gitHead": "95b4bab9272f46544aecd7f034c5221e832cf2c1"
}

@@ -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