cryptonote-account 0.1.3

account for cryptonote
Documentation

Account Library For CryptoNote Based Crypto Currencies

codecov

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();