@avalabs/avacloud-waas-react 1.0.8 → 1.0.9
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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1646,7 +1646,7 @@ var queryClient = new import_react_query2.QueryClient({
|
|
|
1646
1646
|
}
|
|
1647
1647
|
});
|
|
1648
1648
|
function getCubistEnv(environment) {
|
|
1649
|
-
return environment === "
|
|
1649
|
+
return environment === "gamma" || environment === "development" ? import_cubesigner_sdk.envs.gamma : import_cubesigner_sdk.envs.prod;
|
|
1650
1650
|
}
|
|
1651
1651
|
function ViemProviderWrapper({ children, chainId }) {
|
|
1652
1652
|
const { data: blockchain } = useBlockchain(chainId.toString());
|
package/dist/index.mjs
CHANGED
|
@@ -1600,7 +1600,7 @@ var queryClient = new QueryClient({
|
|
|
1600
1600
|
}
|
|
1601
1601
|
});
|
|
1602
1602
|
function getCubistEnv(environment) {
|
|
1603
|
-
return environment === "
|
|
1603
|
+
return environment === "gamma" || environment === "development" ? envs.gamma : envs.prod;
|
|
1604
1604
|
}
|
|
1605
1605
|
function ViemProviderWrapper({ children, chainId }) {
|
|
1606
1606
|
const { data: blockchain } = useBlockchain(chainId.toString());
|