@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/dist/index.d.cts
CHANGED
|
@@ -128,7 +128,7 @@ declare const EVM_ZERO_SIGNATURE = "0x000000000000000000000000000000000000000000
|
|
|
128
128
|
* normalized on either side, so leave it untouched.)
|
|
129
129
|
*/
|
|
130
130
|
declare function normalizeNativeEvmTokenForSigning(tokenAddress: string): string;
|
|
131
|
-
declare const TOKEN_SEARCH_API_BASE_URL = "https://
|
|
131
|
+
declare const TOKEN_SEARCH_API_BASE_URL = "https://token-search-api.vercel.app";
|
|
132
132
|
|
|
133
133
|
type StopLossType = 'FIXED' | 'TRAILING_ABSOLUTE' | 'TRAILING_PERCENT';
|
|
134
134
|
type ExtraTransfer$1 = {
|
package/dist/index.d.ts
CHANGED
|
@@ -128,7 +128,7 @@ declare const EVM_ZERO_SIGNATURE = "0x000000000000000000000000000000000000000000
|
|
|
128
128
|
* normalized on either side, so leave it untouched.)
|
|
129
129
|
*/
|
|
130
130
|
declare function normalizeNativeEvmTokenForSigning(tokenAddress: string): string;
|
|
131
|
-
declare const TOKEN_SEARCH_API_BASE_URL = "https://
|
|
131
|
+
declare const TOKEN_SEARCH_API_BASE_URL = "https://token-search-api.vercel.app";
|
|
132
132
|
|
|
133
133
|
type StopLossType = 'FIXED' | 'TRAILING_ABSOLUTE' | 'TRAILING_PERCENT';
|
|
134
134
|
type ExtraTransfer$1 = {
|
package/dist/index.js
CHANGED
|
@@ -242,7 +242,7 @@ var init_constants = __esm({
|
|
|
242
242
|
SUI_GUARD_COLLATERAL_TYPE = "0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC";
|
|
243
243
|
SUI_GUARD_STABLECOIN_TYPE = "0xdba34672e30cb065b1f93e3ab55318768fd6fef66c15942c9f7cb846e2f900e7::usdc::USDC";
|
|
244
244
|
auctioneerUrlOverride = typeof process !== "undefined" ? process.env?.INTENTS_AUCTIONEER_URL : void 0;
|
|
245
|
-
AUCTIONEER_URL = auctioneerUrlOverride || (useProdConfig ? "https://
|
|
245
|
+
AUCTIONEER_URL = auctioneerUrlOverride || (useProdConfig ? "https://intents.shogun.bot" : "http://127.0.0.1:8080");
|
|
246
246
|
MAX_UINT_32 = 2n ** 32n - 1n;
|
|
247
247
|
MAX_UINT_64 = 2n ** 64n - 1n;
|
|
248
248
|
MAX_UINT_128 = 2n ** 128n - 1n;
|
|
@@ -262,7 +262,7 @@ var init_constants = __esm({
|
|
|
262
262
|
NATIVE_SUI_TOKEN_ADDRESS = "0x0000000000000000000000000000000000000000000000000000000000000002::sui::SUI";
|
|
263
263
|
EVM_ZERO_ADDRESS = "0x0000000000000000000000000000000000000000";
|
|
264
264
|
EVM_ZERO_SIGNATURE = "0x0000000000000000000000000000000000000000000000000000000000000000";
|
|
265
|
-
TOKEN_SEARCH_API_BASE_URL = "https://
|
|
265
|
+
TOKEN_SEARCH_API_BASE_URL = "https://token-search-api.vercel.app";
|
|
266
266
|
}
|
|
267
267
|
});
|
|
268
268
|
|