TypeScript SDK
ProposeParams
Represents the parameters for the "propose" function.
Represents the parameters for the "propose" function.
type ProposeParams = WithOverrides<{  calldatas: AbiParameterToPrimitiveType<{    name: "calldatas";    type: "bytes[]";  }>;  description: AbiParameterToPrimitiveType<{    name: "description";    type: "string";  }>;  targets: AbiParameterToPrimitiveType<{    name: "targets";    type: "address[]";  }>;  values: AbiParameterToPrimitiveType<{    name: "values";    type: "uint256[]";  }>;}>;