UNPKG

@slide-computer/signer-agent

Version:

Initiate transactions with signers on the Internet Computer

17 lines (16 loc) 385 B
import { Principal } from "@dfinity/principal"; interface CallOptions { canisterId: Principal; sender: Principal; method: string; arg: ArrayBuffer; } export declare class Scheduler { #private; constructor(supportsBatch: boolean); call(options: CallOptions): Promise<{ content_map: ArrayBuffer; certificate: ArrayBuffer; }>; } export {};