fere-sdk 0.4.0.dev29__tar.gz → 0.4.0.dev31__tar.gz

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.
@@ -43,6 +43,9 @@ dev/logs/*
43
43
  .claude/skills/upgrade-stripe
44
44
  .agents/
45
45
 
46
+ # agentmemory iii state (SQLite + streams under .agentmemory/data/)
47
+ .agentmemory/data/
48
+
46
49
  # Local GEO upstream reference (optional clone; not part of the product tree)
47
50
  geo-seo/
48
51
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: fere-sdk
3
- Version: 0.4.0.dev29
3
+ Version: 0.4.0.dev31
4
4
  Summary: Python SDK for the FereAI Gateway API
5
5
  Author-email: Fere AI <info@fere.ai>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "fere-sdk"
3
- version = "0.4.0.dev29"
3
+ version = "0.4.0.dev31"
4
4
  description = "Python SDK for the FereAI Gateway API"
5
5
  readme = "README.md"
6
6
  requires-python = ">=3.10"
@@ -232,8 +232,7 @@ class FereClient:
232
232
  """Pre-check tokens for honeypot / scam / rug-pull flags.
233
233
 
234
234
  Pass a list of TokenToCheck or plain dicts with token_address
235
- and chain_id. If a token is flagged and the user still wants
236
- to proceed, call ``swap(..., bypass_security_check=True)``.
235
+ and chain_id.
237
236
  """
238
237
  normalized: list[TokenToCheck] = []
239
238
  for t in tokens:
@@ -320,9 +320,7 @@ class FereAPI:
320
320
  """POST /v1/security/check.
321
321
 
322
322
  Pre-check whether output tokens have been flagged by Honeypot.is
323
- (EVM) or RugCheck.xyz (Solana) before submitting a swap. If a
324
- token is flagged and the user still wants to proceed, pass
325
- bypass_security_check=true on the swap request.
323
+ (EVM) or RugCheck.xyz (Solana) before submitting a swap.
326
324
  """
327
325
  data = await self._authed_post(
328
326
  "/v1/security/check",
@@ -82,7 +82,6 @@ class SwapRequest:
82
82
  stop_loss: dict | None = None
83
83
  take_profit: dict | None = None
84
84
  cancel_conditional_orders: bool | None = None
85
- bypass_security_check: bool | None = None
86
85
 
87
86
  def to_dict(self) -> dict:
88
87
  d: dict = {
@@ -100,8 +99,6 @@ class SwapRequest:
100
99
  d["take_profit"] = self.take_profit
101
100
  if self.cancel_conditional_orders is not None:
102
101
  d["cancel_conditional_orders"] = self.cancel_conditional_orders
103
- if self.bypass_security_check is not None:
104
- d["bypass_security_check"] = self.bypass_security_check
105
102
  return d
106
103
 
107
104
 
File without changes