Skip to content

Commit 536713e

Browse files
v14.0.3 (#29)
1 parent 9564dc3 commit 536713e

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "sakit"
3-
version = "14.0.2"
3+
version = "14.0.3"
44
description = "Solana Agent Kit"
55
authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
66
license = "MIT"

sakit/utils/recurring.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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,

sakit/utils/trigger.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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,

sakit/utils/ultra.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)