#internet-computer #timestamp #logging #sha-2 #transfer #wallet #ledger

b3_utils

Utility functions for building on the Internet Computer

55 releases (13 breaking)

0.13.1 Sep 28, 2024
0.12.1 Aug 27, 2024
0.11.0 Jul 4, 2024
0.9.0 Mar 2, 2024
0.0.6 Jul 28, 2023

#28 in #sha-2

Download history 127/week @ 2024-06-29 199/week @ 2024-07-06 1/week @ 2024-07-13 120/week @ 2024-07-27 131/week @ 2024-08-03 14/week @ 2024-08-10 121/week @ 2024-08-24 9/week @ 2024-08-31 20/week @ 2024-09-14 32/week @ 2024-09-21 385/week @ 2024-09-28 19/week @ 2024-10-05 6/week @ 2024-10-12

447 downloads per month

MIT license

280KB
7K SLoC

B3Utils library

B3Utils Library is a Rust library designed to simplify the development of applications and wallets on the Internet Computer. It provides utility functions and types for handling various operations such as transfers, tokens, timestamps, and more.

For more detailed examples, see the documentation.

License

This project is licensed under the MIT License.

Reserved Stable Memory IDs

ID Description
254 Memory details
253 Backup Memory
252 Timer Memory
251 Owner Memory
250 Reserved Unknow
249 Notifier(idempotency) Memory
248 Notifier(Keys) Memory

lib.rs:

B3Utils Library

b3_utils is a Rust library designed to simplify the development of applications and wallets on the Internet Computer. It provides utility functions and types for handling various operations such as transfers, tokens, timestamps, and more.

Features

  • vetkd: Enables functionality related to vetkd. Includes dependencies ic_bls12_381, sha2, and subtle.
  • logging: Enables logging functionality.
  • ledger: Enables ledger-related functionalities.
  • owner: Enables owner-related functionalities.
  • sha2: Enables SHA-2 hashing functionality.
  • wasm: Enables WebAssembly-related functionalities.
  • rpc: Enables EVM-RPC-canister functionalities.

To enable a feature, add it to your Cargo.toml like so:

[dependencies]
b3_utils = { version = "0.12", features = ["exprimental_vetkd", "logging"] }

Examples

Here's a simple example of how to create a new icrc1 account :

use b3_utils::ledger::ICRCAccount;
use b3_utils::Subaccount;
use b3_utils::Environment;
use candid::Principal;

let owner = Principal::from_text("b7pqa-qqaaa-aaaap-abdva-cai").unwrap();
let subaccount = Subaccount::new(Environment::Production, 1);

let account = ICRCAccount::new(owner, Some(subaccount));

assert_eq!(account.to_text(), "b7pqa-qqaaa-aaaap-abdva-cai-vpwy45i.1");

For more detailed examples, see the documentation for each module.

More Information

For more information, see the API documentation.

License

This project is licensed under the MIT License.

Dependencies

~2–14MB
~170K SLoC