erc725-rs 0.1.0

A Rust library for interacting with ERC-725 smart contracts
Documentation
# erc725-rs

[![CI](https://github.com/kuchmenko/erc725-rs/actions/workflows/ci.yml/badge.svg)](https://github.com/kuchmenko/erc725-rs/actions/workflows/ci.yml)
[![Crates.io](https://img.shields.io/crates/v/erc725-rs.svg)](https://crates.io/crates/erc725-rs)
[![Docs.rs](https://docs.rs/erc725-rs/badge.svg)](https://docs.rs/erc725-rs)

`erc725-rs` is a Rust library for interacting with ERC-725 smart contracts. 
ERC-725 is a set of proposed standards for identity management on Ethereum and EVM-compatible networks. This library aims to offer:

- Data schema definitions and parsing for ERC-725Y storage key/value pairs
- Decoding of returned values into user-friendly Rust structures
- Integration with Ethereum clients (via `ethers-rs` in the future)

## Status

**WIP**: The library is in early development. Expect breaking changes until `0.1.0` is stable.

## Usage

Add `erc725-rs` to your `Cargo.toml`:

```toml
[dependencies]
erc725-rs = "0.1"