Skip to content
This repository was archived by the owner on Mar 5, 2025. It is now read-only.

Commit f701406

Browse files
authored
Export EIP-6963 Types (#7270)
* Export EIP-6963 Types * CHANGELOG * Comments from Review
1 parent facc2e6 commit f701406

File tree

3 files changed

+5
-1
lines changed

3 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2740,3 +2740,7 @@ If there are any bugs, improvements, optimizations or any new feature proposal f
27402740
#### web3-eth
27412741

27422742
- Allow `getEthereumjsTxDataFrom` to return additional fields that may be passed if using a `customTransactionSchema`.
2743+
2744+
#### web3
2745+
2746+
- Exported EIP-6963 types are no longer under the `providers` namespace. (#7270)

packages/web3/src/index.ts

+1
Original file line numberDiff line numberDiff line change
@@ -327,6 +327,7 @@ along with web3.js. If not, see <http://www.gnu.org/licenses/>.
327327
import Web3 from './web3.js';
328328

329329
export * from './types.js';
330+
export * from './web3_eip6963.js';
330331
export default Web3;
331332

332333
/**

packages/web3/src/providers.exports.ts

-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ export { Eip1193Provider, SocketProvider } from 'web3-utils';
1919

2020
export * as http from 'web3-providers-http';
2121
export * as ws from 'web3-providers-ws';
22-
export * from './web3_eip6963.js';

0 commit comments

Comments
 (0)