diff --git a/packages/cosmos/src/account/index.ts b/packages/cosmos/src/account/index.ts index 1cc4393f8d..b2cb4e48cd 100644 --- a/packages/cosmos/src/account/index.ts +++ b/packages/cosmos/src/account/index.ts @@ -54,7 +54,9 @@ export class BaseAccount implements Account { // But, this can be different according to the version of cosmos-sdk. // So, anyway, try to parse it by some ways... const baseVestingAccount = - value.BaseVestingAccount || value.baseVestingAccount; + value.BaseVestingAccount || + value.baseVestingAccount || + value.base_vesting_account; if (baseVestingAccount) { value = baseVestingAccount.BaseAccount ||