@brightchain/s3-store
v0.29.8
Published
Amazon S3 block store driver for BrightChain. Implements `IBlockStore` and `IPooledBlockStore` backed by S3.
Readme
@brightchain/s3-store
Amazon S3 block store driver for BrightChain. Implements IBlockStore and IPooledBlockStore backed by S3.
Usage
import '@brightchain/s3-store'; // registers factory
import { BlockStoreFactory } from '@brightchain/brightchain-lib';
const store = BlockStoreFactory.createS3Store({
region: 'us-east-1',
containerOrBucketName: 'my-brightchain-bucket',
blockSize: BlockSize.Small,
accessKeyId: '...',
secretAccessKey: '...',
});