Skip to content

6.0.0

Compare
Choose a tag to compare
@github-actions github-actions released this 04 May 17:45
· 39 commits to main since this release
2c56140

Added

  • Add TypeScript type definitions (#58)

Changed

  • Rename package to @metamask/eth-json-rpc-infura (#61)
    • eth-json-rpc-infura is deprecated and future releases will no longer occur under this name.
  • Upgrade dependencies to make use of new TypeScript type definitions (#58)
    • eth-json-rpc-middleware: ^6.0.0 -> ^8.1.0 (changelog)
    • eth-rpc-errors: ^3.0.0 -> ^4.0.3 (changelog)
    • json-rpc-engine: ^5.3.0 -> ^6.1.0 (changelog)
  • BREAKING: Simplify exports (#58)
    • All existing exports are now available under the package entrypoint. For instance, instead of:
      import createProvider from 'eth-json-rpc-infura/src/createProvider';
      
      you must now say:
      import { createProvider } from '@metamask/eth-json-rpc-infura';
      
  • BREAKING: Add required Node version of >= 12 (#44)

Security