Skip to content
This repository has been archived by the owner on Nov 9, 2023. It is now read-only.

Commit

Permalink
Rename JsonRpcProvider to LegacyEthereumProvider
Browse files Browse the repository at this point in the history
  • Loading branch information
mcmire committed Jul 27, 2023
1 parent ca9c9f4 commit f499310
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
export * from './json-rpc-provider';
export * from './legacy-ethereum-provider';
export * from './provider-from-engine';
export * from './provider-from-middleware';
4 changes: 2 additions & 2 deletions src/json-rpc-provider.ts → src/legacy-ethereum-provider.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { JsonRpcRequest } from 'json-rpc-engine';

/**
* The interface for the JSON-RPC provider.
* The interface for a legacy Ethereum provider.
*
* This provider follows conventions that pre-date
* [EIP-1193](https://eips.ethereum.org/EIPS/eip-1193). It is not compliant with
* any Ethereum provider standard.
*/
export type JsonRpcProvider = {
export type LegacyEthereumProvider = {
/**
* Send a provider request asynchronously.
*
Expand Down

0 comments on commit f499310

Please sign in to comment.