@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/dist/index.cjs +2 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/constants.ts +2 -2
package/package.json
CHANGED
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://
|
|
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://
|
|
207
|
+
export const TOKEN_SEARCH_API_BASE_URL = 'https://token-search-api.vercel.app';
|