@one_deploy/sdk 1.2.3 → 1.2.4
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/components/index.js.map +1 -1
- package/dist/components/index.mjs.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/providers/index.js +1 -1
- package/dist/providers/index.js.map +1 -1
- package/dist/providers/index.mjs +1 -1
- package/dist/providers/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/providers/OneProvider.tsx +1 -1
- package/src/providers/ThirdwebProvider.tsx +1 -1
package/package.json
CHANGED
|
@@ -215,7 +215,7 @@ export function OneProvider({
|
|
|
215
215
|
useEffect(() => {
|
|
216
216
|
const fetchClientConfig = async () => {
|
|
217
217
|
try {
|
|
218
|
-
const response = await fetch(`${config.oneEngineUrl}/v1/config/thirdweb`);
|
|
218
|
+
const response = await fetch(`${config.oneEngineUrl}/api/v1/config/thirdweb`);
|
|
219
219
|
|
|
220
220
|
if (response.ok) {
|
|
221
221
|
const data = await response.json();
|
|
@@ -120,7 +120,7 @@ export function OneThirdwebProvider({
|
|
|
120
120
|
const fetchClientConfig = async () => {
|
|
121
121
|
try {
|
|
122
122
|
const engineUrl = config.engineUrl || DEFAULT_ENGINE_URL;
|
|
123
|
-
const response = await fetch(`${engineUrl}/v1/config/thirdweb`);
|
|
123
|
+
const response = await fetch(`${engineUrl}/api/v1/config/thirdweb`);
|
|
124
124
|
|
|
125
125
|
if (response.ok) {
|
|
126
126
|
const data = await response.json();
|