transaction_utils/
types.rs1use candid::CandidType;
2use serde::{Deserialize, Serialize};
3
4#[derive(Serialize, Deserialize, Debug, CandidType, Clone)]
5pub struct CanisterCall {
6 pub canister_id: String,
7 pub method: String,
8 pub arg: String,
9}