diff --git a/packages/stargate/src/modules/authz/queries.ts b/packages/stargate/src/modules/authz/queries.ts index f34102e0..dd50e370 100644 --- a/packages/stargate/src/modules/authz/queries.ts +++ b/packages/stargate/src/modules/authz/queries.ts @@ -1,6 +1,11 @@ -import { QueryClientImpl, QueryGrantsResponse, QueryGranterGrantsResponse, QueryGranteeGrantsResponse } from "cosmjs-types/cosmos/authz/v1beta1/query"; +import { + QueryClientImpl, + QueryGrantsResponse, + QueryGranterGrantsResponse, + QueryGranteeGrantsResponse +} from "cosmjs-types/cosmos/authz/v1beta1/query"; -import { createPagination, createProtobufRpcClient, QueryClient } from "../../queryclient"; +import {createPagination, createProtobufRpcClient, QueryClient} from "../../queryclient"; export interface AuthzExtension { readonly authz: { @@ -10,8 +15,14 @@ export interface AuthzExtension { msgTypeUrl: string, paginationKey?: Uint8Array, ) => Promise; - readonly granteeGrants: (grantee: string, paginationKey?: Uint8Array) => Promise; - readonly granterGrants: (granter: string, paginationKey?: Uint8Array) => Promise; + readonly granteeGrants: ( + grantee: string, + paginationKey?: Uint8Array, + ) => Promise; + readonly granterGrants: ( + granter: string, + paginationKey?: Uint8Array, + ) => Promise; }; }