cryptonote-account 0.1.1

account for cryptonote
cryptonote-account-0.1.1 is not a library.
Visit the last successful build: cryptonote-account-0.1.4

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