OrchestrationAccount<CI>: OrchestrationAccountCommon & (CI extends {
        chainId: string;
    }
    ? CI["chainId"] extends `agoric${string}`
        ? LocalAccountMethods
        : CI["chainId"] extends `noble${string}`
            ? CosmosChainAccountMethods<CI> & NobleMethods
            : CosmosChainAccountMethods<CI>
    : object)

Object that controls an account on a particular chain.

The methods available depend on the chain and its capabilities.

Type Parameters

""