defistream 1.0.3__tar.gz → 1.0.4__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: defistream
3
- Version: 1.0.3
3
+ Version: 1.0.4
4
4
  Summary: Python client for the DeFiStream API
5
5
  Project-URL: Homepage, https://defistream.dev
6
6
  Project-URL: Documentation, https://docs.defistream.dev
@@ -413,7 +413,7 @@ print(f"Request cost: {client.last_response.request_cost}")
413
413
 
414
414
  | Method | Protocols | Description |
415
415
  |--------|-----------|-------------|
416
- | `.token(symbol)` | ERC20 | Token symbol (USDT, USDC) or contract address |
416
+ | `.token(symbol)` | ERC20 | Token symbol (USDT, USDC) or contract address (required) |
417
417
  | `.sender(addr)` | ERC20, Native | Filter by sender address |
418
418
  | `.receiver(addr)` | ERC20, Native | Filter by receiver address |
419
419
  | `.min_amount(amt)` | ERC20, Native | Minimum transfer amount |
@@ -379,7 +379,7 @@ print(f"Request cost: {client.last_response.request_cost}")
379
379
 
380
380
  | Method | Protocols | Description |
381
381
  |--------|-----------|-------------|
382
- | `.token(symbol)` | ERC20 | Token symbol (USDT, USDC) or contract address |
382
+ | `.token(symbol)` | ERC20 | Token symbol (USDT, USDC) or contract address (required) |
383
383
  | `.sender(addr)` | ERC20, Native | Filter by sender address |
384
384
  | `.receiver(addr)` | ERC20, Native | Filter by receiver address |
385
385
  | `.min_amount(amt)` | ERC20, Native | Minimum transfer amount |
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
4
4
 
5
5
  [project]
6
6
  name = "defistream"
7
- version = "1.0.3"
7
+ version = "1.0.4"
8
8
  description = "Python client for the DeFiStream API"
9
9
  readme = "README.md"
10
10
  license = "MIT"
@@ -45,7 +45,7 @@ from .models import (
45
45
  )
46
46
  from .query import AsyncQueryBuilder, QueryBuilder
47
47
 
48
- __version__ = "1.0.3"
48
+ __version__ = "1.0.4"
49
49
 
50
50
  __all__ = [
51
51
  # Clients
File without changes
File without changes
File without changes
File without changes