interface CallRequest {
    request_type: Call;
    canister_id: Principal;
    method_name: string;
    arg: ArrayBuffer;
    sender: any;
    ingress_expiry: utils.agent.Expiry;
    nonce?: utils.agent.Nonce;
}

Hierarchy

  • Record<string, any>
    • CallRequest

Properties

request_type: Call
canister_id: Principal
method_name: string
sender: any
ingress_expiry: utils.agent.Expiry
nonce?: utils.agent.Nonce