@gelatonetwork/smartwallet-react-sdk 0.0.2-alpha.0 → 0.0.2-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @gelatonetwork/smartwallet-react-sdk
2
2
 
3
+ ## 0.0.2-alpha.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 1f2c254: fix: peer dependency
8
+ - Updated dependencies [1f2c254]
9
+ - @gelatonetwork/smartwallet-react-dynamic@0.0.2-alpha.1
10
+ - @gelatonetwork/smartwallet-react-privy@0.0.2-alpha.1
11
+ - @gelatonetwork/smartwallet-react-types@0.0.2-alpha.1
12
+
3
13
  ## 0.0.2-alpha.0
4
14
 
5
15
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
2
- import { GelatoSmartWalletDynamicConnectButton } from "@gelatodigital/smartwallet-react-dynamic";
3
- import { GelatoSmartWalletPrivyConnectButton } from "@gelatodigital/smartwallet-react-privy";
2
+ import { GelatoSmartWalletDynamicConnectButton } from "@gelatonetwork/smartwallet-react-dynamic";
3
+ import { GelatoSmartWalletPrivyConnectButton } from "@gelatonetwork/smartwallet-react-privy";
4
4
  import { useGelatoSmartWalletProviderContext } from "../provider.js";
5
5
  import { isDynamic } from "../utils/index.js";
6
6
  export const GelatoSmartWalletConnectButton = ({ children }) => {
package/_dist/index.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import type { wallet } from "@gelatodigital/smartwallet-react-types";
1
+ import type { wallet } from "@gelatonetwork/smartwallet-react-types";
2
2
  export { GelatoSmartWalletContextProvider, useGelatoSmartWalletProviderContext } from "./provider.js";
3
3
  export { GelatoSmartWalletConnectButton } from "./components/connect.js";
4
4
  export declare const dynamic: (appId: string) => {
@@ -1,4 +1,4 @@
1
- import type { wallet } from "@gelatodigital/smartwallet-react-types";
1
+ import type { wallet } from "@gelatonetwork/smartwallet-react-types";
2
2
  import type React from "react";
3
3
  interface GelatoSmartWalletProviderContextType extends wallet.ProviderContext {
4
4
  type: wallet.ProviderType;
package/_dist/provider.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import { jsx as _jsx, Fragment as _Fragment } from "react/jsx-runtime";
2
- import { GelatoSmartWalletDynamicContextProvider, useGelatoSmartWalletDynamicContext } from "@gelatodigital/smartwallet-react-dynamic";
3
- import { GelatoSmartWalletPrivyContextProvider, useGelatoSmartWalletPrivyContext } from "@gelatodigital/smartwallet-react-privy";
2
+ import { GelatoSmartWalletDynamicContextProvider, useGelatoSmartWalletDynamicContext } from "@gelatonetwork/smartwallet-react-dynamic";
3
+ import { GelatoSmartWalletPrivyContextProvider, useGelatoSmartWalletPrivyContext } from "@gelatonetwork/smartwallet-react-privy";
4
4
  import { createContext, useContext } from "react";
5
5
  import { isDynamic } from "./utils/index.js";
6
6
  const GelatoSmartWalletProviderContext = createContext(undefined);