Variable CommunityPoolSpendProposal
Type declaration
-
decode:function
- decode(input: Uint8Array | Reader, length?: number): CommunityPoolSpendProposal
-
Parameters
-
input: Uint8Array | Reader
-
Optional
length: number
-
encode:function
-
fromJSON:function
-
fromPartial:function
- fromPartial<I>(object: I): CommunityPoolSpendProposal
-
Type Parameters
-
I extends {
amount?: ({ denom?: string | undefined; amount?: string | undefined; })[];
description?: string;
recipient?: string;
title?: string;
} & {
amount?: {
amount?: string;
denom?: string;
}[] & ({
amount?: string;
denom?: string;
} & ({ denom?: string | undefined; amount?: string | undefined; }) & { [ K in string | number | symbol]: never })[] & { [ K in string | symbol]: never };
description?: string;
recipient?: string;
title?: string;
} & { [ K in string | number | symbol]: never }
-
toJSON:function