AlgorandARC76Account 1.0.1

dotnet add package AlgorandARC76Account --version 1.0.1
NuGet\Install-Package AlgorandARC76Account -Version 1.0.1
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="AlgorandARC76Account" Version="1.0.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add AlgorandARC76Account --version 1.0.1
#r "nuget: AlgorandARC76Account, 1.0.1"
#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.
// Install AlgorandARC76Account as a Cake Addin
#addin nuget:?package=AlgorandARC76Account&version=1.0.1

// Install AlgorandARC76Account as a Cake Tool
#tool nuget:?package=AlgorandARC76Account&version=1.0.1

Algorand ARC76 Account

.NET implementation of Algorand ARC76 Account Standard

Nuget link

Usage

Please tell your users to use length of the password at least 50 chars long for best safety.

Install nuget

dotnet add package AlgorandARC76Account

Password account

Algorand.Algod.Model.Account account = AlgorandARC76AccountDotNet.ARC76.GetAccount("12345678901234567890123456789012345678901234567890");

Email password account

Algorand.Algod.Model.Account account = AlgorandARC76AccountDotNet.ARC76.GetEmailAccount("email@example.com", "12345678901234567890123456789012345678901234567890");

ARC76Signer

Configure your web api project with ARC76 signer configuration and the signer can sign transactions whenever it is required.

Usage

Startup.cs:

builder.Services.Configure<AlgorandARC76AccountDotNet.Model.Config.ARC76Config>(builder.Configuration.GetSection("ARC76Config"));
builder.Services.AddSingleton<AlgorandARC76AccountDotNet.Utils.ARC76Signer>();

MyController.cs

MyController(AlgorandARC76AccountDotNet.Utils.ARC76Signer signer ....){}

void DoSomeAction(){
...
var signed = signer.Sign(new Transaction[] { tx1, tx2 });
...
}
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 is compatible.  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. 
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.1 169 9/23/2023
1.0.0 153 7/14/2023