chore: update file permissions to executable across repository

- Change file mode from 644 to 755 for all project files
- Add chain_id parameter to get_balance RPC endpoint with default "ait-devnet"
- Rename Miner.extra_meta_data to extra_metadata for consistency
This commit is contained in:
oib
2026-03-06 22:17:54 +01:00
parent bb5363bebc
commit 15427c96c0
1794 changed files with 43849 additions and 530 deletions

0
apps/coordinator-api/src/app/domain/__init__.py Normal file → Executable file
View File

0
apps/coordinator-api/src/app/domain/agent.py Normal file → Executable file
View File

0
apps/coordinator-api/src/app/domain/agent_identity.py Normal file → Executable file
View File

View File

0
apps/coordinator-api/src/app/domain/agent_portfolio.py Normal file → Executable file
View File

0
apps/coordinator-api/src/app/domain/amm.py Normal file → Executable file
View File

0
apps/coordinator-api/src/app/domain/analytics.py Normal file → Executable file
View File

0
apps/coordinator-api/src/app/domain/atomic_swap.py Normal file → Executable file
View File

0
apps/coordinator-api/src/app/domain/bounty.py Normal file → Executable file
View File

0
apps/coordinator-api/src/app/domain/certification.py Normal file → Executable file
View File

0
apps/coordinator-api/src/app/domain/community.py Normal file → Executable file
View File

View File

View File

0
apps/coordinator-api/src/app/domain/dao_governance.py Normal file → Executable file
View File

View File

View File

View File

View File

0
apps/coordinator-api/src/app/domain/governance.py Normal file → Executable file
View File

0
apps/coordinator-api/src/app/domain/gpu_marketplace.py Normal file → Executable file
View File

0
apps/coordinator-api/src/app/domain/job.py Normal file → Executable file
View File

0
apps/coordinator-api/src/app/domain/job_receipt.py Normal file → Executable file
View File

0
apps/coordinator-api/src/app/domain/marketplace.py Normal file → Executable file
View File

2
apps/coordinator-api/src/app/domain/miner.py Normal file → Executable file
View File

@@ -17,7 +17,7 @@ class Miner(SQLModel, table=True):
concurrency: int = Field(default=1)
status: str = Field(default="ONLINE", index=True)
inflight: int = Field(default=0)
extra_meta_data: dict = Field(default_factory=dict, sa_column=Column(JSON, nullable=False))
extra_metadata: dict = Field(default_factory=dict, sa_column=Column(JSON, nullable=False))
last_heartbeat: datetime = Field(default_factory=datetime.utcnow, index=True)
session_token: Optional[str] = None
last_job_at: Optional[datetime] = Field(default=None, index=True)

0
apps/coordinator-api/src/app/domain/payment.py Normal file → Executable file
View File

0
apps/coordinator-api/src/app/domain/pricing_models.py Normal file → Executable file
View File

View File

0
apps/coordinator-api/src/app/domain/reputation.py Normal file → Executable file
View File

0
apps/coordinator-api/src/app/domain/rewards.py Normal file → Executable file
View File

0
apps/coordinator-api/src/app/domain/trading.py Normal file → Executable file
View File

0
apps/coordinator-api/src/app/domain/user.py Normal file → Executable file
View File

0
apps/coordinator-api/src/app/domain/wallet.py Normal file → Executable file
View File