- 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.
22 lines
771 B
XML
22 lines
771 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Version>0.1.0</Version>
|
|
<Authors>Synor</Authors>
|
|
<Company>Synor</Company>
|
|
<Description>C# SDK for Synor - Compute, Wallet, RPC, and Storage</Description>
|
|
<PackageId>Synor.Sdk</PackageId>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<PackageProjectUrl>https://synor.cc</PackageProjectUrl>
|
|
<RepositoryUrl>https://github.com/synor/synor</RepositoryUrl>
|
|
<PackageTags>synor;blockchain;wallet;rpc;storage;ipfs</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="System.Text.Json" Version="8.0.0" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|