CastVoteWithReasonAndParamsBySigParams

Represents the parameters for the "castVoteWithReasonAndParamsBySig" function.

type CastVoteWithReasonAndParamsBySigParams = WithOverrides<{
params: AbiParameterToPrimitiveType<{
name: "params";
type: "bytes";
}>;
proposalId: AbiParameterToPrimitiveType<{
name: "proposalId";
type: "uint256";
}>;
r: AbiParameterToPrimitiveType<{ name: "r"; type: "bytes32" }>;
reason: AbiParameterToPrimitiveType<{
name: "reason";
type: "string";
}>;
s: AbiParameterToPrimitiveType<{ name: "s"; type: "bytes32" }>;
support: AbiParameterToPrimitiveType<{
name: "support";
type: "uint8";
}>;
v: AbiParameterToPrimitiveType<{ name: "v"; type: "uint8" }>;
}>;