EBBuildClient 1.0.16

There is a newer version of this package available.
See the version list below for details.
dotnet add package EBBuildClient --version 1.0.16
                    
NuGet\Install-Package EBBuildClient -Version 1.0.16
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="EBBuildClient" Version="1.0.16" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="EBBuildClient" Version="1.0.16" />
                    
Directory.Packages.props
<PackageReference Include="EBBuildClient" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add EBBuildClient --version 1.0.16
                    
#r "nuget: EBBuildClient, 1.0.16"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package EBBuildClient@1.0.16
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=EBBuildClient&version=1.0.16
                    
Install as a Cake Addin
#tool nuget:?package=EBBuildClient&version=1.0.16
                    
Install as a Cake Tool

N|Solid

EB Build API Client

The Official API Client for Blockchain-based Cloud Storage Services!

Build Status


Features


If your application requires cloud storage of unstructured JSON or key/value paired data, the EB Build client is an affordable and extremely fast alernative to any of the following solutions:

  1. Couchbase
  2. Redis
  3. DynamoDB
  4. MongoDB

Benefits


  • ✨Extremely affordable fixed fee pricing!
  • ✨Extremely secure blockchain encryption!
  • ✨Extremely fast event messaging!
  • ✨Extremely scalable with built-in cluster-wide auto-scaling!
  • ✨Extremely simple integration with dynamic environments!

Obtaining an API Key


The EB Build Client requires an API key before using. Obtaining an API key is extremely easy! Follow the next steps to obtain an API key.

  • Send an email with your company name to: keyrequest@everythingblockchain.io

Installation Steps


#1 Install this EBBuild Client nuget package to your Microsoft Visual Studio project.
#2 Add an appsettings.json file to project, if you don't already have an appsettings.json file added.
#3 Add the following values to the root of your appsettings.json file added to your project:
- "EbbuildApiBaseUri": "https://api.ebiblockchain.io/",
- "QueryChainToken": [enter the API key obtained supplied to you.],
- "QueryChainRoles": [enter user groups here.  For example you could enter: "Testers"],

How To's


#1 After installing the EBBuildClient nuget package, add the following to your code:
      using EBBuildClient.Core;
#2 Defiine a data type that you want to store and or retrieve from the EBBuild cloud storage services.
    public class SampleDataClass
    {
        public string ID {get;set;}
        public string Name {get; set;}
        public AddressClass Address1 {get; set;}
    }
    public class AddressClass
    {
        public string City {get; set;}
        public string State {get; set;}
        public string Zip {get; set;}
    }
    
#3 Set the following required parameters.
    Microsoft.Extensions.Configuration.IConfiguration configuration;
    string email = "a valid email address";
    string tenantID = "any unique string to identify your organization";
    string ledgerPreface = "any string to identify your ledger.  i.e.: prod, qa, dev, crypto, etc.";
    string ledgerName = "any name of your ledger where your data class will be stored.  i.e. payments";
    
#4 Create an instance of the EBBuildClient instance.
    var EBBuildAPIServices = new EBBuildAPIService<SampleDataClass>(
    configuration, 
    email, 
    tenantID, 
    ledgerPreface,  
    ledgerName);
   
#5 After creating an instance of the EBBuild Client in step #4 you MUST call either of the two methods:
     NOTE: Call this is your want the most recent ledger record.
   - SampleDataClass record = await EBBuildAPIServices.GetLedgerRecord(); 
     NOTE: After calling this method, the internal context need to save updates is set and can be retrieved by calling:
   - EBBuildAPIServices.GetLedgerListResponseRecord();
    
     NOTE: If you want to retrieve multiple ledger block records, you must (first) define filter conditions.
   - List<string> ledgerFilterConditions = new List<string>() 
     { {"FirstName:EQ:Tom:AND"},{"Address1.State:IN:[New York;Phoenix;London;Miami;Berlin "} };
   
   - List<SampleDataClass> records = await EBBuildAPIServices.GetLedgerRecords(ledgerFilterConditions); 
     NOTE: After calling this method, the internal context need to save updates is set and can be retrieved by calling:
   - EBBuildAPIServices.GetLedgerListResponseRecords();
    
#6. Once the internal context has been set, you can save updated blocks to the ledger by calling the following method:
    - SampleDataClass dataContext = new SampleDataClass();
    - EBBuildAPIServices.SaveDataToLedger(dataContext);

Company Contact Information


Contact Email
Technical Support support@everythingblockchain.io
Sales sales@everythingblockchain.io
Partners partners@everythingblockchain.io
Marketing marketing@everythingblockchain.io
Investors invest@everythingblockchain.io
Press press@everythingblockchain.io

License


MIT- The API is and will always remain free! The data storage is based on a fixed fee. Contact EverythingBlockchain, Inc for details.

Product Compatible and additional computed target framework versions.
.NET net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 was computed.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
1.0.117 198 6/22/2024
1.0.116 170 5/29/2024
1.0.115 222 5/6/2024
1.0.114 210 4/16/2024
1.0.113 232 4/5/2024
1.0.112 444 2/21/2024
1.0.111 516 2/7/2024
1.0.110 567 2/4/2024
1.0.109 596 1/23/2024
1.0.108 829 12/20/2023
1.0.107 838 12/6/2023
1.0.106 846 12/5/2023
1.0.105 835 11/30/2023
1.0.104 816 11/30/2023
1.0.103 815 11/28/2023
1.0.102 838 11/28/2023
1.0.101 803 11/13/2023
1.0.100 809 11/13/2023
1.0.99 855 11/13/2023
1.0.98 805 11/10/2023
1.0.97 825 11/10/2023
1.0.96 818 11/9/2023
1.0.95 803 11/9/2023
1.0.94 825 11/9/2023
1.0.93 872 10/25/2023
1.0.92 842 10/23/2023
1.0.91 906 10/15/2023
1.0.90 845 10/11/2023
1.0.89 817 10/11/2023
1.0.88 857 10/10/2023
1.0.87 896 9/4/2023
1.0.86 1,009 8/15/2023
1.0.85 919 7/18/2023
1.0.84 922 7/6/2023
1.0.83 932 7/6/2023
1.0.82 937 7/1/2023
1.0.81 932 6/20/2023
1.0.80 920 5/12/2023
1.0.79 934 5/11/2023 1.0.79 is deprecated because it is no longer maintained.
1.0.78 976 5/4/2023 1.0.78 is deprecated because it is no longer maintained.
1.0.77 1,532 3/19/2023 1.0.77 is deprecated because it is no longer maintained.
1.0.76 1,060 3/15/2023 1.0.76 is deprecated because it is no longer maintained.
1.0.75 1,098 3/14/2023 1.0.75 is deprecated because it is no longer maintained.
1.0.74 1,141 3/14/2023 1.0.74 is deprecated because it is no longer maintained.
1.0.72 1,146 3/14/2023 1.0.72 is deprecated because it is no longer maintained.
1.0.71 1,162 3/10/2023 1.0.71 is deprecated because it is no longer maintained.
1.0.70 1,136 3/8/2023 1.0.70 is deprecated because it is no longer maintained.
1.0.69 1,170 3/3/2023 1.0.69 is deprecated because it is no longer maintained.
1.0.68 1,154 3/2/2023 1.0.68 is deprecated because it is no longer maintained.
1.0.67 1,136 3/2/2023 1.0.67 is deprecated because it is no longer maintained.
1.0.66 1,162 2/28/2023 1.0.66 is deprecated because it is no longer maintained.
1.0.65 1,176 2/21/2023 1.0.65 is deprecated because it is no longer maintained.
1.0.64 1,187 2/7/2023 1.0.64 is deprecated because it is no longer maintained.
1.0.63 1,158 2/7/2023 1.0.63 is deprecated because it is no longer maintained.
1.0.62 1,186 2/6/2023 1.0.62 is deprecated because it is no longer maintained.
1.0.61 1,206 2/3/2023 1.0.61 is deprecated because it is no longer maintained.
1.0.60 1,182 1/30/2023 1.0.60 is deprecated because it is no longer maintained.
1.0.59 1,219 1/29/2023 1.0.59 is deprecated because it is no longer maintained.
1.0.58 1,216 1/27/2023 1.0.58 is deprecated because it is no longer maintained.
1.0.57 1,189 1/27/2023 1.0.57 is deprecated because it is no longer maintained.
1.0.56 1,187 1/27/2023 1.0.56 is deprecated because it is no longer maintained.
1.0.55 1,237 1/27/2023 1.0.55 is deprecated because it is no longer maintained.
1.0.54 1,156 1/26/2023 1.0.54 is deprecated because it is no longer maintained.
1.0.53 1,194 1/26/2023 1.0.53 is deprecated because it is no longer maintained.
1.0.52 1,197 1/26/2023 1.0.52 is deprecated because it is no longer maintained.
1.0.51 1,211 1/26/2023 1.0.51 is deprecated because it is no longer maintained.
1.0.50 1,171 1/26/2023 1.0.50 is deprecated because it is no longer maintained.
1.0.49 1,184 1/26/2023 1.0.49 is deprecated because it is no longer maintained.
1.0.48 1,181 1/26/2023 1.0.48 is deprecated because it is no longer maintained.
1.0.47 1,219 1/25/2023 1.0.47 is deprecated because it is no longer maintained.
1.0.46 1,199 1/25/2023 1.0.46 is deprecated because it is no longer maintained.
1.0.45 1,220 1/25/2023 1.0.45 is deprecated because it is no longer maintained.
1.0.44 1,201 1/25/2023 1.0.44 is deprecated because it is no longer maintained.
1.0.43 1,206 1/24/2023 1.0.43 is deprecated because it is no longer maintained.
1.0.42 1,186 1/24/2023 1.0.42 is deprecated because it is no longer maintained.
1.0.41 1,200 1/24/2023 1.0.41 is deprecated because it is no longer maintained.
1.0.40 1,195 1/24/2023 1.0.40 is deprecated because it is no longer maintained.
1.0.39 1,211 1/24/2023 1.0.39 is deprecated because it is no longer maintained.
1.0.38 1,232 1/24/2023 1.0.38 is deprecated because it is no longer maintained.
1.0.37 1,241 1/23/2023 1.0.37 is deprecated because it is no longer maintained.
1.0.36 1,215 1/22/2023 1.0.36 is deprecated because it is no longer maintained.
1.0.35 1,223 1/22/2023 1.0.35 is deprecated because it is no longer maintained.
1.0.34 1,202 1/20/2023 1.0.34 is deprecated because it is no longer maintained.
1.0.33 1,231 1/20/2023 1.0.33 is deprecated because it is no longer maintained.
1.0.32 1,178 1/19/2023 1.0.32 is deprecated because it is no longer maintained.
1.0.31 1,425 1/19/2023 1.0.31 is deprecated because it is no longer maintained.
1.0.30 1,301 1/19/2023 1.0.30 is deprecated because it is no longer maintained.
1.0.29 1,238 1/19/2023 1.0.29 is deprecated because it is no longer maintained.
1.0.28 1,309 1/17/2023 1.0.28 is deprecated because it is no longer maintained.
1.0.27 1,315 1/17/2023 1.0.27 is deprecated because it is no longer maintained.
1.0.26 1,298 1/11/2023 1.0.26 is deprecated because it is no longer maintained.
1.0.25 1,342 12/9/2022 1.0.25 is deprecated because it is no longer maintained.
1.0.24 1,341 12/8/2022 1.0.24 is deprecated because it is no longer maintained.
1.0.23 1,276 12/8/2022 1.0.23 is deprecated because it is no longer maintained.
1.0.22 1,342 11/23/2022 1.0.22 is deprecated because it is no longer maintained.
1.0.21 1,307 11/23/2022 1.0.21 is deprecated because it is no longer maintained.
1.0.20 1,300 11/21/2022 1.0.20 is deprecated because it is no longer maintained.
1.0.18 1,206 11/21/2022 1.0.18 is deprecated because it is no longer maintained.
1.0.17 1,230 11/21/2022 1.0.17 is deprecated because it is no longer maintained.
1.0.16 1,268 11/18/2022 1.0.16 is deprecated because it is no longer maintained.
1.0.15 1,363 11/18/2022 1.0.15 is deprecated because it is no longer maintained.
1.0.14 1,434 11/18/2022 1.0.14 is deprecated because it is no longer maintained.
1.0.13 1,445 11/18/2022 1.0.13 is deprecated because it is no longer maintained.
1.0.9 3,047 11/18/2022 1.0.9 is deprecated because it is no longer maintained.
1.0.8 2,963 11/17/2022 1.0.8 is deprecated because it is no longer maintained.
1.0.7 2,995 11/17/2022 1.0.7 is deprecated because it is no longer maintained.
1.0.6 2,876 11/17/2022 1.0.6 is deprecated because it is no longer maintained.
1.0.5 2,967 11/17/2022 1.0.5 is deprecated because it is no longer maintained.
1.0.4 2,781 11/17/2022 1.0.4 is deprecated because it is no longer maintained.
1.0.3 2,974 11/17/2022 1.0.3 is deprecated because it is no longer maintained.
1.0.2 3,053 11/17/2022 1.0.2 is deprecated because it is no longer maintained.
1.0.1 2,991 11/17/2022 1.0.1 is deprecated because it is no longer maintained.
1.0.0 3,182 11/17/2022 1.0.0 is deprecated because it is no longer maintained.

EBBuild Client for .NetCore 6.0 and above