You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Account Library For CryptoNote Based Crypto Currencies
Usage
let prefix = 0x3d;
let acc: Account = Account::new(prefix);
// Get Keys
let spendKey = acc.address.spend;
let viewKey = acc.address.view;
// Get Address
let address = acc.get_address();