#account #cryptonote #address

cryptonote-account

account for cryptonote

5 releases

0.1.4 Apr 11, 2019
0.1.3 Mar 22, 2019
0.1.2 Mar 22, 2019
0.1.1 Mar 20, 2019
0.1.0 Mar 6, 2019

#9 in #cryptonote

21 downloads per month
Used in cryptonote-wallet

GPL-3.0-or-later

16KB
155 lines

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

Dependencies

~5MB
~99K SLoC