fere-sdk 0.5.0.dev37__tar.gz → 0.5.0.dev39__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.
- {fere_sdk-0.5.0.dev37 → fere_sdk-0.5.0.dev39}/PKG-INFO +1 -1
- {fere_sdk-0.5.0.dev37 → fere_sdk-0.5.0.dev39}/pyproject.toml +1 -1
- {fere_sdk-0.5.0.dev37 → fere_sdk-0.5.0.dev39}/src/fere_sdk/client.py +6 -1
- {fere_sdk-0.5.0.dev37 → fere_sdk-0.5.0.dev39}/.gitignore +0 -0
- {fere_sdk-0.5.0.dev37 → fere_sdk-0.5.0.dev39}/README.md +0 -0
- {fere_sdk-0.5.0.dev37 → fere_sdk-0.5.0.dev39}/src/fere_sdk/__init__.py +0 -0
- {fere_sdk-0.5.0.dev37 → fere_sdk-0.5.0.dev39}/src/fere_sdk/auth.py +0 -0
- {fere_sdk-0.5.0.dev37 → fere_sdk-0.5.0.dev39}/src/fere_sdk/low_level.py +0 -0
- {fere_sdk-0.5.0.dev37 → fere_sdk-0.5.0.dev39}/src/fere_sdk/models.py +0 -0
- {fere_sdk-0.5.0.dev37 → fere_sdk-0.5.0.dev39}/src/fere_sdk/perp_models.py +0 -0
- {fere_sdk-0.5.0.dev37 → fere_sdk-0.5.0.dev39}/src/fere_sdk/spot_models.py +0 -0
|
@@ -173,7 +173,12 @@ class FereClient:
|
|
|
173
173
|
timeout: int = DEFAULT_TIMEOUT,
|
|
174
174
|
**kwargs,
|
|
175
175
|
) -> dict:
|
|
176
|
-
"""Execute a swap and wait for completion.
|
|
176
|
+
"""Execute a swap and wait for completion.
|
|
177
|
+
|
|
178
|
+
Fully gasless for the user (no native gas token needed on any
|
|
179
|
+
chain). One call handles same-chain, cross-chain, and
|
|
180
|
+
EVM↔Solana bridge swaps, with bridging built in.
|
|
181
|
+
"""
|
|
177
182
|
req = SwapRequest(
|
|
178
183
|
chain_id_in=chain_id_in,
|
|
179
184
|
chain_id_out=chain_id_out,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|