@hashgraphonline/standards-sdk 0.0.32 → 0.0.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,5 @@
1
- import { AccountId, Client } from '@hashgraph/sdk';
1
+ import { AccountId, Client, Signer } from '@hashgraph/sdk';
2
2
  import { LogLevel } from '../utils/logger';
3
- import { DAppSigner } from '@hashgraph/hedera-wallet-connect';
4
3
  export declare enum ProfileType {
5
4
  PERSONAL = 0,
6
5
  AI_AGENT = 1
@@ -71,7 +70,7 @@ export type HCS11Profile = PersonalProfile | AIAgentProfile;
71
70
  export interface HCS11Auth {
72
71
  operatorId: string;
73
72
  privateKey?: string;
74
- signer?: DAppSigner;
73
+ signer?: Signer;
75
74
  }
76
75
  export interface HCS11ClientConfig {
77
76
  network: 'mainnet' | 'testnet';
@@ -5,3 +5,5 @@ export * from './hcs-11';
5
5
  export * from './utils';
6
6
  export * from './inscribe';
7
7
  export * from './services';
8
+ export declare const isBrowser: boolean;
9
+ export declare const isServer: boolean;
@@ -133,6 +133,7 @@ export declare class HederaMirrorNode {
133
133
  private network;
134
134
  private baseUrl;
135
135
  private logger?;
136
+ private isServerEnvironment;
136
137
  constructor(network: NetworkType, logger?: Logger);
137
138
  private getMirrorNodeUrl;
138
139
  getBaseUrl(): string;