TypeScript SDK
ExecuteParams
Represents the parameters for the "execute" function.
Represents the parameters for the "execute" function.
type ExecuteParams = WithOverrides<{  calldatas: AbiParameterToPrimitiveType<{    name: "calldatas";    type: "bytes[]";  }>;  descriptionHash: AbiParameterToPrimitiveType<{    name: "descriptionHash";    type: "bytes32";  }>;  targets: AbiParameterToPrimitiveType<{    name: "targets";    type: "address[]";  }>;  values: AbiParameterToPrimitiveType<{    name: "values";    type: "uint256[]";  }>;}>;