File tree Expand file tree Collapse file tree 4 files changed +7
-4
lines changed
Expand file tree Collapse file tree 4 files changed +7
-4
lines changed Original file line number Diff line number Diff line change 11[tool .poetry ]
22name = " sakit"
3- version = " 14.0.2 "
3+ version = " 14.0.3 "
44description = " Solana Agent Kit"
55authors = [" Bevan Hunt <bevan@bevanhunt.com>" ]
66license = " MIT"
Original file line number Diff line number Diff line change @@ -239,7 +239,8 @@ async def execute(
239239 }
240240
241241 try :
242- async with httpx .AsyncClient (timeout = 60.0 ) as client :
242+ # Use longer timeout for execute - Jupiter waits for tx confirmation
243+ async with httpx .AsyncClient (timeout = 120.0 ) as client :
243244 response = await client .post (
244245 f"{ self .base_url } /execute" ,
245246 json = payload ,
Original file line number Diff line number Diff line change @@ -289,7 +289,8 @@ async def execute(
289289 }
290290
291291 try :
292- async with httpx .AsyncClient (timeout = 60.0 ) as client :
292+ # Use longer timeout for execute - Jupiter waits for tx confirmation
293+ async with httpx .AsyncClient (timeout = 120.0 ) as client :
293294 response = await client .post (
294295 f"{ self .base_url } /execute" ,
295296 json = payload ,
Original file line number Diff line number Diff line change @@ -165,7 +165,8 @@ async def execute_order(
165165 "requestId" : request_id ,
166166 }
167167
168- async with httpx .AsyncClient (timeout = 60.0 ) as client :
168+ # Use longer timeout for execute - Jupiter waits for tx confirmation
169+ async with httpx .AsyncClient (timeout = 120.0 ) as client :
169170 response = await client .post (
170171 f"{ self .base_url } /execute" ,
171172 json = payload ,
You can’t perform that action at this time.
0 commit comments