Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@metamask-previews/network-controller

Package Overview
Dependencies
Maintainers
2
Versions
420
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@metamask-previews/network-controller - npm Package Compare versions

Comparing version 17.0.0-preview.3fbb6b41 to 17.1.0-preview.c9a5f6a5

15

CHANGELOG.md

@@ -8,2 +8,4 @@ # Changelog

## [Unreleased]
## [17.1.0]
### Added

@@ -13,2 +15,12 @@ - Add `getNetworkConfigurationByNetworkClientId` method which can be used to retrieve details for both custom and built-in networks (using the network configuration object shape) ([#2055](https://github.com/MetaMask/core/pull/2055))

### Changed
- Bump `@metamask/base-controller` to `^4.0.1` ([#3695](https://github.com/MetaMask/core/pull/3695))
- Bump `@metamask/controller-utils` to `^8.0.1` ([#3695](https://github.com/MetaMask/core/pull/3695), [#3678](https://github.com/MetaMask/core/pull/3678), [#3667](https://github.com/MetaMask/core/pull/3667), [#3580](https://github.com/MetaMask/core/pull/3580))
- Bump `@metamask/eth-json-rpc-provider` to `^2.3.1` ([#3695](https://github.com/MetaMask/core/pull/3695))
- Bump `@metamask/json-rpc-engine` to `^7.3.1` ([#3695](https://github.com/MetaMask/core/pull/3695))
- Create new network clients before updating `networkConfigurations` state ([#3679](https://github.com/MetaMask/core/pull/3679))
- This primarily affects subscribers to the `NetworkController:stateChange` event. It's now safe to use a network client for any network that appears in the `networkConfigurations` state, whereas previously it was possible that synchronous attempts to access a network client in response to this event would fail.
- Add `NetworkState` payload to `NetworkController:networkWillChange` and `NetworkController:networkDidChange` ([#3598](https://github.com/MetaMask/core/pull/3598))
- Both of these events now include `NetworkState` as the first and only item in the payload
## [17.0.0]

@@ -323,3 +335,4 @@ ### Changed

[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@17.0.0...HEAD
[Unreleased]: https://github.com/MetaMask/core/compare/@metamask/network-controller@17.1.0...HEAD
[17.1.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@17.0.0...@metamask/network-controller@17.1.0
[17.0.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@16.0.0...@metamask/network-controller@17.0.0

@@ -326,0 +339,0 @@ [16.0.0]: https://github.com/MetaMask/core/compare/@metamask/network-controller@15.2.0...@metamask/network-controller@16.0.0

@@ -34,2 +34,4 @@ "use strict";

const providerProxy = new Proxy(UNINITIALIZED_TARGET, {
// TODO: Replace `any` with type
// eslint-disable-next-line @typescript-eslint/no-explicit-any
get(_target, propertyName, receiver) {

@@ -52,2 +54,4 @@ if (propertyName === REFLECTIVE_PROPERTY_NAME) {

// this allows private properties to be accessed
// TODO: Replace `any` with type
// eslint-disable-next-line @typescript-eslint/no-explicit-any
return function (...args) {

@@ -64,2 +68,4 @@ // @ts-expect-error We don't care that `this` may not be compatible

},
// TODO: Replace `any` with type
// eslint-disable-next-line @typescript-eslint/no-explicit-any
has(_target, propertyName) {

@@ -75,2 +81,4 @@ if (propertyName === REFLECTIVE_PROPERTY_NAME) {

const blockTrackerProxy = new Proxy(UNINITIALIZED_TARGET, {
// TODO: Replace `any` with type
// eslint-disable-next-line @typescript-eslint/no-explicit-any
get(_target, propertyName, receiver) {

@@ -93,2 +101,4 @@ if (propertyName === REFLECTIVE_PROPERTY_NAME) {

// this allows private properties to be accessed
// TODO: Replace `any` with type
// eslint-disable-next-line @typescript-eslint/no-explicit-any
return function (...args) {

@@ -105,2 +115,4 @@ // @ts-expect-error We don't care that `this` may not be

},
// TODO: Replace `any` with type
// eslint-disable-next-line @typescript-eslint/no-explicit-any
has(_target, propertyName) {

@@ -107,0 +119,0 @@ if (propertyName === REFLECTIVE_PROPERTY_NAME) {

15

dist/NetworkController.js

@@ -54,3 +54,6 @@ "use strict";

*/
function knownKeysOf(object) {
function knownKeysOf(
// TODO: Replace `any` with type
// eslint-disable-next-line @typescript-eslint/no-explicit-any
object) {
return Object.keys(object);

@@ -81,2 +84,4 @@ }

*/
// TODO: Replace `any` with type
// eslint-disable-next-line @typescript-eslint/no-explicit-any
function pick(object, keys) {

@@ -626,2 +631,4 @@ const pickedObject = keys.reduce((finalObject, key) => {

new URL(rpcUrl);
// TODO: Replace `any` with type
// eslint-disable-next-line @typescript-eslint/no-explicit-any
}

@@ -642,5 +649,2 @@ catch (e) {

const networkClientId = buildCustomNetworkClientId(upsertedNetworkConfigurationId);
this.update((state) => {
state.networkConfigurations[upsertedNetworkConfigurationId] = Object.assign({ id: upsertedNetworkConfigurationId }, sanitizedNetworkConfiguration);
});
const customNetworkClientRegistry = autoManagedNetworkClientRegistry[types_1.NetworkClientType.Custom];

@@ -663,2 +667,5 @@ const existingAutoManagedNetworkClient = customNetworkClientRegistry[networkClientId];

}
this.update((state) => {
state.networkConfigurations[upsertedNetworkConfigurationId] = Object.assign({ id: upsertedNetworkConfigurationId }, sanitizedNetworkConfiguration);
});
if (!existingNetworkConfiguration) {

@@ -665,0 +672,0 @@ __classPrivateFieldGet(this, _NetworkController_trackMetaMetricsEvent, "f").call(this, {

{
"name": "@metamask-previews/network-controller",
"version": "17.0.0-preview.3fbb6b41",
"version": "17.1.0-preview.c9a5f6a5",
"description": "Provides an interface to the currently selected network via a MetaMask-compatible provider object",

@@ -25,2 +25,3 @@ "keywords": [

"build:docs": "typedoc",
"changelog:update": "../../scripts/update-changelog.sh @metamask/network-controller",
"changelog:validate": "../../scripts/validate-changelog.sh @metamask/network-controller",

@@ -34,9 +35,9 @@ "publish:preview": "yarn npm publish --tag preview",

"dependencies": {
"@metamask/base-controller": "^4.0.0",
"@metamask/controller-utils": "^6.1.0",
"@metamask/base-controller": "^4.0.1",
"@metamask/controller-utils": "^8.0.1",
"@metamask/eth-json-rpc-infura": "^9.0.0",
"@metamask/eth-json-rpc-middleware": "^12.0.1",
"@metamask/eth-json-rpc-provider": "^2.3.0",
"@metamask/eth-json-rpc-provider": "^2.3.1",
"@metamask/eth-query": "^4.0.0",
"@metamask/json-rpc-engine": "^7.3.0",
"@metamask/json-rpc-engine": "^7.3.1",
"@metamask/rpc-errors": "^6.1.0",

@@ -52,3 +53,3 @@ "@metamask/swappable-obj-proxy": "^2.1.0",

"@json-rpc-specification/meta-schema": "^1.0.6",
"@metamask/auto-changelog": "^3.4.3",
"@metamask/auto-changelog": "^3.4.4",
"@types/jest": "^27.4.1",

@@ -55,0 +56,0 @@ "@types/jest-when": "^2.7.3",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

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