Antelope
Rust libraryAntelope common library.
Implements most commonly used Antelop (EOSIO) C++ Classes into Rust.
Cargo.toml
toml
[dependencies]
antelope = "0.0.1"
```rust use antelope::{SymbolCode};
let symcode = SymbolCode::from("EOS".to_string()); let raw: u64 = symcode.raw(); // => 5459781 ```