#account-balance #transfer #management #set #export #import #creation

账户

提供用于管理web3账户的简单工具库。它提供了一套账户管理API,包括账户创建、账户导入、账户导出、账户删除、账户余额查询、账户转账等。

1个不稳定版本

0.1.1-beta12024年1月28日

#9 in #account-balance

MIT/Apache

12KB
194

账户


提供用于管理web3账户的简单工具库。它提供了一套账户管理API,包括账户创建、账户导入、账户导出、账户删除、账户余额查询、账户转账等。

用法

use account::account::Account;

fn main() {
    // create account
    let password = None;
    let account = Account::new(password);

    // using a child path to sign and verify
    let child_path = "m/44'/0'/0'/0/0'";
    // sign and verify
    let example_msg = b"Hello, world!";
    let sign_message = account.sign(child_path, example_msg);
    account.verify(child_path, example_msg, &sign_message.unwrap());
}

依赖项

~2.6–4MB
~83K SLoC