@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@one_deploy/sdk",
3
- "version": "1.2.3",
3
+ "version": "1.2.4",
4
4
  "description": "ONE Ecosystem SDK - Shared services, types, utilities, and React providers",
5
5
  "files": [
6
6
  "dist",
@@ -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();