Skip to content

Commit

Permalink
Update abstract types to 0.26
Browse files Browse the repository at this point in the history
  • Loading branch information
adairrr committed Dec 20, 2024
1 parent 62d3463 commit 5331d3a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 7 deletions.
5 changes: 3 additions & 2 deletions src/formulas/formulas/contract/abstract/types/account.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
/**
* This file was automatically generated by @cosmwasm/ts-codegen@1.11.1.
* This file was automatically generated by @abstract-money/ts-codegen@0.37.0-beta-5.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run the @cosmwasm/ts-codegen generate command to regenerate this file.
* and run the @abstract-money/ts-codegen generate command to regenerate this file.
*/

export type AccountTrace =
Expand Down Expand Up @@ -96,6 +96,7 @@ export type Addr = string
export interface InstantiateMsg {
account_id?: AccountId | null
authenticator?: AddAuthenticator | null
code_id: number
description?: string | null
install_modules?: ModuleInstallConfig[]
link?: string | null
Expand Down
10 changes: 5 additions & 5 deletions src/formulas/formulas/contract/abstract/types/registry.ts
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
/**
* This file was automatically generated by @cosmwasm/ts-codegen@1.11.1.
* This file was automatically generated by @abstract-money/ts-codegen@0.37.0-beta-5.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run the @cosmwasm/ts-codegen generate command to regenerate this file.
* and run the @abstract-money/ts-codegen generate command to regenerate this file.
*/

export type Uint128 = string
export interface InstantiateMsg {
admin: string
namespace_registration_fee?: Coin | null
security_disabled?: boolean | null
security_enabled?: boolean | null
}
export interface Coin {
amount: Uint128
Expand Down Expand Up @@ -63,7 +63,7 @@ export type ExecuteMsg =
| {
update_config: {
namespace_registration_fee?: ClearableForCoin | null
security_disabled?: boolean | null
security_enabled?: boolean | null
}
}
| {
Expand Down Expand Up @@ -228,7 +228,7 @@ export interface AccountsResponse {
export interface ConfigResponse {
local_account_sequence: number
namespace_registration_fee?: Coin | null
security_disabled: boolean
security_enabled: boolean
}
export interface ModulesListResponse {
modules: ModuleResponse[]
Expand Down

0 comments on commit 5331d3a

Please sign in to comment.