diff --git a/README.md b/README.md index 72bdfb79..21b78451 100644 --- a/README.md +++ b/README.md @@ -99,8 +99,8 @@ discussion please reach out to the team. 1. `AuthExtension` and all higher level Stargate clients only support `BaseAccount`s for all functionality, including getting account numbers and - sequences for transaction signing. This will be implemented in the 0.25 - series. + sequences for transaction signing. This will be implemented for all common + Cosmos SDK account types in the 0.25 series. ## Get in touch diff --git a/packages/stargate/src/accounts.ts b/packages/stargate/src/accounts.ts index e243c7a4..58280523 100644 --- a/packages/stargate/src/accounts.ts +++ b/packages/stargate/src/accounts.ts @@ -39,7 +39,7 @@ function accountFromBaseAccount(input: BaseAccount): Account { /** * Takes an `Any` encoded account from the chain and extracts some common * `Account` information from it. This is supposed to support the most relevant - * common Cosmos SDK account types. If you need support for exotix account types, + * common Cosmos SDK account types. If you need support for exotic account types, * you'll need to write your own account decoder. */ export function accountFromAny(input: Any): Account { diff --git a/packages/stargate/src/queries/auth.ts b/packages/stargate/src/queries/auth.ts index 2bdcc496..9eb781a4 100644 --- a/packages/stargate/src/queries/auth.ts +++ b/packages/stargate/src/queries/auth.ts @@ -9,7 +9,7 @@ export interface AuthExtension { * Returns an account if it exists and `null` otherwise. * * The account is a protobuf Any in order to be able to support many different - * account types in one API. The caller needs to switch over the expeced and supported + * account types in one API. The caller needs to switch over the expected and supported * `typeUrl` and decode the `value` using its own type decoder. */ readonly account: (address: string) => Promise; @@ -18,7 +18,7 @@ export interface AuthExtension { * Returns an account if it exists and `null` otherwise. * * The account is a protobuf Any in order to be able to support many different - * account types in one API. The caller needs to switch over the expeced and supported + * account types in one API. The caller needs to switch over the expected and supported * `typeUrl` and decode the `value` using its own type decoder. */ readonly account: (address: string) => Promise;