Gathering detailed insights and metrics for @types/web3-provider-engine
Gathering detailed insights and metrics for @types/web3-provider-engine
Gathering detailed insights and metrics for @types/web3-provider-engine
Gathering detailed insights and metrics for @types/web3-provider-engine
The repository for high quality TypeScript type definitions.
npm install @types/web3-provider-engine
Typescript
Module System
TypeScript (99.84%)
JavaScript (0.15%)
Shell (0.01%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
NOASSERTION License
50,020 Stars
89,737 Commits
30,435 Forks
640 Watchers
6 Branches
9,957 Contributors
Updated on Jul 12, 2025
Latest Version
14.0.4
Package Id
@types/web3-provider-engine@14.0.4
Unpacked Size
4.67 kB
Size
1.87 kB
File Count
5
Published on
Nov 07, 2023
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
1
npm install --save @types/web3-provider-engine
This package contains type definitions for web3-provider-engine (https://github.com/MetaMask/provider-engine#readme).
Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/web3-provider-engine.
1import { JSONRPCRequestPayload, JSONRPCResponsePayload, Provider } from "ethereum-protocol"; 2interface Web3ProviderEngineOptions { 3 pollingInterval?: number | undefined; 4 blockTracker?: any; 5 blockTrackerProvider?: any; 6} 7declare class Web3ProviderEngine implements Provider { 8 constructor(options?: Web3ProviderEngineOptions); 9 on(event: string, handler: () => void): void; 10 send(payload: JSONRPCRequestPayload): void; 11 sendAsync( 12 payload: JSONRPCRequestPayload, 13 callback: ( 14 error: null | Error, 15 response: JSONRPCResponsePayload, 16 ) => void, 17 ): void; 18 addProvider(provider: any): void; 19 // start block polling 20 start(callback?: () => void): void; 21 // stop block polling 22 stop(): void; 23} 24export = Web3ProviderEngine; 25 26// declare module "web3-provider-engine/subproviders/nonce-tracker"; 27// declare module "web3-provider-engine/subproviders/hooked-wallet"; 28// declare module "web3-provider-engine/subproviders/filters"; 29
These definitions were written by Leonid Logvinov.
No vulnerabilities found.
Reason
30 commit(s) and 1 issue activity found in the last 90 days -- score normalized to 10
Reason
security policy file detected
Details
Reason
no dangerous workflow patterns detected
Reason
0 existing vulnerabilities detected
Reason
no binaries found in the repo
Reason
Found 27/30 approved changesets -- score normalized to 9
Reason
license file detected
Details
Reason
dependency not pinned by hash detected -- score normalized to 8
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
detected GitHub workflow tokens with excessive permissions
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
project is not fuzzed
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More