Wrapped provider native client object that standardizes the interface for all providers.

interface ProviderClient {
    mintKey(type: KeyType, params: KeyStoreParams): string;
    transact(): ProviderTransaction;
    [key: string]: any;
}

Hierarchy (view full)

Indexable

  • [key: string]: any

    The provider-specific client object

Methods