feat: add S3-compatible storage interface (Layer 1)#19
Open
mudigal wants to merge 3 commits intofeat/file-systemfrom
Open
feat: add S3-compatible storage interface (Layer 1)#19mudigal wants to merge 3 commits intofeat/file-systemfrom
mudigal wants to merge 3 commits intofeat/file-systemfrom
Conversation
Implement S3-compatible storage interface that provides familiar S3 API semantics on top of Layer 0 blob storage. The S3 pallet internally creates Layer 0 buckets, encapsulating the storage layer from clients. Components: - s3-primitives: Core types (ObjectMetadata, S3BucketInfo) and validation - pallet-s3-registry: On-chain S3 bucket/object metadata with automatic Layer 0 bucket creation via create_bucket_internal() - s3-client: High-level SDK using subxt 0.44 for chain operations and storage-client for provider blob operations Key features: - Bucket operations: create, delete, head, list - Object operations: put, get, delete, copy, list with prefix/delimiter - S3 naming rules validation (3-63 chars, lowercase alphanumeric + hyphens) - Content-addressed storage via CID (blake2-256) - User-defined metadata support The architecture ensures clients only interact with the S3 layer while Layer 0 provides the underlying storage guarantees (checkpoints, challenges, slashing).
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.
Summary
Components Added
s3-primitivespallet-s3-registrys3-clientKey Features
Architecture
Test plan
cargo test -p s3-primitives- 3 tests passcargo test -p pallet-s3-registry- 10 tests passcargo test -p s3-client- 1 test passesjust s3-example)🤖 Generated with Claude Code