Compare commits
7 Commits
43717b21fb
...
v0.2.3
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
116db87bd2 | ||
|
|
de6e153854 | ||
|
|
a20190b9b8 | ||
|
|
2dafa5dd73 | ||
|
|
f72d6768f8 | ||
|
|
209f1e46f5 | ||
|
|
a510b9bdb4 |
@@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "aitbc-blockchain-node"
|
||||
version = "v0.2.2"
|
||||
version = "v0.2.3"
|
||||
description = "AITBC blockchain node service"
|
||||
authors = ["AITBC Team"]
|
||||
packages = [
|
||||
|
||||
@@ -32,8 +32,8 @@ class RateLimitMiddleware(BaseHTTPMiddleware):
|
||||
|
||||
async def dispatch(self, request: Request, call_next):
|
||||
client_ip = request.client.host if request.client else "unknown"
|
||||
# Bypass rate limiting for localhost (sync/health internal traffic)
|
||||
if client_ip in {"127.0.0.1", "::1"}:
|
||||
# Bypass rate limiting for localhost and internal network (sync/health internal traffic)
|
||||
if client_ip in {"127.0.0.1", "::1", "10.1.223.93", "10.1.223.40"}:
|
||||
return await call_next(request)
|
||||
now = time.time()
|
||||
# Clean old entries
|
||||
|
||||
@@ -44,7 +44,7 @@ class ChainSettings(BaseSettings):
|
||||
max_txs_per_block: int = 500
|
||||
|
||||
# Monitoring interval (in seconds)
|
||||
blockchain_monitoring_interval_seconds: int = 10
|
||||
blockchain_monitoring_interval_seconds: int = 60
|
||||
min_fee: int = 0 # Minimum fee to accept into mempool
|
||||
|
||||
# Mempool settings
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "aitbc-coordinator-api"
|
||||
version = "0.1.0"
|
||||
version = "v0.2.3"
|
||||
description = "AITBC Coordinator API service"
|
||||
authors = ["AITBC Team"]
|
||||
packages = [
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "aitbc-pool-hub"
|
||||
version = "0.1.0"
|
||||
version = "v0.2.3"
|
||||
description = "AITBC Pool Hub Service"
|
||||
authors = ["AITBC Team <team@aitbc.dev>"]
|
||||
readme = "README.md"
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "aitbc-wallet-daemon"
|
||||
version = "0.1.0"
|
||||
version = "v0.2.3"
|
||||
description = "AITBC Wallet Daemon Service"
|
||||
authors = ["AITBC Team <team@aitbc.dev>"]
|
||||
readme = "README.md"
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
1
docs/openclaw/aitbc1_agent_training.md
Normal file
1
docs/openclaw/aitbc1_agent_training.md
Normal file
@@ -0,0 +1 @@
|
||||
# aitbc1 follower node agent training
|
||||
7716
packages/solidity/aitbc-token/package-lock.json
generated
Normal file
7716
packages/solidity/aitbc-token/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
@@ -1,6 +1,6 @@
|
||||
[tool.poetry]
|
||||
name = "aitbc"
|
||||
version = "0.1.0"
|
||||
version = "v0.2.3"
|
||||
description = "AI Agent Compute Network - Main Project"
|
||||
authors = ["AITBC Team"]
|
||||
|
||||
|
||||
Reference in New Issue
Block a user