This library will calculate ethereum address from a private key.
Step by step example to generate address:
ethereum-private-key-to-address
to your Cargo.toml
:
toml
[dependencies]
ethereum-private-key-to-address = "0.1"
PrivateKey
struct into your project:
rust
use ethereum_private_key_to_address::PrivateKey;
PrivateKey
struct with one of these methods:
```rust
use ethereumprivatekeytoaddress::PrivateKey;let privatekey = PrivateKey::fromstr("
let privatekey = PrivateKey::fromslice(" let privatekey = PrivateKey::fromstr(" // This will calculate your address from the given private key
let address = private_key.address(); println!("{}", address);
``` Step by step example to generate public key: let privatekey = PrivateKey::fromstr(" let privatekey = PrivateKey::fromslice(" let privatekey = PrivateKey::fromstr(" // Returns Full 65 byte Public Key including the prefix as a String. In this case prefix is 0x04.
// 0x04 is used to specify the type of the public key.
let fullpublickeywithprefix = privatekey.publickey_full(); // Returns Full 64 byte Public Key from Private Key without 0x04 in the front as a String.
// 0x04 is used to specify the type of the public key. 0x04 in front means the public key is uncompressed.
let fullpublickey = privatekey.publickey(); // Returns the x-coordiante of the public key as a string.
let xcoordinate = privatekey.publickeyx(); // Returns the y-coordinate of the public key.
let ycoordiante = privatekey.publickeyy(); // Returns the entire public key in [u8; 65] format.
let publickeyslice = privatekey.publickey_slice();
```
address()
method on the PrivateKey
struct:
```rust
use ethereumprivatekeytoaddress::PrivateKey;Calculate Public Key
ethereum-private-key-to-address
to your Cargo.toml
:
toml
[dependencies]
ethereum-private-key-to-address = "0.1"
PrivateKey
struct into your project:
rust
use ethereum_private_key_to_address::PrivateKey;
PrivateKey
struct with one of these methods:
```rust
use ethereumprivatekeytoaddress::PrivateKey;