CosmosChainAccountMethods<CCI>: ((CCI extends {
            icaEnabled: true;
        }
        ? IcaAccount
        : {}) & CCI) extends {
        stakingTokens: {};
    }
    ? StakingAccountActions
    : {}

Cosmos-specific methods to extend OrchestrationAccountI, parameterized by CosmosChainInfo.

In particular, if the chain info includes a staking token, StakingAccountActions are available.

Type Parameters