https://github.com/pumpkinseed/eip55-rs
Rust implementation of EIP-55
https://github.com/pumpkinseed/eip55-rs
Last synced: 6 months ago
JSON representation
Rust implementation of EIP-55
- Host: GitHub
- URL: https://github.com/pumpkinseed/eip55-rs
- Owner: PumpkinSeed
- License: mit
- Created: 2021-03-02T21:31:56.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2023-03-17T16:31:40.000Z (over 2 years ago)
- Last Synced: 2024-10-11T22:49:36.578Z (12 months ago)
- Language: Rust
- Size: 14.6 KB
- Stars: 3
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# EIP-55 written in Rust
[](https://crates.io/crates/eip55)
Rust implementation of EIP-55
### Usage
- [Crates.io/eip55](https://crates.io/crates/eip55)
- [docs.rs](https://docs.rs/eip55)```rust
fn main () {
eip55::validate_address("0x5aAeb6053F3E94C9b9A09f33669435E7Ef1BeAed"); // returns true
eip55::checksum("0x5aAeb6053F3E94C9b9A09f33669435E7Ef1BeAed"); // returns "0x5aAeb6053F3E94C9b9A09f33669435E7Ef1BeAed"
}
```