@hashgraph/solo
    Preparing search index...

    KindClientBuilder is used to construct instances of KindClient. This interface defines the standard methods which all KindClient builders must implement.

    The build() method is responsible for extracting the appropriate Kind executable from the package. The Kind executable should be extracted to a temporary directory which is supplied to the KindClient implementation.

    KindClient

    interface KindClientBuilder {
        build(): Promise<KindClient>;
    }

    Implemented by

    Index

    Methods

    Methods

    • Constructs an instance of the KindClient with the provided configuration.

      Returns Promise<KindClient>

      the KindClient instance.

      KindConfigurationException if the KindClient instance cannot be constructed.

      KindVersionRequirementException if the Kind CLI version does not meet the required version.

      This method is responsible for extracting the appropriate Kind executable from the package to a temporary working directory. The temporary working directory should be supplied to the KindClient instance.

      KindClient