UNPKG

@dfinity/utils

Version:

A collection of utilities and constants for NNS/SNS projects.

6 lines (5 loc) 234 B
import type { HttpAgentOptions, Identity } from "@icp-sdk/core/agent"; export type CreateAgentParams = Pick<HttpAgentOptions, "host" | "retryTimes" | "verifyQuerySignatures"> & { identity: Identity; fetchRootKey?: boolean; };