feat: Decentralized GPU Render Protocol — RTC Payment Layer (Bounty #30, 100 RTC)#1843
Open
AliaksandrNazaruk wants to merge 1 commit intoScottcjn:mainfrom
Open
feat: Decentralized GPU Render Protocol — RTC Payment Layer (Bounty #30, 100 RTC)#1843AliaksandrNazaruk wants to merge 1 commit intoScottcjn:mainfrom
AliaksandrNazaruk wants to merge 1 commit intoScottcjn:mainfrom
Conversation
… (Bounty Scottcjn#30, 100 RTC) Implements the complete Decentralized GPU Render Protocol: - GPU Node Attestation with hardware fingerprinting (nvidia_gpu, amd_gpu, apple_gpu) - Render/Voice(TTS/STT)/LLM escrow payment endpoints - Pricing oracle with fair market rate tracking and manipulation detection - SQLite-backed storage with WAL mode for concurrent access - Flask route registration for integration with existing RustChain node - 12 unit tests, all passing Endpoints: POST /gpu/attest, GET /gpu/nodes, POST /render|voice|llm/escrow, POST /render|voice|llm/release, POST /render/refund, GET /render/pricing Related: BoTTube Scottcjn#39 (Render Marketplace)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Bounty #30 — Decentralized GPU Render Protocol (100 RTC)
Implements the complete GPU Render Protocol as specified in issue #30.
What's included:
GPU Node Attestation:
nvidia_gpu,amd_gpu,apple_gpudevice architecturesEscrow Payment Endpoints:
POST /render/escrow— Lock RTC for render jobsPOST /voice/escrow— Lock RTC for TTS/STT jobsPOST /llm/escrow— Lock RTC for inference jobsPOST /render|voice|llm/release— Release to GPU provider on completionPOST /render/refund— Refund on job failureGET /render/escrow/<job_id>— Check escrow statusPricing Oracle:
Database:
render_escrowtable with status trackinggpu_attestationstable with full spec storagepricing_historytable for oracle dataIntegration:
register_routes(app)Tests
12 unit tests, all passing ✅
Closes #30