Comparing version 4.15.1-dev.e79ace2.0 to 4.16.0
@@ -11,9 +11,9 @@ import { encodeParameters } from 'web3-eth-abi'; | ||
encodeParameters: typeof encodeParameters; | ||
decodeParameter: (abi: import("web3-types").AbiInput, bytes: string) => unknown; | ||
decodeParameters: (abi: import("web3-types").AbiInput[] | readonly import("web3-types").AbiInput[], bytes: string) => { | ||
decodeParameter: (abi: import("web3-types").AbiInput, bytes: import("web3-types").HexString) => unknown; | ||
decodeParameters: (abi: import("web3-types").AbiInput[] | ReadonlyArray<import("web3-types").AbiInput>, bytes: import("web3-types").HexString) => { | ||
[key: string]: unknown; | ||
__length__: number; | ||
}; | ||
decodeLog: <ReturnType_1 extends import("web3-types").DecodedParams>(inputs: readonly import("web3-types").AbiParameter[] | import("web3-types").AbiParameter[], data: string, topics: string | string[]) => ReturnType_1; | ||
decodeLog: <ReturnType extends import("web3-types").DecodedParams>(inputs: Array<import("web3-types").AbiParameter> | ReadonlyArray<import("web3-types").AbiParameter>, data: import("web3-types").HexString, topics: string | string[]) => ReturnType; | ||
}; | ||
export default _default; |
@@ -15,36 +15,36 @@ import { EthExecutionAPI, Bytes, Transaction, KeyStore } from 'web3-types'; | ||
signTransaction: (transaction: Transaction) => Promise<import("web3-types").SignTransactionResult>; | ||
address: string; | ||
privateKey: string; | ||
sign: (data: string | Record<string, unknown>) => import("web3-types").SignResult; | ||
encrypt: (password: string, options?: Record<string, unknown> | undefined) => Promise<KeyStore>; | ||
address: import("web3-types").HexString; | ||
privateKey: import("web3-types").HexString; | ||
sign: (data: Record<string, unknown> | string) => import("web3-types").SignResult; | ||
encrypt: (password: string, options?: Record<string, unknown>) => Promise<KeyStore>; | ||
}; | ||
privateKeyToAccount: (privateKey: Uint8Array | string) => { | ||
signTransaction: (transaction: Transaction) => Promise<import("web3-types").SignTransactionResult>; | ||
address: string; | ||
privateKey: string; | ||
sign: (data: string | Record<string, unknown>) => import("web3-types").SignResult; | ||
encrypt: (password: string, options?: Record<string, unknown> | undefined) => Promise<KeyStore>; | ||
address: import("web3-types").HexString; | ||
privateKey: import("web3-types").HexString; | ||
sign: (data: Record<string, unknown> | string) => import("web3-types").SignResult; | ||
encrypt: (password: string, options?: Record<string, unknown>) => Promise<KeyStore>; | ||
}; | ||
decrypt: (keystore: KeyStore | string, password: string, options?: Record<string, unknown>) => Promise<{ | ||
signTransaction: (transaction: Transaction) => Promise<import("web3-types").SignTransactionResult>; | ||
address: string; | ||
privateKey: string; | ||
sign: (data: string | Record<string, unknown>) => import("web3-types").SignResult; | ||
encrypt: (password: string, options?: Record<string, unknown> | undefined) => Promise<KeyStore>; | ||
address: import("web3-types").HexString; | ||
privateKey: import("web3-types").HexString; | ||
sign: (data: Record<string, unknown> | string) => import("web3-types").SignResult; | ||
encrypt: (password: string, options?: Record<string, unknown>) => Promise<KeyStore>; | ||
}>; | ||
recoverTransaction: (rawTransaction: string) => string; | ||
hashMessage: (message: string, skipPrefix?: boolean | undefined) => string; | ||
recoverTransaction: (rawTransaction: import("web3-types").HexString) => import("web3-types").Address; | ||
hashMessage: (message: string, skipPrefix?: boolean) => string; | ||
sign: (data: string, privateKey: Bytes) => import("web3-types").SignResult; | ||
recover: (data: string | import("web3-types").SignatureObject, signatureOrV?: string | undefined, prefixedOrR?: string | boolean | undefined, s?: string | undefined, prefixed?: boolean | undefined) => string; | ||
encrypt: (privateKey: Bytes, password: string | Uint8Array, options?: import("web3-types").CipherOptions | undefined) => Promise<KeyStore>; | ||
recover: (data: string | import("web3-types").SignatureObject, signatureOrV?: string, prefixedOrR?: boolean | string, s?: string, prefixed?: boolean) => import("web3-types").Address; | ||
encrypt: (privateKey: Bytes, password: string | Uint8Array, options?: import("web3-types").CipherOptions) => Promise<KeyStore>; | ||
wallet: Wallet<{ | ||
signTransaction: (transaction: Transaction) => Promise<import("web3-types").SignTransactionResult>; | ||
address: string; | ||
privateKey: string; | ||
sign: (data: string | Record<string, unknown>) => import("web3-types").SignResult; | ||
encrypt: (password: string, options?: Record<string, unknown> | undefined) => Promise<KeyStore>; | ||
address: import("web3-types").HexString; | ||
privateKey: import("web3-types").HexString; | ||
sign: (data: Record<string, unknown> | string) => import("web3-types").SignResult; | ||
encrypt: (password: string, options?: Record<string, unknown>) => Promise<KeyStore>; | ||
}>; | ||
privateKeyToAddress: (privateKey: Bytes) => string; | ||
parseAndValidatePrivateKey: (data: Bytes, ignoreLength?: boolean | undefined) => Uint8Array; | ||
parseAndValidatePrivateKey: (data: Bytes, ignoreLength?: boolean) => Uint8Array; | ||
privateKeyToPublicKey: (privateKey: Bytes, isCompressed: boolean) => string; | ||
}; |
"use strict"; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
exports.Web3PkgInfo = void 0; | ||
/* eslint-disable header/header */ exports.Web3PkgInfo = { version: '4.15.0' }; | ||
/* eslint-disable header/header */ exports.Web3PkgInfo = { version: '4.16.0' }; | ||
//# sourceMappingURL=version.js.map |
@@ -16,3 +16,3 @@ import { Web3APISpec, EIP1193Provider } from 'web3-types'; | ||
} | ||
export declare type EIP6963ProviderResponse = Map<string, EIP6963ProviderDetail>; | ||
export type EIP6963ProviderResponse = Map<string, EIP6963ProviderDetail>; | ||
export interface EIP6963AnnounceProviderEvent<API = Web3APISpec> extends CustomEvent { | ||
@@ -19,0 +19,0 @@ type: Eip6963EventName.eip6963announceProvider; |
@@ -33,3 +33,3 @@ "use strict"; | ||
Eip6963EventName["eip6963requestProvider"] = "eip6963:requestProvider"; | ||
})(Eip6963EventName = exports.Eip6963EventName || (exports.Eip6963EventName = {})); | ||
})(Eip6963EventName || (exports.Eip6963EventName = Eip6963EventName = {})); | ||
exports.eip6963ProvidersMap = new Map(); | ||
@@ -42,3 +42,3 @@ exports.web3ProvidersMapUpdated = 'web3:providersMapUpdated'; | ||
} | ||
window.addEventListener(Eip6963EventName.eip6963announceProvider, (event) => { | ||
window.addEventListener(Eip6963EventName.eip6963announceProvider, ((event) => { | ||
exports.eip6963ProvidersMap.set(event.detail.info.uuid, event.detail); | ||
@@ -48,3 +48,3 @@ const newEvent = new CustomEvent(exports.web3ProvidersMapUpdated, { detail: exports.eip6963ProvidersMap }); | ||
resolve(exports.eip6963ProvidersMap); | ||
}); | ||
})); | ||
window.dispatchEvent(new Event(Eip6963EventName.eip6963requestProvider)); | ||
@@ -51,0 +51,0 @@ }); |
@@ -158,3 +158,3 @@ "use strict"; | ||
// ENS module | ||
ens: self.use(web3_eth_ens_1.ENS, web3_eth_ens_1.registryAddresses.main), | ||
ens: self.use(web3_eth_ens_1.ENS, web3_eth_ens_1.registryAddresses.main), // registry address defaults to main network | ||
// Iban helpers | ||
@@ -161,0 +161,0 @@ Iban: // registry address defaults to main network |
@@ -1,2 +0,2 @@ | ||
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.15.0' }; | ||
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.16.0' }; | ||
//# sourceMappingURL=version.js.map |
@@ -38,3 +38,3 @@ /* | ||
} | ||
window.addEventListener(Eip6963EventName.eip6963announceProvider, (event) => { | ||
window.addEventListener(Eip6963EventName.eip6963announceProvider, ((event) => { | ||
eip6963ProvidersMap.set(event.detail.info.uuid, event.detail); | ||
@@ -44,3 +44,3 @@ const newEvent = new CustomEvent(web3ProvidersMapUpdated, { detail: eip6963ProvidersMap }); | ||
resolve(eip6963ProvidersMap); | ||
}); | ||
})); | ||
window.dispatchEvent(new Event(Eip6963EventName.eip6963requestProvider)); | ||
@@ -47,0 +47,0 @@ }); |
@@ -129,3 +129,3 @@ /* | ||
// ENS module | ||
ens: self.use(ENS, registryAddresses.main), | ||
ens: self.use(ENS, registryAddresses.main), // registry address defaults to main network | ||
// Iban helpers | ||
@@ -132,0 +132,0 @@ Iban, |
@@ -11,10 +11,10 @@ import { encodeParameters } from 'web3-eth-abi'; | ||
encodeParameters: typeof encodeParameters; | ||
decodeParameter: (abi: import("web3-types").AbiInput, bytes: string) => unknown; | ||
decodeParameters: (abi: import("web3-types").AbiInput[] | readonly import("web3-types").AbiInput[], bytes: string) => { | ||
decodeParameter: (abi: import("web3-types").AbiInput, bytes: import("web3-types").HexString) => unknown; | ||
decodeParameters: (abi: import("web3-types").AbiInput[] | ReadonlyArray<import("web3-types").AbiInput>, bytes: import("web3-types").HexString) => { | ||
[key: string]: unknown; | ||
__length__: number; | ||
}; | ||
decodeLog: <ReturnType_1 extends import("web3-types").DecodedParams>(inputs: readonly import("web3-types").AbiParameter[] | import("web3-types").AbiParameter[], data: string, topics: string | string[]) => ReturnType_1; | ||
decodeLog: <ReturnType extends import("web3-types").DecodedParams>(inputs: Array<import("web3-types").AbiParameter> | ReadonlyArray<import("web3-types").AbiParameter>, data: import("web3-types").HexString, topics: string | string[]) => ReturnType; | ||
}; | ||
export default _default; | ||
//# sourceMappingURL=abi.d.ts.map |
@@ -15,37 +15,37 @@ import { EthExecutionAPI, Bytes, Transaction, KeyStore } from 'web3-types'; | ||
signTransaction: (transaction: Transaction) => Promise<import("web3-types").SignTransactionResult>; | ||
address: string; | ||
privateKey: string; | ||
sign: (data: string | Record<string, unknown>) => import("web3-types").SignResult; | ||
encrypt: (password: string, options?: Record<string, unknown> | undefined) => Promise<KeyStore>; | ||
address: import("web3-types").HexString; | ||
privateKey: import("web3-types").HexString; | ||
sign: (data: Record<string, unknown> | string) => import("web3-types").SignResult; | ||
encrypt: (password: string, options?: Record<string, unknown>) => Promise<KeyStore>; | ||
}; | ||
privateKeyToAccount: (privateKey: Uint8Array | string) => { | ||
signTransaction: (transaction: Transaction) => Promise<import("web3-types").SignTransactionResult>; | ||
address: string; | ||
privateKey: string; | ||
sign: (data: string | Record<string, unknown>) => import("web3-types").SignResult; | ||
encrypt: (password: string, options?: Record<string, unknown> | undefined) => Promise<KeyStore>; | ||
address: import("web3-types").HexString; | ||
privateKey: import("web3-types").HexString; | ||
sign: (data: Record<string, unknown> | string) => import("web3-types").SignResult; | ||
encrypt: (password: string, options?: Record<string, unknown>) => Promise<KeyStore>; | ||
}; | ||
decrypt: (keystore: KeyStore | string, password: string, options?: Record<string, unknown>) => Promise<{ | ||
signTransaction: (transaction: Transaction) => Promise<import("web3-types").SignTransactionResult>; | ||
address: string; | ||
privateKey: string; | ||
sign: (data: string | Record<string, unknown>) => import("web3-types").SignResult; | ||
encrypt: (password: string, options?: Record<string, unknown> | undefined) => Promise<KeyStore>; | ||
address: import("web3-types").HexString; | ||
privateKey: import("web3-types").HexString; | ||
sign: (data: Record<string, unknown> | string) => import("web3-types").SignResult; | ||
encrypt: (password: string, options?: Record<string, unknown>) => Promise<KeyStore>; | ||
}>; | ||
recoverTransaction: (rawTransaction: string) => string; | ||
hashMessage: (message: string, skipPrefix?: boolean | undefined) => string; | ||
recoverTransaction: (rawTransaction: import("web3-types").HexString) => import("web3-types").Address; | ||
hashMessage: (message: string, skipPrefix?: boolean) => string; | ||
sign: (data: string, privateKey: Bytes) => import("web3-types").SignResult; | ||
recover: (data: string | import("web3-types").SignatureObject, signatureOrV?: string | undefined, prefixedOrR?: string | boolean | undefined, s?: string | undefined, prefixed?: boolean | undefined) => string; | ||
encrypt: (privateKey: Bytes, password: string | Uint8Array, options?: import("web3-types").CipherOptions | undefined) => Promise<KeyStore>; | ||
recover: (data: string | import("web3-types").SignatureObject, signatureOrV?: string, prefixedOrR?: boolean | string, s?: string, prefixed?: boolean) => import("web3-types").Address; | ||
encrypt: (privateKey: Bytes, password: string | Uint8Array, options?: import("web3-types").CipherOptions) => Promise<KeyStore>; | ||
wallet: Wallet<{ | ||
signTransaction: (transaction: Transaction) => Promise<import("web3-types").SignTransactionResult>; | ||
address: string; | ||
privateKey: string; | ||
sign: (data: string | Record<string, unknown>) => import("web3-types").SignResult; | ||
encrypt: (password: string, options?: Record<string, unknown> | undefined) => Promise<KeyStore>; | ||
address: import("web3-types").HexString; | ||
privateKey: import("web3-types").HexString; | ||
sign: (data: Record<string, unknown> | string) => import("web3-types").SignResult; | ||
encrypt: (password: string, options?: Record<string, unknown>) => Promise<KeyStore>; | ||
}>; | ||
privateKeyToAddress: (privateKey: Bytes) => string; | ||
parseAndValidatePrivateKey: (data: Bytes, ignoreLength?: boolean | undefined) => Uint8Array; | ||
parseAndValidatePrivateKey: (data: Bytes, ignoreLength?: boolean) => Uint8Array; | ||
privateKeyToPublicKey: (privateKey: Bytes, isCompressed: boolean) => string; | ||
}; | ||
//# sourceMappingURL=accounts.d.ts.map |
@@ -16,3 +16,3 @@ import { Web3APISpec, EIP1193Provider } from 'web3-types'; | ||
} | ||
export declare type EIP6963ProviderResponse = Map<string, EIP6963ProviderDetail>; | ||
export type EIP6963ProviderResponse = Map<string, EIP6963ProviderDetail>; | ||
export interface EIP6963AnnounceProviderEvent<API = Web3APISpec> extends CustomEvent { | ||
@@ -19,0 +19,0 @@ type: Eip6963EventName.eip6963announceProvider; |
{ | ||
"name": "web3", | ||
"version": "4.15.1-dev.e79ace2.0+e79ace2", | ||
"version": "4.16.0", | ||
"description": "Ethereum JavaScript API", | ||
@@ -85,25 +85,25 @@ "main": "./lib/commonjs/index.js", | ||
"ts-jest": "^29.1.1", | ||
"typescript": "^4.7.4", | ||
"web3-providers-ipc": "4.0.8-dev.e79ace2.0+e79ace2" | ||
"typescript": "^5.5.4", | ||
"web3-providers-ipc": "^4.0.7" | ||
}, | ||
"dependencies": { | ||
"web3-core": "4.7.1-dev.e79ace2.0+e79ace2", | ||
"web3-errors": "1.3.1-dev.e79ace2.0+e79ace2", | ||
"web3-eth": "4.11.1-dev.e79ace2.0+e79ace2", | ||
"web3-eth-abi": "4.4.1-dev.e79ace2.0+e79ace2", | ||
"web3-eth-accounts": "4.3.1-dev.e79ace2.0+e79ace2", | ||
"web3-eth-contract": "4.7.2-dev.e79ace2.0+e79ace2", | ||
"web3-eth-ens": "4.4.1-dev.e79ace2.0+e79ace2", | ||
"web3-eth-iban": "4.0.8-dev.e79ace2.0+e79ace2", | ||
"web3-eth-personal": "4.1.1-dev.e79ace2.0+e79ace2", | ||
"web3-net": "4.1.1-dev.e79ace2.0+e79ace2", | ||
"web3-providers-http": "4.2.1-dev.e79ace2.0+e79ace2", | ||
"web3-providers-ws": "4.0.9-dev.e79ace2.0+e79ace2", | ||
"web3-rpc-methods": "1.3.1-dev.e79ace2.0+e79ace2", | ||
"web3-rpc-providers": "1.0.0-dev.e79ace2.0+e79ace2", | ||
"web3-types": "1.9.1-dev.e79ace2.0+e79ace2", | ||
"web3-utils": "4.3.3-dev.e79ace2.0+e79ace2", | ||
"web3-validator": "2.0.7-dev.e79ace2.0+e79ace2" | ||
"web3-core": "^4.7.1", | ||
"web3-errors": "^1.3.1", | ||
"web3-eth": "^4.11.1", | ||
"web3-eth-abi": "^4.4.1", | ||
"web3-eth-accounts": "^4.3.1", | ||
"web3-eth-contract": "^4.7.2", | ||
"web3-eth-ens": "^4.4.0", | ||
"web3-eth-iban": "^4.0.7", | ||
"web3-eth-personal": "^4.1.0", | ||
"web3-net": "^4.1.0", | ||
"web3-providers-http": "^4.2.0", | ||
"web3-providers-ws": "^4.0.8", | ||
"web3-rpc-methods": "^1.3.0", | ||
"web3-rpc-providers": "^1.0.0-rc.4", | ||
"web3-types": "^1.10.0", | ||
"web3-utils": "^4.3.3", | ||
"web3-validator": "^2.0.6" | ||
}, | ||
"gitHead": "e79ace2900e19a089a04ae47727125e68da46501" | ||
"gitHead": "aa197b8f7914ff336423c4081459c9bf7867c4b3" | ||
} |
@@ -1,1 +0,1 @@ | ||
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.15.0' }; | ||
/* eslint-disable header/header */ export const Web3PkgInfo = { version: '4.16.0' }; |
@@ -66,16 +66,15 @@ /* | ||
window.addEventListener( | ||
Eip6963EventName.eip6963announceProvider as any, | ||
(event: EIP6963AnnounceProviderEvent) => { | ||
eip6963ProvidersMap.set(event.detail.info.uuid, event.detail); | ||
window.addEventListener(Eip6963EventName.eip6963announceProvider, (( | ||
event: EIP6963AnnounceProviderEvent, | ||
) => { | ||
eip6963ProvidersMap.set(event.detail.info.uuid, event.detail); | ||
const newEvent: EIP6963ProvidersMapUpdateEvent = new CustomEvent( | ||
web3ProvidersMapUpdated, | ||
{ detail: eip6963ProvidersMap }, | ||
); | ||
const newEvent: EIP6963ProvidersMapUpdateEvent = new CustomEvent( | ||
web3ProvidersMapUpdated, | ||
{ detail: eip6963ProvidersMap }, | ||
); | ||
window.dispatchEvent(newEvent); | ||
resolve(eip6963ProvidersMap); | ||
}, | ||
); | ||
window.dispatchEvent(newEvent); | ||
resolve(eip6963ProvidersMap); | ||
}) as EventListenerOrEventListenerObject); | ||
@@ -93,3 +92,6 @@ window.dispatchEvent(new Event(Eip6963EventName.eip6963requestProvider)); | ||
} | ||
window.addEventListener(web3ProvidersMapUpdated as any, callback); | ||
window.addEventListener( | ||
web3ProvidersMapUpdated, | ||
callback as EventListenerOrEventListenerObject, | ||
); | ||
}; |
Sorry, the diff of this file is too big to display
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
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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
Manifest confusion
Supply chain riskThis package has inconsistent metadata. This could be malicious or caused by an error when publishing the package.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
82
1
0
3455883
6001
+ Added@adraffy/ens-normalize@1.11.0(transitive)
+ Added@ethereumjs/rlp@4.0.15.0.2(transitive)
+ Added@noble/curves@1.4.2(transitive)
+ Added@noble/hashes@1.4.0(transitive)
+ Added@scure/base@1.1.9(transitive)
+ Added@scure/bip32@1.4.0(transitive)
+ Added@scure/bip39@1.3.0(transitive)
+ Added@types/node@22.10.2(transitive)
+ Added@types/ws@8.5.3(transitive)
+ Addedabitype@0.7.1(transitive)
+ Addedavailable-typed-arrays@1.0.7(transitive)
+ Addedcall-bind@1.0.8(transitive)
+ Addedcall-bind-apply-helpers@1.0.1(transitive)
+ Addedcall-bound@1.0.3(transitive)
+ Addedcrc-32@1.2.2(transitive)
+ Addedcross-fetch@4.1.0(transitive)
+ Addeddefine-data-property@1.1.4(transitive)
+ Addeddunder-proto@1.0.1(transitive)
+ Addedes-define-property@1.0.1(transitive)
+ Addedes-errors@1.3.0(transitive)
+ Addedes-object-atoms@1.0.0(transitive)
+ Addedethereum-cryptography@2.2.1(transitive)
+ Addedeventemitter3@5.0.1(transitive)
+ Addedfor-each@0.3.3(transitive)
+ Addedfunction-bind@1.1.2(transitive)
+ Addedget-intrinsic@1.2.6(transitive)
+ Addedgopd@1.2.0(transitive)
+ Addedhas-property-descriptors@1.0.2(transitive)
+ Addedhas-symbols@1.1.0(transitive)
+ Addedhas-tostringtag@1.0.2(transitive)
+ Addedhasown@2.0.2(transitive)
+ Addedinherits@2.0.4(transitive)
+ Addedis-arguments@1.2.0(transitive)
+ Addedis-callable@1.2.7(transitive)
+ Addedis-generator-function@1.0.10(transitive)
+ Addedis-typed-array@1.1.15(transitive)
+ Addedisomorphic-ws@5.0.0(transitive)
+ Addedmath-intrinsics@1.1.0(transitive)
+ Addednode-fetch@2.7.0(transitive)
+ Addedpossible-typed-array-names@1.0.0(transitive)
+ Addedset-function-length@1.2.2(transitive)
+ Addedsetimmediate@1.0.5(transitive)
+ Addedtr46@0.0.3(transitive)
+ Addedtypescript@5.7.2(transitive)
+ Addedundici-types@6.20.0(transitive)
+ Addedutil@0.12.5(transitive)
+ Addedweb3-core@4.7.1(transitive)
+ Addedweb3-errors@1.3.1(transitive)
+ Addedweb3-eth@4.11.1(transitive)
+ Addedweb3-eth-abi@4.4.1(transitive)
+ Addedweb3-eth-accounts@4.3.1(transitive)
+ Addedweb3-eth-contract@4.7.2(transitive)
+ Addedweb3-eth-ens@4.4.0(transitive)
+ Addedweb3-eth-iban@4.0.7(transitive)
+ Addedweb3-eth-personal@4.1.0(transitive)
+ Addedweb3-net@4.1.0(transitive)
+ Addedweb3-providers-http@4.2.0(transitive)
+ Addedweb3-providers-ipc@4.0.7(transitive)
+ Addedweb3-providers-ws@4.0.8(transitive)
+ Addedweb3-rpc-methods@1.3.0(transitive)
+ Addedweb3-rpc-providers@1.0.0-rc.4(transitive)
+ Addedweb3-types@1.10.0(transitive)
+ Addedweb3-utils@4.3.3(transitive)
+ Addedweb3-validator@2.0.6(transitive)
+ Addedwebidl-conversions@3.0.1(transitive)
+ Addedwhatwg-url@5.0.0(transitive)
+ Addedwhich-typed-array@1.1.18(transitive)
+ Addedws@8.18.0(transitive)
+ Addedzod@3.24.1(transitive)
Updatedweb3-core@^4.7.1
Updatedweb3-errors@^1.3.1
Updatedweb3-eth@^4.11.1
Updatedweb3-eth-abi@^4.4.1
Updatedweb3-eth-accounts@^4.3.1
Updatedweb3-eth-contract@^4.7.2
Updatedweb3-eth-ens@^4.4.0
Updatedweb3-eth-iban@^4.0.7
Updatedweb3-eth-personal@^4.1.0
Updatedweb3-net@^4.1.0
Updatedweb3-providers-http@^4.2.0
Updatedweb3-providers-ws@^4.0.8
Updatedweb3-rpc-methods@^1.3.0
Updatedweb3-types@^1.10.0
Updatedweb3-utils@^4.3.3
Updatedweb3-validator@^2.0.6