CosmosChainAccountMethods<CCI>: IcaAccountMethods & (CCI extends {
        stakingTokens: object;
    }
    ? StakingAccountActions & StakingAccountQueries
    : object)

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

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

Type Parameters

  • CCI extends {
        chainId: string;
    }
""