/**
* This file was automatically generated by @cosmwasm/ts-codegen@1.14.0.
* DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file,
* and run the @cosmwasm/ts-codegen generate command to regenerate this file.
*/
export interface ConfigResponse {
admin: string;
cw20_contract: string;
native_denom: string;
}
export type ExecuteMsg = {
receive: Cw20ReceiveMsg;
} | {
unwrap_native: {};
} | {
update_config: {
admin?: string | null;
cw20_contract?: string | null;
};
} | {
apply_testing_overrides: {
overrides: TestingOverrides;
};
};
export type Uint128 = string;
export type Binary = string;
export interface Cw20ReceiveMsg {
amount: Uint128;
msg: Binary;
sender: string;
}
export interface TestingOverrides {
wrapped_supply?: Uint128 | null;
}
export interface InstantiateMsg {
admin?: string | null;
cw20_contract: string;
token_subdenom: string;
}
export type QueryMsg = {
config: {};
} | {
wrapped_supply: {};
};
export interface WrappedSupplyResponse {
wrapped_supply: Uint128;
}