import { ShardedNode } from '../common/types'; export interface IpLocation { city: number; region: string; country: string; location: string; timezone: string; } export interface ShardedNodes { trusted: ShardedNode[]; discovered: ShardedNode[]; } export interface TransactionOptions { gasPrice?: bigint; gasLimit?: bigint; } export interface DownloadOption { proof?: boolean; decryption?: { symmetricKey?: Uint8Array | string; privateKey?: Uint8Array | string; }; } //# sourceMappingURL=types.d.ts.map