@shogun-sdk/intents-sdk 1.4.3 → 1.4.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": "@shogun-sdk/intents-sdk",
3
- "version": "1.4.3",
3
+ "version": "1.4.4",
4
4
  "type": "module",
5
5
  "description": "Shogun Network Intent-based cross-chain swaps SDK",
6
6
  "author": "Shogun network",
package/src/constants.ts CHANGED
@@ -159,7 +159,7 @@ const auctioneerUrlOverride =
159
159
 
160
160
  export const AUCTIONEER_URL =
161
161
  auctioneerUrlOverride ||
162
- (useProdConfig ? 'https://auctioneer-825534211396.us-central1.run.app' : 'http://127.0.0.1:8080');
162
+ (useProdConfig ? 'https://intents.shogun.bot' : 'http://127.0.0.1:8080');
163
163
 
164
164
  export const MAX_UINT_32 = 2n ** 32n - 1n;
165
165
  export const MAX_UINT_64 = 2n ** 64n - 1n;
@@ -204,4 +204,4 @@ export function normalizeNativeEvmTokenForSigning(tokenAddress: string): string
204
204
  return isNativeEvmToken(tokenAddress) ? EVM_ZERO_ADDRESS : tokenAddress;
205
205
  }
206
206
 
207
- export const TOKEN_SEARCH_API_BASE_URL = 'https://shogun-token-search-api-825534211396.europe-west4.run.app';
207
+ export const TOKEN_SEARCH_API_BASE_URL = 'https://token-search-api.vercel.app';