- Implement SynorStorage class for decentralized storage operations including upload, download, pinning, and CAR file management. - Create supporting types and models for storage operations such as UploadOptions, Pin, and StorageConfig. - Implement SynorWallet class for wallet operations including wallet creation, address generation, transaction signing, and balance queries. - Create supporting types and models for wallet operations such as Wallet, Address, and Transaction. - Introduce error handling for both storage and wallet operations.
7 lines
152 B
TypeScript
7 lines
152 B
TypeScript
/**
|
|
* Synor Database SDK
|
|
* Multi-model database: Key-Value, Document, Vector, and Time Series
|
|
*/
|
|
|
|
export * from './types';
|
|
export * from './client';
|