UNPKG

@hethers/providers

Version:

Hedera Hashgraph Providers for hethers.

18 lines 727 B
import { BaseProvider, ProviderOptions } from "./base-provider"; import { Networkish } from "@hethers/networks"; export declare enum HederaNetworks { TESTNET = "testnet", PREVIEWNET = "previewnet", MAINNET = "mainnet", LOCAL = "local" } /** * The hedera provider uses the hashgraph module to establish a connection to the Hedera network. * As every provider, this one also gives us read-only access. * * Constructable with a string or a number, which automatically resolves to a hedera network via the hashgraph SDK. */ export declare class DefaultHederaProvider extends BaseProvider { constructor(network: Networkish, options?: ProviderOptions); } //# sourceMappingURL=default-hedera-provider.d.ts.map