Replies: 1 comment
-
Hi @elvinasn, thank you for the question. [dependencies]
tw_evm = { path = "path/to/wallet-core/rust/tw_evm" } And then: // main.rs
use tw_evm::address::Address;
use std::str::FromStr;
fn main() {
let _ = Address::from_str("0xff00000000000000000000000000000000002694");
} |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello, how does one use this library in rust? I saw the sample code, but in the example it wrote all of the C headers, instead of adding the rust folder as a crate. Or is that not possible?
Beta Was this translation helpful? Give feedback.
All reactions