import { Coin, CoinSDKType } from "../../base/v1beta1/coin"; import { BinaryReader, BinaryWriter } from "../../../binary"; export declare const protobufPackage = "cosmos.bank.v1beta1"; /** Params defines the parameters for the bank module. */ export interface Params { sendEnabled: SendEnabled[]; defaultSendEnabled: boolean; } /** Params defines the parameters for the bank module. */ export interface ParamsSDKType { send_enabled: SendEnabledSDKType[]; default_send_enabled: boolean; } /** * SendEnabled maps coin denom to a send_enabled status (whether a denom is * sendable). */ export interface SendEnabled { denom: string; enabled: boolean; } /** * SendEnabled maps coin denom to a send_enabled status (whether a denom is * sendable). */ export interface SendEnabledSDKType { denom: string; enabled: boolean; } /** Input models transaction input. */ export interface Input { address: string; coins: Coin[]; } /** Input models transaction input. */ export interface InputSDKType { address: string; coins: CoinSDKType[]; } /** Output models transaction outputs. */ export interface Output { address: string; coins: Coin[]; } /** Output models transaction outputs. */ export interface OutputSDKType { address: string; coins: CoinSDKType[]; } /** * Supply represents a struct that passively keeps track of the total supply * amounts in the network. * This message is deprecated now that supply is indexed by denom. */ /** @deprecated */ export interface Supply { total: Coin[]; } /** * Supply represents a struct that passively keeps track of the total supply * amounts in the network. * This message is deprecated now that supply is indexed by denom. */ /** @deprecated */ export interface SupplySDKType { total: CoinSDKType[]; } /** * DenomUnit represents a struct that describes a given * denomination unit of the basic token. */ export interface DenomUnit { /** denom represents the string name of the given denom unit (e.g uatom). */ denom: string; /** * exponent represents power of 10 exponent that one must * raise the base_denom to in order to equal the given DenomUnit's denom * 1 denom = 1^exponent base_denom * (e.g. with a base_denom of uatom, one can create a DenomUnit of 'atom' with * exponent = 6, thus: 1 atom = 10^6 uatom). */ exponent: number; /** aliases is a list of string aliases for the given denom */ aliases: string[]; } /** * DenomUnit represents a struct that describes a given * denomination unit of the basic token. */ export interface DenomUnitSDKType { denom: string; exponent: number; aliases: string[]; } /** * Metadata represents a struct that describes * a basic token. */ export interface Metadata { description: string; /** denom_units represents the list of DenomUnit's for a given coin */ denomUnits: DenomUnit[]; /** base represents the base denom (should be the DenomUnit with exponent = 0). */ base: string; /** * display indicates the suggested denom that should be * displayed in clients. */ display: string; /** * name defines the name of the token (eg: Cosmos Atom) * * Since: cosmos-sdk 0.43 */ name: string; /** * symbol is the token symbol usually shown on exchanges (eg: ATOM). This can * be the same as the display. * * Since: cosmos-sdk 0.43 */ symbol: string; } /** * Metadata represents a struct that describes * a basic token. */ export interface MetadataSDKType { description: string; denom_units: DenomUnitSDKType[]; base: string; display: string; name: string; symbol: string; } export declare const Params: { typeUrl: string; encode(message: Params, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Params; fromJSON(object: any): Params; toJSON(message: Params): unknown; fromPartial & { sendEnabled?: SendEnabled[] & (SendEnabled & { denom: string; enabled: boolean; } & Record, never>)[] & Record, never>; defaultSendEnabled?: boolean; } & Record, never>>(object: I): Params; }; export declare const SendEnabled: { typeUrl: string; encode(message: SendEnabled, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): SendEnabled; fromJSON(object: any): SendEnabled; toJSON(message: SendEnabled): unknown; fromPartial & { denom?: string; enabled?: boolean; } & Record, never>>(object: I): SendEnabled; }; export declare const Input: { typeUrl: string; encode(message: Input, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Input; fromJSON(object: any): Input; toJSON(message: Input): unknown; fromPartial & { address?: string; coins?: Coin[] & (Coin & { denom: string; amount: string; } & Record, never>)[] & Record, never>; } & Record, never>>(object: I): Input; }; export declare const Output: { typeUrl: string; encode(message: Output, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Output; fromJSON(object: any): Output; toJSON(message: Output): unknown; fromPartial & { address?: string; coins?: Coin[] & (Coin & { denom: string; amount: string; } & Record, never>)[] & Record, never>; } & Record, never>>(object: I): Output; }; export declare const Supply: { typeUrl: string; encode(message: Supply, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Supply; fromJSON(object: any): Supply; toJSON(message: Supply): unknown; fromPartial & { total?: Coin[] & (Coin & { denom: string; amount: string; } & Record, never>)[] & Record, never>; } & Record, never>>(object: I): Supply; }; export declare const DenomUnit: { typeUrl: string; encode(message: DenomUnit, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): DenomUnit; fromJSON(object: any): DenomUnit; toJSON(message: DenomUnit): unknown; fromPartial & { denom?: string; exponent?: number; aliases?: string[] & Record, never>; } & Record, never>>(object: I): DenomUnit; }; export declare const Metadata: { typeUrl: string; encode(message: Metadata, writer?: BinaryWriter): BinaryWriter; decode(input: BinaryReader | Uint8Array, length?: number): Metadata; fromJSON(object: any): Metadata; toJSON(message: Metadata): unknown; fromPartial & { description?: string; denomUnits?: DenomUnit[] & (DenomUnit & { denom: string; exponent: number; aliases: string[] & Record, never>; } & Record, never>)[] & Record, never>; base?: string; display?: string; name?: string; symbol?: string; } & Record, never>>(object: I): Metadata; };