🚨 Latest Research:Tanstack npm Packages Compromised in Ongoing Mini Shai-Hulud Supply-Chain Attack.Learn More
Socket
Book a DemoSign in
Socket

@meshsdk/react

Package Overview
Dependencies
Maintainers
2
Versions
180
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@meshsdk/react - npm Package Compare versions

Comparing version
1.1.9
to
1.1.10-beta.1
+1
-1
package.json

@@ -6,3 +6,3 @@ {

"author": "MeshJS",
"version": "1.1.9",
"version": "1.1.10-beta.1",
"license": "Apache-2.0",

@@ -9,0 +9,0 @@ "type": "module",

@@ -5,5 +5,8 @@ export { WalletContext } from './WalletContext';

export const MeshProvider = ({ children }) => {
interface Props {
children: React.ReactNode
}
export const MeshProvider: React.FC<Props> = ({children}): JSX.Element => {
const store = useWalletStore();
return (

@@ -10,0 +13,0 @@ <WalletContext.Provider value={store}>