You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Balance queries the balance of a single coin for a single account. */
export const createGetBalance = (getRpcInstance: RpcResolver) => buildQuery<QueryBalanceRequest, QueryBalanceResponse>({
encode: QueryBalanceRequest.encode,
decode: QueryBalanceResponse.decode,
service: "cosmos.bank.v1beta1.Query",
method: "Balance",
getRpcInstance: getRpcInstance
});
/** Balance queries the balance of a single coin for a single account. */
export const useGetBalance = buildUseQuery<QueryBalanceRequest, QueryBalanceResponse>({
builderQueryFn: createGetBalance,
queryKeyPrefix: "BalanceQuery"
});
Add comments to helper func generating:
https://github.com/cosmology-tech/telescope/tree/main/packages/ast/src/clients/helper-funcs
current:
expected:
telescope/packages/ast/src/clients/rpc/class/tendermint/rpc.ts
Line 511 in 42e2449
can be a reference.
The text was updated successfully, but these errors were encountered: