Skip to content

Commit

Permalink
Rename externally owned type
Browse files Browse the repository at this point in the history
  • Loading branch information
adairrr committed Nov 25, 2024
1 parent 5147aaa commit 81b743c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import {
createXionAccount,
} from './create-xion-account'

export type CreateXionAccountExternallyOwnedParameters = Omit<
export type CreateXionAccountExternalOwnerParameters = Omit<
OverrideProperties<CreateXionAccountParameters, { owner: string }>,
'accountId'
>
Expand All @@ -18,7 +18,7 @@ export type CreateXionAccountExternallyOwnedParameters = Omit<
export async function createXionAccountExternalOwner({
owner,
...params
}: CreateXionAccountExternallyOwnedParameters) {
}: CreateXionAccountExternalOwnerParameters) {
const predictedAccountId = await predictXionAccountIdByExternalOwner({
cosmWasmClient: params.signingCosmWasmClient,
owner,
Expand Down
1 change: 1 addition & 0 deletions packages/react/src/types/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
export * from './args'

0 comments on commit 81b743c

Please sign in to comment.