ic_cdk/api/management_canister/mod.rs
1//! Functions and types for calling [the IC management canister][1].
2//!
3//! This module is a direct translation from the [interface description][2].
4//!
5//! The functions and types defined in this module serves these purposes:
6//! * Make it easy to construct correct request data.
7//! * Handle the response ergonomically.
8//! * For those calls require cycles payments, the cycles amount is an explicit argument.
9//!
10//! [1]: https://internetcomputer.org/docs/current/references/ic-interface-spec/#ic-management-canister
11//! [2]: https://internetcomputer.org/assets/files/ic-a45d11feb0ba0494055083f9d2d21ddf.did
12
13pub mod bitcoin;
14pub mod ecdsa;
15pub mod http_request;
16pub mod main;
17pub mod provisional;
18pub mod schnorr;