Evoq.Ethereum.EAS 2.2.4

dotnet add package Evoq.Ethereum.EAS --version 2.2.4
                    
NuGet\Install-Package Evoq.Ethereum.EAS -Version 2.2.4
                    
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="Evoq.Ethereum.EAS" Version="2.2.4" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Evoq.Ethereum.EAS" Version="2.2.4" />
                    
Directory.Packages.props
<PackageReference Include="Evoq.Ethereum.EAS" />
                    
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 Evoq.Ethereum.EAS --version 2.2.4
                    
#r "nuget: Evoq.Ethereum.EAS, 2.2.4"
                    
#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.
#addin nuget:?package=Evoq.Ethereum.EAS&version=2.2.4
                    
Install Evoq.Ethereum.EAS as a Cake Addin
#tool nuget:?package=Evoq.Ethereum.EAS&version=2.2.4
                    
Install Evoq.Ethereum.EAS as a Cake Tool

Evoq.Ethereum.EAS

A lightweight .NET library providing an easy-to-use implementation of the Ethereum Attestation Service (EAS). This package builds upon Evoq.Blockchain and Evoq.Ethereum to provide a simplified interface for working with EAS.

Installation

# Using the .NET CLI
dotnet add package Evoq.Ethereum.EAS

# Using the Package Manager Console
Install-Package Evoq.Ethereum.EAS

# Or add directly to your .csproj file
<PackageReference Include="Evoq.Ethereum.EAS" Version="2.0.0" />

Features

  • Simple interface for creating and managing attestations
  • Type-safe EAS primitives
  • Easy integration with existing Ethereum applications
  • Built on top of Evoq.Blockchain and Evoq.Ethereum
  • Support for revocable attestations
  • Comprehensive attestation querying and validation
  • Built-in timestamping support
  • Schema registry integration

Target Frameworks

This package targets .NET Standard 2.1 for maximum compatibility across:

  • .NET 6.0+
  • .NET Framework 4.7.2+ (Note: .NET Framework 4.6.1 and earlier are not supported)
  • .NET Core 2.1+ (Note: .NET Core 2.0 is not supported)
  • Xamarin
  • Unity

Dependencies

  • Evoq.Blockchain (1.0.8)
  • Evoq.Ethereum (2.1.0)
  • System.Text.Json (8.0.5)
  • SimpleBase (4.0.2)

Usage

Basic Setup

// Initialize EAS with the contract address
var eas = new EAS(easContractAddress);

// Create an interaction context (example using Hardhat testnet)
InteractionContext context = EthereumTestContext.CreateHardhatContext(out var logger);

// For production use, you'll need to set up your own context with proper configuration
var endpoint = new Endpoint(
    networkName: ChainNames.Mainnet,
    displayName: ChainNames.Mainnet,
    url: "https://mainnet.infura.io/v3/YOUR-PROJECT-ID",
    loggerFactory: loggerFactory
);

var chain = endpoint.CreateChain();
var getTransactionCount = () => chain.GetTransactionCountAsync(yourAddress, "latest");
var nonces = new InMemoryNonceStore(loggerFactory, getTransactionCount);

var account = new SenderAccount(privateKey, yourAddress);
var sender = new Sender(account, nonces);

var context = new InteractionContext(endpoint, sender, UseSuggestedGasOptions);

Understanding InteractionContext

The InteractionContext is the core configuration object that manages your connection to the Ethereum network. It's composed of several key components:

  1. Endpoint: Manages the network connection and chain configuration
  2. Sender: Handles transaction signing and nonce management
  3. Gas Options: Configures how gas fees are calculated
Creating an InteractionContext

There are two main approaches:

  1. Using Test Context (for development)
// Creates a context connected to a local Hardhat node
// This handles all the setup internally using environment variables
InteractionContext context = EthereumTestContext.CreateHardhatContext(out var logger);
  1. Manual Configuration (for production)
// 1. Set up logging
var loggerFactory = LoggerFactory.Create(builder => 
    builder.AddConsole().SetMinimumLevel(LogLevel.Information)
);

// 2. Create the endpoint
var endpoint = new Endpoint(
    networkName: ChainNames.Mainnet,
    displayName: ChainNames.Mainnet,
    url: "your-rpc-url",
    loggerFactory: loggerFactory
);

// 3. Create the chain
var chain = endpoint.CreateChain();

// 4. Set up nonce management
var getTransactionCount = () => chain.GetTransactionCountAsync(yourAddress, "latest");
var nonces = new InMemoryNonceStore(loggerFactory, getTransactionCount);

// 5. Configure the sender account
var account = new SenderAccount(privateKey, yourAddress);
var sender = new Sender(account, nonces);

// 6. Create the context with gas options
var context = new InteractionContext(endpoint, sender, UseSuggestedGasOptions);

// Helper function for gas options
static GasOptions UseSuggestedGasOptions(ITransactionFeeEstimate estimate)
{
    return estimate.ToSuggestedGasOptions();
}
Available Chain Names

The library includes predefined chain names for common networks:

ChainNames.Mainnet    // Ethereum Mainnet
ChainNames.Goerli     // Goerli Testnet
ChainNames.Sepolia    // Sepolia Testnet
ChainNames.Hardhat    // Local Hardhat Network
Environment Variables for Testing

When using the test context, the following environment variables are required:

Blockchain__Ethereum__Addresses__Hardhat1PrivateKey=your-private-key
Blockchain__Ethereum__Addresses__Hardhat1Address=your-address

Creating Attestations

try
{
    // Create a schema UID (example for a boolean schema)
    var schemaUID = SchemaUID.FormatSchemaUID("bool isAHuman", EthereumAddress.Zero, true);

    // Prepare attestation data
    var data = new AttestationRequestData(
        Recipient: recipientAddress,
        ExpirationTime: DateTimeOffset.UtcNow.AddDays(1),
        Revocable: true,
        RefUID: Hex.Empty,
        Data: Hex.Empty,
        Value: EtherAmount.Zero
    );

    // Create the attestation request
    var request = new AttestationRequest(schemaUID, data);

    // Submit the attestation
    var result = await eas.AttestAsync(context, request);

    if (result.Success)
    {
        var attestationUID = result.Result;
        Console.WriteLine($"Created attestation with UID: {attestationUID}");

        // Retrieve the attestation
        var attestation = await eas.GetAttestationAsync(context, attestationUID);
        Console.WriteLine($"Retrieved attestation: {attestation}");
    }
    else
    {
        Console.WriteLine($"Failed to create attestation: {result.Error}");
    }
}
catch (Exception ex)
{
    Console.WriteLine($"Error creating attestation: {ex.Message}");
}

Advanced Features

Schema Registry Integration
// Initialize the schema registry
var schemaRegistry = new SchemaRegistry(schemaRegistryAddress);

// Register a new schema
var schema = "bool isAHuman";
var result = await schemaRegistry.Register(context, schema);

// Get an existing schema
var schemaRecord = await schemaRegistry.GetSchemaAsync(context, schema);

// Get schema version
var version = await schemaRegistry.GetVersionAsync(context);
Revocation
// On-chain revocation
var revocationRequest = new RevocationRequest(attestationUID);
await eas.RevokeAsync(context, revocationRequest);

// Record a timestamp for off-chain revocation data
// This is used to prove when a revocation was recorded
var revocationData = new Hex("your-revocation-data");
var timestamp = await eas.RevokeOffchainAsync(context, revocationData);
Timestamping
// Single timestamp
var timestamp = await eas.TimestampAsync(context, data);

// Get timestamp for data
var timestamp = await eas.GetTimestampAsync(context, data);
Attestation Validation
// Check if an attestation is valid
var isValid = await eas.IsAttestationValidAsync(context, attestationUID);

// Get attestation details
var attestation = await eas.GetAttestationAsync(context, attestationUID);

// Get schema registry address
var registryAddress = await eas.GetSchemaRegistryAsync(context);

Security Considerations

  1. Private Key Management

    • Never store private keys in source code or configuration files
    • Use secure key management solutions
    • Consider using hardware wallets for production environments
  2. Network Security

    • Use HTTPS for RPC endpoints
    • Validate chain IDs before transactions
    • Consider using multiple RPC providers for redundancy
  3. API Keys

    • Store API keys securely
    • Use environment variables or secure secret management
    • Rotate keys regularly

Testing

Prerequisites

  1. Install Hardhat for local Ethereum testing
  2. Clone the repository
  3. Run npm install in the contracts directory
  4. Start Hardhat node: npx hardhat node

Running Tests

# Run all tests
dotnet test

# Run specific test project
dotnet test tests/Evoq.Ethereum.EAS.Tests

# Run with logging
dotnet test --logger "console;verbosity=detailed"

Contributing

Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/AmazingFeature)
  3. Commit your changes (git commit -m 'Add some AmazingFeature')
  4. Push to the branch (git push origin feature/AmazingFeature)
  5. Open a Pull Request

License

This project is licensed under the MIT License - see the LICENSE file for details.

Author

Luke Puplett

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  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. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
2.2.4 0 4/3/2025
2.2.2 0 4/3/2025
2.2.1 0 4/3/2025
2.2.0 0 4/3/2025
2.1.8 63 4/2/2025
2.1.7 99 3/28/2025
2.1.6 95 3/28/2025
2.1.5 102 3/28/2025
2.1.4 105 3/28/2025
2.1.3 112 3/28/2025
2.1.2 112 3/27/2025
2.1.1 110 3/27/2025
2.1.0 115 3/27/2025
2.0.0 119 3/27/2025
2.0.0-alpha.3 88 3/26/2025
1.0.5-alpha.1 68 2/13/2025
1.0.4 102 2/13/2025
1.0.3 96 2/13/2025
1.0.2 89 2/12/2025
1.0.1 95 2/12/2025
1.0.0 90 2/12/2025