@bandprotocol/bandchain.js
Version:
TypeScript library for Cosmos SDK and BandChain
1,050 lines • 56.5 kB
TypeScript
import { Member, MemberAmino, MemberSDKType, VoteOption, ThresholdDecisionPolicy, ThresholdDecisionPolicyProtoMsg, ThresholdDecisionPolicySDKType, PercentageDecisionPolicy, PercentageDecisionPolicyProtoMsg, PercentageDecisionPolicySDKType } from "./types";
import { Any, AnyProtoMsg, AnyAmino, AnySDKType } from "../../../google/protobuf/any";
import { BinaryReader, BinaryWriter } from "../../../binary";
/** Exec defines modes of execution of a proposal on creation or on new vote. */
export declare enum Exec {
/**
* EXEC_UNSPECIFIED - An empty value means that there should be a separate
* MsgExec request for the proposal to execute.
*/
EXEC_UNSPECIFIED = 0,
/**
* EXEC_TRY - Try to execute the proposal immediately.
* If the proposal is not allowed per the DecisionPolicy,
* the proposal will still be open and could
* be executed at a later point.
*/
EXEC_TRY = 1,
UNRECOGNIZED = -1
}
export declare const ExecSDKType: typeof Exec;
export declare const ExecAmino: typeof Exec;
export declare function execFromJSON(object: any): Exec;
export declare function execToJSON(object: Exec): string;
/** MsgCreateGroup is the Msg/CreateGroup request type. */
export interface MsgCreateGroup {
/** admin is the account address of the group admin. */
admin: string;
/** members defines the group members. */
members: Member[];
/** metadata is any arbitrary metadata to attached to the group. */
metadata: string;
}
export interface MsgCreateGroupProtoMsg {
typeUrl: "/cosmos.group.v1.MsgCreateGroup";
value: Uint8Array;
}
/** MsgCreateGroup is the Msg/CreateGroup request type. */
export interface MsgCreateGroupAmino {
/** admin is the account address of the group admin. */
admin?: string;
/** members defines the group members. */
members?: MemberAmino[];
/** metadata is any arbitrary metadata to attached to the group. */
metadata?: string;
}
export interface MsgCreateGroupAminoMsg {
type: "cosmos-sdk/MsgCreateGroup";
value: MsgCreateGroupAmino;
}
/** MsgCreateGroup is the Msg/CreateGroup request type. */
export interface MsgCreateGroupSDKType {
admin: string;
members: MemberSDKType[];
metadata: string;
}
/** MsgCreateGroupResponse is the Msg/CreateGroup response type. */
export interface MsgCreateGroupResponse {
/** group_id is the unique ID of the newly created group. */
groupId: bigint;
}
export interface MsgCreateGroupResponseProtoMsg {
typeUrl: "/cosmos.group.v1.MsgCreateGroupResponse";
value: Uint8Array;
}
/** MsgCreateGroupResponse is the Msg/CreateGroup response type. */
export interface MsgCreateGroupResponseAmino {
/** group_id is the unique ID of the newly created group. */
group_id?: string;
}
export interface MsgCreateGroupResponseAminoMsg {
type: "cosmos-sdk/MsgCreateGroupResponse";
value: MsgCreateGroupResponseAmino;
}
/** MsgCreateGroupResponse is the Msg/CreateGroup response type. */
export interface MsgCreateGroupResponseSDKType {
group_id: bigint;
}
/** MsgUpdateGroupMembers is the Msg/UpdateGroupMembers request type. */
export interface MsgUpdateGroupMembers {
/** admin is the account address of the group admin. */
admin: string;
/** group_id is the unique ID of the group. */
groupId: bigint;
/**
* member_updates is the list of members to update,
* set weight to 0 to remove a member.
*/
memberUpdates: Member[];
}
export interface MsgUpdateGroupMembersProtoMsg {
typeUrl: "/cosmos.group.v1.MsgUpdateGroupMembers";
value: Uint8Array;
}
/** MsgUpdateGroupMembers is the Msg/UpdateGroupMembers request type. */
export interface MsgUpdateGroupMembersAmino {
/** admin is the account address of the group admin. */
admin?: string;
/** group_id is the unique ID of the group. */
group_id?: string;
/**
* member_updates is the list of members to update,
* set weight to 0 to remove a member.
*/
member_updates?: MemberAmino[];
}
export interface MsgUpdateGroupMembersAminoMsg {
type: "cosmos-sdk/MsgUpdateGroupMembers";
value: MsgUpdateGroupMembersAmino;
}
/** MsgUpdateGroupMembers is the Msg/UpdateGroupMembers request type. */
export interface MsgUpdateGroupMembersSDKType {
admin: string;
group_id: bigint;
member_updates: MemberSDKType[];
}
/** MsgUpdateGroupMembersResponse is the Msg/UpdateGroupMembers response type. */
export interface MsgUpdateGroupMembersResponse {
}
export interface MsgUpdateGroupMembersResponseProtoMsg {
typeUrl: "/cosmos.group.v1.MsgUpdateGroupMembersResponse";
value: Uint8Array;
}
/** MsgUpdateGroupMembersResponse is the Msg/UpdateGroupMembers response type. */
export interface MsgUpdateGroupMembersResponseAmino {
}
export interface MsgUpdateGroupMembersResponseAminoMsg {
type: "cosmos-sdk/MsgUpdateGroupMembersResponse";
value: MsgUpdateGroupMembersResponseAmino;
}
/** MsgUpdateGroupMembersResponse is the Msg/UpdateGroupMembers response type. */
export interface MsgUpdateGroupMembersResponseSDKType {
}
/** MsgUpdateGroupAdmin is the Msg/UpdateGroupAdmin request type. */
export interface MsgUpdateGroupAdmin {
/** admin is the current account address of the group admin. */
admin: string;
/** group_id is the unique ID of the group. */
groupId: bigint;
/** new_admin is the group new admin account address. */
newAdmin: string;
}
export interface MsgUpdateGroupAdminProtoMsg {
typeUrl: "/cosmos.group.v1.MsgUpdateGroupAdmin";
value: Uint8Array;
}
/** MsgUpdateGroupAdmin is the Msg/UpdateGroupAdmin request type. */
export interface MsgUpdateGroupAdminAmino {
/** admin is the current account address of the group admin. */
admin?: string;
/** group_id is the unique ID of the group. */
group_id?: string;
/** new_admin is the group new admin account address. */
new_admin?: string;
}
export interface MsgUpdateGroupAdminAminoMsg {
type: "cosmos-sdk/MsgUpdateGroupAdmin";
value: MsgUpdateGroupAdminAmino;
}
/** MsgUpdateGroupAdmin is the Msg/UpdateGroupAdmin request type. */
export interface MsgUpdateGroupAdminSDKType {
admin: string;
group_id: bigint;
new_admin: string;
}
/** MsgUpdateGroupAdminResponse is the Msg/UpdateGroupAdmin response type. */
export interface MsgUpdateGroupAdminResponse {
}
export interface MsgUpdateGroupAdminResponseProtoMsg {
typeUrl: "/cosmos.group.v1.MsgUpdateGroupAdminResponse";
value: Uint8Array;
}
/** MsgUpdateGroupAdminResponse is the Msg/UpdateGroupAdmin response type. */
export interface MsgUpdateGroupAdminResponseAmino {
}
export interface MsgUpdateGroupAdminResponseAminoMsg {
type: "cosmos-sdk/MsgUpdateGroupAdminResponse";
value: MsgUpdateGroupAdminResponseAmino;
}
/** MsgUpdateGroupAdminResponse is the Msg/UpdateGroupAdmin response type. */
export interface MsgUpdateGroupAdminResponseSDKType {
}
/** MsgUpdateGroupMetadata is the Msg/UpdateGroupMetadata request type. */
export interface MsgUpdateGroupMetadata {
/** admin is the account address of the group admin. */
admin: string;
/** group_id is the unique ID of the group. */
groupId: bigint;
/** metadata is the updated group's metadata. */
metadata: string;
}
export interface MsgUpdateGroupMetadataProtoMsg {
typeUrl: "/cosmos.group.v1.MsgUpdateGroupMetadata";
value: Uint8Array;
}
/** MsgUpdateGroupMetadata is the Msg/UpdateGroupMetadata request type. */
export interface MsgUpdateGroupMetadataAmino {
/** admin is the account address of the group admin. */
admin?: string;
/** group_id is the unique ID of the group. */
group_id?: string;
/** metadata is the updated group's metadata. */
metadata?: string;
}
export interface MsgUpdateGroupMetadataAminoMsg {
type: "cosmos-sdk/MsgUpdateGroupMetadata";
value: MsgUpdateGroupMetadataAmino;
}
/** MsgUpdateGroupMetadata is the Msg/UpdateGroupMetadata request type. */
export interface MsgUpdateGroupMetadataSDKType {
admin: string;
group_id: bigint;
metadata: string;
}
/** MsgUpdateGroupMetadataResponse is the Msg/UpdateGroupMetadata response type. */
export interface MsgUpdateGroupMetadataResponse {
}
export interface MsgUpdateGroupMetadataResponseProtoMsg {
typeUrl: "/cosmos.group.v1.MsgUpdateGroupMetadataResponse";
value: Uint8Array;
}
/** MsgUpdateGroupMetadataResponse is the Msg/UpdateGroupMetadata response type. */
export interface MsgUpdateGroupMetadataResponseAmino {
}
export interface MsgUpdateGroupMetadataResponseAminoMsg {
type: "cosmos-sdk/MsgUpdateGroupMetadataResponse";
value: MsgUpdateGroupMetadataResponseAmino;
}
/** MsgUpdateGroupMetadataResponse is the Msg/UpdateGroupMetadata response type. */
export interface MsgUpdateGroupMetadataResponseSDKType {
}
/** MsgCreateGroupPolicy is the Msg/CreateGroupPolicy request type. */
export interface MsgCreateGroupPolicy {
/** admin is the account address of the group admin. */
admin: string;
/** group_id is the unique ID of the group. */
groupId: bigint;
/** metadata is any arbitrary metadata attached to the group policy. */
metadata: string;
/** decision_policy specifies the group policy's decision policy. */
decisionPolicy?: ThresholdDecisionPolicy | PercentageDecisionPolicy | Any | undefined;
}
export interface MsgCreateGroupPolicyProtoMsg {
typeUrl: "/cosmos.group.v1.MsgCreateGroupPolicy";
value: Uint8Array;
}
export type MsgCreateGroupPolicyEncoded = Omit<MsgCreateGroupPolicy, "decisionPolicy"> & {
/** decision_policy specifies the group policy's decision policy. */ decisionPolicy?: ThresholdDecisionPolicyProtoMsg | PercentageDecisionPolicyProtoMsg | AnyProtoMsg | undefined;
};
/** MsgCreateGroupPolicy is the Msg/CreateGroupPolicy request type. */
export interface MsgCreateGroupPolicyAmino {
/** admin is the account address of the group admin. */
admin?: string;
/** group_id is the unique ID of the group. */
group_id?: string;
/** metadata is any arbitrary metadata attached to the group policy. */
metadata?: string;
/** decision_policy specifies the group policy's decision policy. */
decision_policy?: AnyAmino;
}
export interface MsgCreateGroupPolicyAminoMsg {
type: "cosmos-sdk/MsgCreateGroupPolicy";
value: MsgCreateGroupPolicyAmino;
}
/** MsgCreateGroupPolicy is the Msg/CreateGroupPolicy request type. */
export interface MsgCreateGroupPolicySDKType {
admin: string;
group_id: bigint;
metadata: string;
decision_policy?: ThresholdDecisionPolicySDKType | PercentageDecisionPolicySDKType | AnySDKType | undefined;
}
/** MsgCreateGroupPolicyResponse is the Msg/CreateGroupPolicy response type. */
export interface MsgCreateGroupPolicyResponse {
/** address is the account address of the newly created group policy. */
address: string;
}
export interface MsgCreateGroupPolicyResponseProtoMsg {
typeUrl: "/cosmos.group.v1.MsgCreateGroupPolicyResponse";
value: Uint8Array;
}
/** MsgCreateGroupPolicyResponse is the Msg/CreateGroupPolicy response type. */
export interface MsgCreateGroupPolicyResponseAmino {
/** address is the account address of the newly created group policy. */
address?: string;
}
export interface MsgCreateGroupPolicyResponseAminoMsg {
type: "cosmos-sdk/MsgCreateGroupPolicyResponse";
value: MsgCreateGroupPolicyResponseAmino;
}
/** MsgCreateGroupPolicyResponse is the Msg/CreateGroupPolicy response type. */
export interface MsgCreateGroupPolicyResponseSDKType {
address: string;
}
/** MsgUpdateGroupPolicyAdmin is the Msg/UpdateGroupPolicyAdmin request type. */
export interface MsgUpdateGroupPolicyAdmin {
/** admin is the account address of the group admin. */
admin: string;
/** address is the account address of the group policy. */
address: string;
/** new_admin is the new group policy admin. */
newAdmin: string;
}
export interface MsgUpdateGroupPolicyAdminProtoMsg {
typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyAdmin";
value: Uint8Array;
}
/** MsgUpdateGroupPolicyAdmin is the Msg/UpdateGroupPolicyAdmin request type. */
export interface MsgUpdateGroupPolicyAdminAmino {
/** admin is the account address of the group admin. */
admin?: string;
/** address is the account address of the group policy. */
address?: string;
/** new_admin is the new group policy admin. */
new_admin?: string;
}
export interface MsgUpdateGroupPolicyAdminAminoMsg {
type: "cosmos-sdk/MsgUpdateGroupPolicyAdmin";
value: MsgUpdateGroupPolicyAdminAmino;
}
/** MsgUpdateGroupPolicyAdmin is the Msg/UpdateGroupPolicyAdmin request type. */
export interface MsgUpdateGroupPolicyAdminSDKType {
admin: string;
address: string;
new_admin: string;
}
/** MsgCreateGroupWithPolicy is the Msg/CreateGroupWithPolicy request type. */
export interface MsgCreateGroupWithPolicy {
/** admin is the account address of the group and group policy admin. */
admin: string;
/** members defines the group members. */
members: Member[];
/** group_metadata is any arbitrary metadata attached to the group. */
groupMetadata: string;
/** group_policy_metadata is any arbitrary metadata attached to the group policy. */
groupPolicyMetadata: string;
/** group_policy_as_admin is a boolean field, if set to true, the group policy account address will be used as group and group policy admin. */
groupPolicyAsAdmin: boolean;
/** decision_policy specifies the group policy's decision policy. */
decisionPolicy?: ThresholdDecisionPolicy | PercentageDecisionPolicy | Any | undefined;
}
export interface MsgCreateGroupWithPolicyProtoMsg {
typeUrl: "/cosmos.group.v1.MsgCreateGroupWithPolicy";
value: Uint8Array;
}
export type MsgCreateGroupWithPolicyEncoded = Omit<MsgCreateGroupWithPolicy, "decisionPolicy"> & {
/** decision_policy specifies the group policy's decision policy. */ decisionPolicy?: ThresholdDecisionPolicyProtoMsg | PercentageDecisionPolicyProtoMsg | AnyProtoMsg | undefined;
};
/** MsgCreateGroupWithPolicy is the Msg/CreateGroupWithPolicy request type. */
export interface MsgCreateGroupWithPolicyAmino {
/** admin is the account address of the group and group policy admin. */
admin?: string;
/** members defines the group members. */
members?: MemberAmino[];
/** group_metadata is any arbitrary metadata attached to the group. */
group_metadata?: string;
/** group_policy_metadata is any arbitrary metadata attached to the group policy. */
group_policy_metadata?: string;
/** group_policy_as_admin is a boolean field, if set to true, the group policy account address will be used as group and group policy admin. */
group_policy_as_admin?: boolean;
/** decision_policy specifies the group policy's decision policy. */
decision_policy?: AnyAmino;
}
export interface MsgCreateGroupWithPolicyAminoMsg {
type: "cosmos-sdk/MsgCreateGroupWithPolicy";
value: MsgCreateGroupWithPolicyAmino;
}
/** MsgCreateGroupWithPolicy is the Msg/CreateGroupWithPolicy request type. */
export interface MsgCreateGroupWithPolicySDKType {
admin: string;
members: MemberSDKType[];
group_metadata: string;
group_policy_metadata: string;
group_policy_as_admin: boolean;
decision_policy?: ThresholdDecisionPolicySDKType | PercentageDecisionPolicySDKType | AnySDKType | undefined;
}
/** MsgCreateGroupWithPolicyResponse is the Msg/CreateGroupWithPolicy response type. */
export interface MsgCreateGroupWithPolicyResponse {
/** group_id is the unique ID of the newly created group with policy. */
groupId: bigint;
/** group_policy_address is the account address of the newly created group policy. */
groupPolicyAddress: string;
}
export interface MsgCreateGroupWithPolicyResponseProtoMsg {
typeUrl: "/cosmos.group.v1.MsgCreateGroupWithPolicyResponse";
value: Uint8Array;
}
/** MsgCreateGroupWithPolicyResponse is the Msg/CreateGroupWithPolicy response type. */
export interface MsgCreateGroupWithPolicyResponseAmino {
/** group_id is the unique ID of the newly created group with policy. */
group_id?: string;
/** group_policy_address is the account address of the newly created group policy. */
group_policy_address?: string;
}
export interface MsgCreateGroupWithPolicyResponseAminoMsg {
type: "cosmos-sdk/MsgCreateGroupWithPolicyResponse";
value: MsgCreateGroupWithPolicyResponseAmino;
}
/** MsgCreateGroupWithPolicyResponse is the Msg/CreateGroupWithPolicy response type. */
export interface MsgCreateGroupWithPolicyResponseSDKType {
group_id: bigint;
group_policy_address: string;
}
/** MsgUpdateGroupPolicyAdminResponse is the Msg/UpdateGroupPolicyAdmin response type. */
export interface MsgUpdateGroupPolicyAdminResponse {
}
export interface MsgUpdateGroupPolicyAdminResponseProtoMsg {
typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyAdminResponse";
value: Uint8Array;
}
/** MsgUpdateGroupPolicyAdminResponse is the Msg/UpdateGroupPolicyAdmin response type. */
export interface MsgUpdateGroupPolicyAdminResponseAmino {
}
export interface MsgUpdateGroupPolicyAdminResponseAminoMsg {
type: "cosmos-sdk/MsgUpdateGroupPolicyAdminResponse";
value: MsgUpdateGroupPolicyAdminResponseAmino;
}
/** MsgUpdateGroupPolicyAdminResponse is the Msg/UpdateGroupPolicyAdmin response type. */
export interface MsgUpdateGroupPolicyAdminResponseSDKType {
}
/** MsgUpdateGroupPolicyDecisionPolicy is the Msg/UpdateGroupPolicyDecisionPolicy request type. */
export interface MsgUpdateGroupPolicyDecisionPolicy {
/** admin is the account address of the group admin. */
admin: string;
/** address is the account address of group policy. */
address: string;
/** decision_policy is the updated group policy's decision policy. */
decisionPolicy?: ThresholdDecisionPolicy | PercentageDecisionPolicy | Any | undefined;
}
export interface MsgUpdateGroupPolicyDecisionPolicyProtoMsg {
typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicy";
value: Uint8Array;
}
export type MsgUpdateGroupPolicyDecisionPolicyEncoded = Omit<MsgUpdateGroupPolicyDecisionPolicy, "decisionPolicy"> & {
/** decision_policy is the updated group policy's decision policy. */ decisionPolicy?: ThresholdDecisionPolicyProtoMsg | PercentageDecisionPolicyProtoMsg | AnyProtoMsg | undefined;
};
/** MsgUpdateGroupPolicyDecisionPolicy is the Msg/UpdateGroupPolicyDecisionPolicy request type. */
export interface MsgUpdateGroupPolicyDecisionPolicyAmino {
/** admin is the account address of the group admin. */
admin?: string;
/** address is the account address of group policy. */
address?: string;
/** decision_policy is the updated group policy's decision policy. */
decision_policy?: AnyAmino;
}
export interface MsgUpdateGroupPolicyDecisionPolicyAminoMsg {
type: "cosmos-sdk/MsgUpdateGroupPolicyDecisionPolicy";
value: MsgUpdateGroupPolicyDecisionPolicyAmino;
}
/** MsgUpdateGroupPolicyDecisionPolicy is the Msg/UpdateGroupPolicyDecisionPolicy request type. */
export interface MsgUpdateGroupPolicyDecisionPolicySDKType {
admin: string;
address: string;
decision_policy?: ThresholdDecisionPolicySDKType | PercentageDecisionPolicySDKType | AnySDKType | undefined;
}
/** MsgUpdateGroupPolicyDecisionPolicyResponse is the Msg/UpdateGroupPolicyDecisionPolicy response type. */
export interface MsgUpdateGroupPolicyDecisionPolicyResponse {
}
export interface MsgUpdateGroupPolicyDecisionPolicyResponseProtoMsg {
typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyDecisionPolicyResponse";
value: Uint8Array;
}
/** MsgUpdateGroupPolicyDecisionPolicyResponse is the Msg/UpdateGroupPolicyDecisionPolicy response type. */
export interface MsgUpdateGroupPolicyDecisionPolicyResponseAmino {
}
export interface MsgUpdateGroupPolicyDecisionPolicyResponseAminoMsg {
type: "cosmos-sdk/MsgUpdateGroupPolicyDecisionPolicyResponse";
value: MsgUpdateGroupPolicyDecisionPolicyResponseAmino;
}
/** MsgUpdateGroupPolicyDecisionPolicyResponse is the Msg/UpdateGroupPolicyDecisionPolicy response type. */
export interface MsgUpdateGroupPolicyDecisionPolicyResponseSDKType {
}
/** MsgUpdateGroupPolicyMetadata is the Msg/UpdateGroupPolicyMetadata request type. */
export interface MsgUpdateGroupPolicyMetadata {
/** admin is the account address of the group admin. */
admin: string;
/** address is the account address of group policy. */
address: string;
/** metadata is the updated group policy metadata. */
metadata: string;
}
export interface MsgUpdateGroupPolicyMetadataProtoMsg {
typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyMetadata";
value: Uint8Array;
}
/** MsgUpdateGroupPolicyMetadata is the Msg/UpdateGroupPolicyMetadata request type. */
export interface MsgUpdateGroupPolicyMetadataAmino {
/** admin is the account address of the group admin. */
admin?: string;
/** address is the account address of group policy. */
address?: string;
/** metadata is the updated group policy metadata. */
metadata?: string;
}
export interface MsgUpdateGroupPolicyMetadataAminoMsg {
type: "cosmos-sdk/MsgUpdateGroupPolicyMetadata";
value: MsgUpdateGroupPolicyMetadataAmino;
}
/** MsgUpdateGroupPolicyMetadata is the Msg/UpdateGroupPolicyMetadata request type. */
export interface MsgUpdateGroupPolicyMetadataSDKType {
admin: string;
address: string;
metadata: string;
}
/** MsgUpdateGroupPolicyMetadataResponse is the Msg/UpdateGroupPolicyMetadata response type. */
export interface MsgUpdateGroupPolicyMetadataResponse {
}
export interface MsgUpdateGroupPolicyMetadataResponseProtoMsg {
typeUrl: "/cosmos.group.v1.MsgUpdateGroupPolicyMetadataResponse";
value: Uint8Array;
}
/** MsgUpdateGroupPolicyMetadataResponse is the Msg/UpdateGroupPolicyMetadata response type. */
export interface MsgUpdateGroupPolicyMetadataResponseAmino {
}
export interface MsgUpdateGroupPolicyMetadataResponseAminoMsg {
type: "cosmos-sdk/MsgUpdateGroupPolicyMetadataResponse";
value: MsgUpdateGroupPolicyMetadataResponseAmino;
}
/** MsgUpdateGroupPolicyMetadataResponse is the Msg/UpdateGroupPolicyMetadata response type. */
export interface MsgUpdateGroupPolicyMetadataResponseSDKType {
}
/** MsgSubmitProposal is the Msg/SubmitProposal request type. */
export interface MsgSubmitProposal {
/** address is the account address of group policy. */
address: string;
/**
* proposers are the account addresses of the proposers.
* Proposers signatures will be counted as yes votes.
*/
proposers: string[];
/** metadata is any arbitrary metadata to attached to the proposal. */
metadata: string;
/** messages is a list of `sdk.Msg`s that will be executed if the proposal passes. */
messages: Any[];
/**
* exec defines the mode of execution of the proposal,
* whether it should be executed immediately on creation or not.
* If so, proposers signatures are considered as Yes votes.
*/
exec: Exec;
}
export interface MsgSubmitProposalProtoMsg {
typeUrl: "/cosmos.group.v1.MsgSubmitProposal";
value: Uint8Array;
}
/** MsgSubmitProposal is the Msg/SubmitProposal request type. */
export interface MsgSubmitProposalAmino {
/** address is the account address of group policy. */
address?: string;
/**
* proposers are the account addresses of the proposers.
* Proposers signatures will be counted as yes votes.
*/
proposers?: string[];
/** metadata is any arbitrary metadata to attached to the proposal. */
metadata?: string;
/** messages is a list of `sdk.Msg`s that will be executed if the proposal passes. */
messages?: AnyAmino[];
/**
* exec defines the mode of execution of the proposal,
* whether it should be executed immediately on creation or not.
* If so, proposers signatures are considered as Yes votes.
*/
exec?: Exec;
}
export interface MsgSubmitProposalAminoMsg {
type: "cosmos-sdk/group/MsgSubmitProposal";
value: MsgSubmitProposalAmino;
}
/** MsgSubmitProposal is the Msg/SubmitProposal request type. */
export interface MsgSubmitProposalSDKType {
address: string;
proposers: string[];
metadata: string;
messages: AnySDKType[];
exec: Exec;
}
/** MsgSubmitProposalResponse is the Msg/SubmitProposal response type. */
export interface MsgSubmitProposalResponse {
/** proposal is the unique ID of the proposal. */
proposalId: bigint;
}
export interface MsgSubmitProposalResponseProtoMsg {
typeUrl: "/cosmos.group.v1.MsgSubmitProposalResponse";
value: Uint8Array;
}
/** MsgSubmitProposalResponse is the Msg/SubmitProposal response type. */
export interface MsgSubmitProposalResponseAmino {
/** proposal is the unique ID of the proposal. */
proposal_id?: string;
}
export interface MsgSubmitProposalResponseAminoMsg {
type: "cosmos-sdk/MsgSubmitProposalResponse";
value: MsgSubmitProposalResponseAmino;
}
/** MsgSubmitProposalResponse is the Msg/SubmitProposal response type. */
export interface MsgSubmitProposalResponseSDKType {
proposal_id: bigint;
}
/** MsgWithdrawProposal is the Msg/WithdrawProposal request type. */
export interface MsgWithdrawProposal {
/** proposal is the unique ID of the proposal. */
proposalId: bigint;
/** address is the admin of the group policy or one of the proposer of the proposal. */
address: string;
}
export interface MsgWithdrawProposalProtoMsg {
typeUrl: "/cosmos.group.v1.MsgWithdrawProposal";
value: Uint8Array;
}
/** MsgWithdrawProposal is the Msg/WithdrawProposal request type. */
export interface MsgWithdrawProposalAmino {
/** proposal is the unique ID of the proposal. */
proposal_id?: string;
/** address is the admin of the group policy or one of the proposer of the proposal. */
address?: string;
}
export interface MsgWithdrawProposalAminoMsg {
type: "cosmos-sdk/group/MsgWithdrawProposal";
value: MsgWithdrawProposalAmino;
}
/** MsgWithdrawProposal is the Msg/WithdrawProposal request type. */
export interface MsgWithdrawProposalSDKType {
proposal_id: bigint;
address: string;
}
/** MsgWithdrawProposalResponse is the Msg/WithdrawProposal response type. */
export interface MsgWithdrawProposalResponse {
}
export interface MsgWithdrawProposalResponseProtoMsg {
typeUrl: "/cosmos.group.v1.MsgWithdrawProposalResponse";
value: Uint8Array;
}
/** MsgWithdrawProposalResponse is the Msg/WithdrawProposal response type. */
export interface MsgWithdrawProposalResponseAmino {
}
export interface MsgWithdrawProposalResponseAminoMsg {
type: "cosmos-sdk/MsgWithdrawProposalResponse";
value: MsgWithdrawProposalResponseAmino;
}
/** MsgWithdrawProposalResponse is the Msg/WithdrawProposal response type. */
export interface MsgWithdrawProposalResponseSDKType {
}
/** MsgVote is the Msg/Vote request type. */
export interface MsgVote {
/** proposal is the unique ID of the proposal. */
proposalId: bigint;
/** voter is the voter account address. */
voter: string;
/** option is the voter's choice on the proposal. */
option: VoteOption;
/** metadata is any arbitrary metadata to attached to the vote. */
metadata: string;
/**
* exec defines whether the proposal should be executed
* immediately after voting or not.
*/
exec: Exec;
}
export interface MsgVoteProtoMsg {
typeUrl: "/cosmos.group.v1.MsgVote";
value: Uint8Array;
}
/** MsgVote is the Msg/Vote request type. */
export interface MsgVoteAmino {
/** proposal is the unique ID of the proposal. */
proposal_id?: string;
/** voter is the voter account address. */
voter?: string;
/** option is the voter's choice on the proposal. */
option?: VoteOption;
/** metadata is any arbitrary metadata to attached to the vote. */
metadata?: string;
/**
* exec defines whether the proposal should be executed
* immediately after voting or not.
*/
exec?: Exec;
}
export interface MsgVoteAminoMsg {
type: "cosmos-sdk/group/MsgVote";
value: MsgVoteAmino;
}
/** MsgVote is the Msg/Vote request type. */
export interface MsgVoteSDKType {
proposal_id: bigint;
voter: string;
option: VoteOption;
metadata: string;
exec: Exec;
}
/** MsgVoteResponse is the Msg/Vote response type. */
export interface MsgVoteResponse {
}
export interface MsgVoteResponseProtoMsg {
typeUrl: "/cosmos.group.v1.MsgVoteResponse";
value: Uint8Array;
}
/** MsgVoteResponse is the Msg/Vote response type. */
export interface MsgVoteResponseAmino {
}
export interface MsgVoteResponseAminoMsg {
type: "cosmos-sdk/MsgVoteResponse";
value: MsgVoteResponseAmino;
}
/** MsgVoteResponse is the Msg/Vote response type. */
export interface MsgVoteResponseSDKType {
}
/** MsgExec is the Msg/Exec request type. */
export interface MsgExec {
/** proposal is the unique ID of the proposal. */
proposalId: bigint;
/** signer is the account address used to execute the proposal. */
signer: string;
}
export interface MsgExecProtoMsg {
typeUrl: "/cosmos.group.v1.MsgExec";
value: Uint8Array;
}
/** MsgExec is the Msg/Exec request type. */
export interface MsgExecAmino {
/** proposal is the unique ID of the proposal. */
proposal_id?: string;
/** signer is the account address used to execute the proposal. */
signer?: string;
}
export interface MsgExecAminoMsg {
type: "cosmos-sdk/group/MsgExec";
value: MsgExecAmino;
}
/** MsgExec is the Msg/Exec request type. */
export interface MsgExecSDKType {
proposal_id: bigint;
signer: string;
}
/** MsgExecResponse is the Msg/Exec request type. */
export interface MsgExecResponse {
}
export interface MsgExecResponseProtoMsg {
typeUrl: "/cosmos.group.v1.MsgExecResponse";
value: Uint8Array;
}
/** MsgExecResponse is the Msg/Exec request type. */
export interface MsgExecResponseAmino {
}
export interface MsgExecResponseAminoMsg {
type: "cosmos-sdk/MsgExecResponse";
value: MsgExecResponseAmino;
}
/** MsgExecResponse is the Msg/Exec request type. */
export interface MsgExecResponseSDKType {
}
/** MsgLeaveGroup is the Msg/LeaveGroup request type. */
export interface MsgLeaveGroup {
/** address is the account address of the group member. */
address: string;
/** group_id is the unique ID of the group. */
groupId: bigint;
}
export interface MsgLeaveGroupProtoMsg {
typeUrl: "/cosmos.group.v1.MsgLeaveGroup";
value: Uint8Array;
}
/** MsgLeaveGroup is the Msg/LeaveGroup request type. */
export interface MsgLeaveGroupAmino {
/** address is the account address of the group member. */
address?: string;
/** group_id is the unique ID of the group. */
group_id?: string;
}
export interface MsgLeaveGroupAminoMsg {
type: "cosmos-sdk/group/MsgLeaveGroup";
value: MsgLeaveGroupAmino;
}
/** MsgLeaveGroup is the Msg/LeaveGroup request type. */
export interface MsgLeaveGroupSDKType {
address: string;
group_id: bigint;
}
/** MsgLeaveGroupResponse is the Msg/LeaveGroup response type. */
export interface MsgLeaveGroupResponse {
}
export interface MsgLeaveGroupResponseProtoMsg {
typeUrl: "/cosmos.group.v1.MsgLeaveGroupResponse";
value: Uint8Array;
}
/** MsgLeaveGroupResponse is the Msg/LeaveGroup response type. */
export interface MsgLeaveGroupResponseAmino {
}
export interface MsgLeaveGroupResponseAminoMsg {
type: "cosmos-sdk/MsgLeaveGroupResponse";
value: MsgLeaveGroupResponseAmino;
}
/** MsgLeaveGroupResponse is the Msg/LeaveGroup response type. */
export interface MsgLeaveGroupResponseSDKType {
}
export declare const MsgCreateGroup: {
typeUrl: string;
encode(message: MsgCreateGroup, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateGroup;
fromPartial(object: Partial<MsgCreateGroup>): MsgCreateGroup;
fromAmino(object: MsgCreateGroupAmino): MsgCreateGroup;
toAmino(message: MsgCreateGroup): MsgCreateGroupAmino;
fromAminoMsg(object: MsgCreateGroupAminoMsg): MsgCreateGroup;
toAminoMsg(message: MsgCreateGroup): MsgCreateGroupAminoMsg;
fromProtoMsg(message: MsgCreateGroupProtoMsg): MsgCreateGroup;
toProto(message: MsgCreateGroup): Uint8Array;
toProtoMsg(message: MsgCreateGroup): MsgCreateGroupProtoMsg;
};
export declare const MsgCreateGroupResponse: {
typeUrl: string;
encode(message: MsgCreateGroupResponse, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateGroupResponse;
fromPartial(object: Partial<MsgCreateGroupResponse>): MsgCreateGroupResponse;
fromAmino(object: MsgCreateGroupResponseAmino): MsgCreateGroupResponse;
toAmino(message: MsgCreateGroupResponse): MsgCreateGroupResponseAmino;
fromAminoMsg(object: MsgCreateGroupResponseAminoMsg): MsgCreateGroupResponse;
toAminoMsg(message: MsgCreateGroupResponse): MsgCreateGroupResponseAminoMsg;
fromProtoMsg(message: MsgCreateGroupResponseProtoMsg): MsgCreateGroupResponse;
toProto(message: MsgCreateGroupResponse): Uint8Array;
toProtoMsg(message: MsgCreateGroupResponse): MsgCreateGroupResponseProtoMsg;
};
export declare const MsgUpdateGroupMembers: {
typeUrl: string;
encode(message: MsgUpdateGroupMembers, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupMembers;
fromPartial(object: Partial<MsgUpdateGroupMembers>): MsgUpdateGroupMembers;
fromAmino(object: MsgUpdateGroupMembersAmino): MsgUpdateGroupMembers;
toAmino(message: MsgUpdateGroupMembers): MsgUpdateGroupMembersAmino;
fromAminoMsg(object: MsgUpdateGroupMembersAminoMsg): MsgUpdateGroupMembers;
toAminoMsg(message: MsgUpdateGroupMembers): MsgUpdateGroupMembersAminoMsg;
fromProtoMsg(message: MsgUpdateGroupMembersProtoMsg): MsgUpdateGroupMembers;
toProto(message: MsgUpdateGroupMembers): Uint8Array;
toProtoMsg(message: MsgUpdateGroupMembers): MsgUpdateGroupMembersProtoMsg;
};
export declare const MsgUpdateGroupMembersResponse: {
typeUrl: string;
encode(_: MsgUpdateGroupMembersResponse, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupMembersResponse;
fromPartial(_: Partial<MsgUpdateGroupMembersResponse>): MsgUpdateGroupMembersResponse;
fromAmino(_: MsgUpdateGroupMembersResponseAmino): MsgUpdateGroupMembersResponse;
toAmino(_: MsgUpdateGroupMembersResponse): MsgUpdateGroupMembersResponseAmino;
fromAminoMsg(object: MsgUpdateGroupMembersResponseAminoMsg): MsgUpdateGroupMembersResponse;
toAminoMsg(message: MsgUpdateGroupMembersResponse): MsgUpdateGroupMembersResponseAminoMsg;
fromProtoMsg(message: MsgUpdateGroupMembersResponseProtoMsg): MsgUpdateGroupMembersResponse;
toProto(message: MsgUpdateGroupMembersResponse): Uint8Array;
toProtoMsg(message: MsgUpdateGroupMembersResponse): MsgUpdateGroupMembersResponseProtoMsg;
};
export declare const MsgUpdateGroupAdmin: {
typeUrl: string;
encode(message: MsgUpdateGroupAdmin, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupAdmin;
fromPartial(object: Partial<MsgUpdateGroupAdmin>): MsgUpdateGroupAdmin;
fromAmino(object: MsgUpdateGroupAdminAmino): MsgUpdateGroupAdmin;
toAmino(message: MsgUpdateGroupAdmin): MsgUpdateGroupAdminAmino;
fromAminoMsg(object: MsgUpdateGroupAdminAminoMsg): MsgUpdateGroupAdmin;
toAminoMsg(message: MsgUpdateGroupAdmin): MsgUpdateGroupAdminAminoMsg;
fromProtoMsg(message: MsgUpdateGroupAdminProtoMsg): MsgUpdateGroupAdmin;
toProto(message: MsgUpdateGroupAdmin): Uint8Array;
toProtoMsg(message: MsgUpdateGroupAdmin): MsgUpdateGroupAdminProtoMsg;
};
export declare const MsgUpdateGroupAdminResponse: {
typeUrl: string;
encode(_: MsgUpdateGroupAdminResponse, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupAdminResponse;
fromPartial(_: Partial<MsgUpdateGroupAdminResponse>): MsgUpdateGroupAdminResponse;
fromAmino(_: MsgUpdateGroupAdminResponseAmino): MsgUpdateGroupAdminResponse;
toAmino(_: MsgUpdateGroupAdminResponse): MsgUpdateGroupAdminResponseAmino;
fromAminoMsg(object: MsgUpdateGroupAdminResponseAminoMsg): MsgUpdateGroupAdminResponse;
toAminoMsg(message: MsgUpdateGroupAdminResponse): MsgUpdateGroupAdminResponseAminoMsg;
fromProtoMsg(message: MsgUpdateGroupAdminResponseProtoMsg): MsgUpdateGroupAdminResponse;
toProto(message: MsgUpdateGroupAdminResponse): Uint8Array;
toProtoMsg(message: MsgUpdateGroupAdminResponse): MsgUpdateGroupAdminResponseProtoMsg;
};
export declare const MsgUpdateGroupMetadata: {
typeUrl: string;
encode(message: MsgUpdateGroupMetadata, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupMetadata;
fromPartial(object: Partial<MsgUpdateGroupMetadata>): MsgUpdateGroupMetadata;
fromAmino(object: MsgUpdateGroupMetadataAmino): MsgUpdateGroupMetadata;
toAmino(message: MsgUpdateGroupMetadata): MsgUpdateGroupMetadataAmino;
fromAminoMsg(object: MsgUpdateGroupMetadataAminoMsg): MsgUpdateGroupMetadata;
toAminoMsg(message: MsgUpdateGroupMetadata): MsgUpdateGroupMetadataAminoMsg;
fromProtoMsg(message: MsgUpdateGroupMetadataProtoMsg): MsgUpdateGroupMetadata;
toProto(message: MsgUpdateGroupMetadata): Uint8Array;
toProtoMsg(message: MsgUpdateGroupMetadata): MsgUpdateGroupMetadataProtoMsg;
};
export declare const MsgUpdateGroupMetadataResponse: {
typeUrl: string;
encode(_: MsgUpdateGroupMetadataResponse, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupMetadataResponse;
fromPartial(_: Partial<MsgUpdateGroupMetadataResponse>): MsgUpdateGroupMetadataResponse;
fromAmino(_: MsgUpdateGroupMetadataResponseAmino): MsgUpdateGroupMetadataResponse;
toAmino(_: MsgUpdateGroupMetadataResponse): MsgUpdateGroupMetadataResponseAmino;
fromAminoMsg(object: MsgUpdateGroupMetadataResponseAminoMsg): MsgUpdateGroupMetadataResponse;
toAminoMsg(message: MsgUpdateGroupMetadataResponse): MsgUpdateGroupMetadataResponseAminoMsg;
fromProtoMsg(message: MsgUpdateGroupMetadataResponseProtoMsg): MsgUpdateGroupMetadataResponse;
toProto(message: MsgUpdateGroupMetadataResponse): Uint8Array;
toProtoMsg(message: MsgUpdateGroupMetadataResponse): MsgUpdateGroupMetadataResponseProtoMsg;
};
export declare const MsgCreateGroupPolicy: {
typeUrl: string;
encode(message: MsgCreateGroupPolicy, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateGroupPolicy;
fromPartial(object: Partial<MsgCreateGroupPolicy>): MsgCreateGroupPolicy;
fromAmino(object: MsgCreateGroupPolicyAmino): MsgCreateGroupPolicy;
toAmino(message: MsgCreateGroupPolicy): MsgCreateGroupPolicyAmino;
fromAminoMsg(object: MsgCreateGroupPolicyAminoMsg): MsgCreateGroupPolicy;
toAminoMsg(message: MsgCreateGroupPolicy): MsgCreateGroupPolicyAminoMsg;
fromProtoMsg(message: MsgCreateGroupPolicyProtoMsg): MsgCreateGroupPolicy;
toProto(message: MsgCreateGroupPolicy): Uint8Array;
toProtoMsg(message: MsgCreateGroupPolicy): MsgCreateGroupPolicyProtoMsg;
};
export declare const MsgCreateGroupPolicyResponse: {
typeUrl: string;
encode(message: MsgCreateGroupPolicyResponse, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateGroupPolicyResponse;
fromPartial(object: Partial<MsgCreateGroupPolicyResponse>): MsgCreateGroupPolicyResponse;
fromAmino(object: MsgCreateGroupPolicyResponseAmino): MsgCreateGroupPolicyResponse;
toAmino(message: MsgCreateGroupPolicyResponse): MsgCreateGroupPolicyResponseAmino;
fromAminoMsg(object: MsgCreateGroupPolicyResponseAminoMsg): MsgCreateGroupPolicyResponse;
toAminoMsg(message: MsgCreateGroupPolicyResponse): MsgCreateGroupPolicyResponseAminoMsg;
fromProtoMsg(message: MsgCreateGroupPolicyResponseProtoMsg): MsgCreateGroupPolicyResponse;
toProto(message: MsgCreateGroupPolicyResponse): Uint8Array;
toProtoMsg(message: MsgCreateGroupPolicyResponse): MsgCreateGroupPolicyResponseProtoMsg;
};
export declare const MsgUpdateGroupPolicyAdmin: {
typeUrl: string;
encode(message: MsgUpdateGroupPolicyAdmin, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupPolicyAdmin;
fromPartial(object: Partial<MsgUpdateGroupPolicyAdmin>): MsgUpdateGroupPolicyAdmin;
fromAmino(object: MsgUpdateGroupPolicyAdminAmino): MsgUpdateGroupPolicyAdmin;
toAmino(message: MsgUpdateGroupPolicyAdmin): MsgUpdateGroupPolicyAdminAmino;
fromAminoMsg(object: MsgUpdateGroupPolicyAdminAminoMsg): MsgUpdateGroupPolicyAdmin;
toAminoMsg(message: MsgUpdateGroupPolicyAdmin): MsgUpdateGroupPolicyAdminAminoMsg;
fromProtoMsg(message: MsgUpdateGroupPolicyAdminProtoMsg): MsgUpdateGroupPolicyAdmin;
toProto(message: MsgUpdateGroupPolicyAdmin): Uint8Array;
toProtoMsg(message: MsgUpdateGroupPolicyAdmin): MsgUpdateGroupPolicyAdminProtoMsg;
};
export declare const MsgCreateGroupWithPolicy: {
typeUrl: string;
encode(message: MsgCreateGroupWithPolicy, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateGroupWithPolicy;
fromPartial(object: Partial<MsgCreateGroupWithPolicy>): MsgCreateGroupWithPolicy;
fromAmino(object: MsgCreateGroupWithPolicyAmino): MsgCreateGroupWithPolicy;
toAmino(message: MsgCreateGroupWithPolicy): MsgCreateGroupWithPolicyAmino;
fromAminoMsg(object: MsgCreateGroupWithPolicyAminoMsg): MsgCreateGroupWithPolicy;
toAminoMsg(message: MsgCreateGroupWithPolicy): MsgCreateGroupWithPolicyAminoMsg;
fromProtoMsg(message: MsgCreateGroupWithPolicyProtoMsg): MsgCreateGroupWithPolicy;
toProto(message: MsgCreateGroupWithPolicy): Uint8Array;
toProtoMsg(message: MsgCreateGroupWithPolicy): MsgCreateGroupWithPolicyProtoMsg;
};
export declare const MsgCreateGroupWithPolicyResponse: {
typeUrl: string;
encode(message: MsgCreateGroupWithPolicyResponse, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgCreateGroupWithPolicyResponse;
fromPartial(object: Partial<MsgCreateGroupWithPolicyResponse>): MsgCreateGroupWithPolicyResponse;
fromAmino(object: MsgCreateGroupWithPolicyResponseAmino): MsgCreateGroupWithPolicyResponse;
toAmino(message: MsgCreateGroupWithPolicyResponse): MsgCreateGroupWithPolicyResponseAmino;
fromAminoMsg(object: MsgCreateGroupWithPolicyResponseAminoMsg): MsgCreateGroupWithPolicyResponse;
toAminoMsg(message: MsgCreateGroupWithPolicyResponse): MsgCreateGroupWithPolicyResponseAminoMsg;
fromProtoMsg(message: MsgCreateGroupWithPolicyResponseProtoMsg): MsgCreateGroupWithPolicyResponse;
toProto(message: MsgCreateGroupWithPolicyResponse): Uint8Array;
toProtoMsg(message: MsgCreateGroupWithPolicyResponse): MsgCreateGroupWithPolicyResponseProtoMsg;
};
export declare const MsgUpdateGroupPolicyAdminResponse: {
typeUrl: string;
encode(_: MsgUpdateGroupPolicyAdminResponse, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupPolicyAdminResponse;
fromPartial(_: Partial<MsgUpdateGroupPolicyAdminResponse>): MsgUpdateGroupPolicyAdminResponse;
fromAmino(_: MsgUpdateGroupPolicyAdminResponseAmino): MsgUpdateGroupPolicyAdminResponse;
toAmino(_: MsgUpdateGroupPolicyAdminResponse): MsgUpdateGroupPolicyAdminResponseAmino;
fromAminoMsg(object: MsgUpdateGroupPolicyAdminResponseAminoMsg): MsgUpdateGroupPolicyAdminResponse;
toAminoMsg(message: MsgUpdateGroupPolicyAdminResponse): MsgUpdateGroupPolicyAdminResponseAminoMsg;
fromProtoMsg(message: MsgUpdateGroupPolicyAdminResponseProtoMsg): MsgUpdateGroupPolicyAdminResponse;
toProto(message: MsgUpdateGroupPolicyAdminResponse): Uint8Array;
toProtoMsg(message: MsgUpdateGroupPolicyAdminResponse): MsgUpdateGroupPolicyAdminResponseProtoMsg;
};
export declare const MsgUpdateGroupPolicyDecisionPolicy: {
typeUrl: string;
encode(message: MsgUpdateGroupPolicyDecisionPolicy, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupPolicyDecisionPolicy;
fromPartial(object: Partial<MsgUpdateGroupPolicyDecisionPolicy>): MsgUpdateGroupPolicyDecisionPolicy;
fromAmino(object: MsgUpdateGroupPolicyDecisionPolicyAmino): MsgUpdateGroupPolicyDecisionPolicy;
toAmino(message: MsgUpdateGroupPolicyDecisionPolicy): MsgUpdateGroupPolicyDecisionPolicyAmino;
fromAminoMsg(object: MsgUpdateGroupPolicyDecisionPolicyAminoMsg): MsgUpdateGroupPolicyDecisionPolicy;
toAminoMsg(message: MsgUpdateGroupPolicyDecisionPolicy): MsgUpdateGroupPolicyDecisionPolicyAminoMsg;
fromProtoMsg(message: MsgUpdateGroupPolicyDecisionPolicyProtoMsg): MsgUpdateGroupPolicyDecisionPolicy;
toProto(message: MsgUpdateGroupPolicyDecisionPolicy): Uint8Array;
toProtoMsg(message: MsgUpdateGroupPolicyDecisionPolicy): MsgUpdateGroupPolicyDecisionPolicyProtoMsg;
};
export declare const MsgUpdateGroupPolicyDecisionPolicyResponse: {
typeUrl: string;
encode(_: MsgUpdateGroupPolicyDecisionPolicyResponse, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupPolicyDecisionPolicyResponse;
fromPartial(_: Partial<MsgUpdateGroupPolicyDecisionPolicyResponse>): MsgUpdateGroupPolicyDecisionPolicyResponse;
fromAmino(_: MsgUpdateGroupPolicyDecisionPolicyResponseAmino): MsgUpdateGroupPolicyDecisionPolicyResponse;
toAmino(_: MsgUpdateGroupPolicyDecisionPolicyResponse): MsgUpdateGroupPolicyDecisionPolicyResponseAmino;
fromAminoMsg(object: MsgUpdateGroupPolicyDecisionPolicyResponseAminoMsg): MsgUpdateGroupPolicyDecisionPolicyResponse;
toAminoMsg(message: MsgUpdateGroupPolicyDecisionPolicyResponse): MsgUpdateGroupPolicyDecisionPolicyResponseAminoMsg;
fromProtoMsg(message: MsgUpdateGroupPolicyDecisionPolicyResponseProtoMsg): MsgUpdateGroupPolicyDecisionPolicyResponse;
toProto(message: MsgUpdateGroupPolicyDecisionPolicyResponse): Uint8Array;
toProtoMsg(message: MsgUpdateGroupPolicyDecisionPolicyResponse): MsgUpdateGroupPolicyDecisionPolicyResponseProtoMsg;
};
export declare const MsgUpdateGroupPolicyMetadata: {
typeUrl: string;
encode(message: MsgUpdateGroupPolicyMetadata, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupPolicyMetadata;
fromPartial(object: Partial<MsgUpdateGroupPolicyMetadata>): MsgUpdateGroupPolicyMetadata;
fromAmino(object: MsgUpdateGroupPolicyMetadataAmino): MsgUpdateGroupPolicyMetadata;
toAmino(message: MsgUpdateGroupPolicyMetadata): MsgUpdateGroupPolicyMetadataAmino;
fromAminoMsg(object: MsgUpdateGroupPolicyMetadataAminoMsg): MsgUpdateGroupPolicyMetadata;
toAminoMsg(message: MsgUpdateGroupPolicyMetadata): MsgUpdateGroupPolicyMetadataAminoMsg;
fromProtoMsg(message: MsgUpdateGroupPolicyMetadataProtoMsg): MsgUpdateGroupPolicyMetadata;
toProto(message: MsgUpdateGroupPolicyMetadata): Uint8Array;
toProtoMsg(message: MsgUpdateGroupPolicyMetadata): MsgUpdateGroupPolicyMetadataProtoMsg;
};
export declare const MsgUpdateGroupPolicyMetadataResponse: {
typeUrl: string;
encode(_: MsgUpdateGroupPolicyMetadataResponse, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgUpdateGroupPolicyMetadataResponse;
fromPartial(_: Partial<MsgUpdateGroupPolicyMetadataResponse>): MsgUpdateGroupPolicyMetadataResponse;
fromAmino(_: MsgUpdateGroupPolicyMetadataResponseAmino): MsgUpdateGroupPolicyMetadataResponse;
toAmino(_: MsgUpdateGroupPolicyMetadataResponse): MsgUpdateGroupPolicyMetadataResponseAmino;
fromAminoMsg(object: MsgUpdateGroupPolicyMetadataResponseAminoMsg): MsgUpdateGroupPolicyMetadataResponse;
toAminoMsg(message: MsgUpdateGroupPolicyMetadataResponse): MsgUpdateGroupPolicyMetadataResponseAminoMsg;
fromProtoMsg(message: MsgUpdateGroupPolicyMetadataResponseProtoMsg): MsgUpdateGroupPolicyMetadataResponse;
toProto(message: MsgUpdateGroupPolicyMetadataResponse): Uint8Array;
toProtoMsg(message: MsgUpdateGroupPolicyMetadataResponse): MsgUpdateGroupPolicyMetadataResponseProtoMsg;
};
export declare const MsgSubmitProposal: {
typeUrl: string;
encode(message: MsgSubmitProposal, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitProposal;
fromPartial(object: Partial<MsgSubmitProposal>): MsgSubmitProposal;
fromAmino(object: MsgSubmitProposalAmino): MsgSubmitProposal;
toAmino(message: MsgSubmitProposal): MsgSubmitProposalAmino;
fromAminoMsg(object: MsgSubmitProposalAminoMsg): MsgSubmitProposal;
toAminoMsg(message: MsgSubmitProposal): MsgSubmitProposalAminoMsg;
fromProtoMsg(message: MsgSubmitProposalProtoMsg): MsgSubmitProposal;
toProto(message: MsgSubmitProposal): Uint8Array;
toProtoMsg(message: MsgSubmitProposal): MsgSubmitProposalProtoMsg;
};
export declare const MsgSubmitProposalResponse: {
typeUrl: string;
encode(message: MsgSubmitProposalResponse, writer?: BinaryWriter): BinaryWriter;
decode(input: BinaryReader | Uint8Array, length?: number): MsgSubmitProposalResponse;
fromPartial(object: Partial<MsgSubmitProposalResponse>): MsgSubmitProposalResponse;
fromAmino(object: MsgSubmitProposalResponseAmino): MsgSubmitProposalResponse;
toAmino(message: MsgSubmitProposalResponse): MsgSubmitProposalResponseAmino;
fromAminoMsg(object: MsgSubmitProposalResponseAminoMsg): MsgSubmitProposalResponse;
toAminoMsg(message: MsgSubm