Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

tests: update tests, add BaseAccount to registry #54

Merged
merged 1 commit into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/functions/createRegistry.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ <h1>Function createRegistry</h1></div>
<li class="tsd-description">
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Registry</span></h4><aside class="tsd-sources">
<ul>
<li>Defined in stargate_client/customRegistries.ts:164</li></ul></aside></li></ul></section></div>
<li>Defined in stargate_client/customRegistries.ts:167</li></ul></aside></li></ul></section></div>
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
<div class="tsd-navigation settings">
<details class="tsd-index-accordion"><summary class="tsd-accordion-summary">
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ixo/impactxclient-sdk",
"version": "1.1.17",
"version": "1.1.18",
"description": "One ixo client to rule them all, One ixo client to find, One ixo client to bring them all, and in impact bind them",
"author": "Ixo <ixo>",
"homepage": "https:/ixofoundation/ixo-MultiClient-SDK#readme",
Expand Down
3 changes: 3 additions & 0 deletions src/stargate_client/customRegistries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ export const defaultRegistryTypes: ReadonlyArray<[string, GeneratedType]> = [
// base
["/cosmos.base.v1beta1.Coin", cosmos.base.v1beta1.Coin],

// auth
["/cosmos.auth.v1beta1.BaseAccount", cosmos.auth.v1beta1.BaseAccount],

// authz
["/cosmos.authz.v1beta1.MsgExec", cosmos.authz.v1beta1.MsgExec],
["/cosmos.authz.v1beta1.MsgGrant", cosmos.authz.v1beta1.MsgGrant],
Expand Down