3 releases
0.1.2 | Oct 16, 2020 |
---|---|
0.1.1 | Mar 5, 2019 |
0.1.0 | Nov 27, 2018 |
#12 in #keccak256
280 downloads per month
Used in 6 crates
5KB
60 lines
eth_checksum
Ethereum address checksum library and CLI in Rust
Install
cargo install eth_checksum
Getting started
Using library:
extern crate eth_checksum;
fn main() {
let addr = "0xe0fc04fa2d34a66b779fd5cee748268032a146c0";
let checksummed = eth_checksum::checksum(&addr);
println!("{}", checksummed);
// 0xe0FC04FA2d34a66B779fd5CEe748268032a146c0
}
CLI
$ eth_checksum {address}
Example:
$ eth_checksum 0xe0fc04fa2d34a66b779fd5cee748268032a146c0
0xe0FC04FA2d34a66B779fd5CEe748268032a146c0
Another Example:
$ eth_checksum 0xE0FC04FA2D34A66B779FD5CEE748268032A146C0
0xe0FC04FA2d34a66B779fd5CEe748268032a146c0
Test
make test
License
Dependencies
~4MB
~50K SLoC