TypeScript SDK
ExecuteWithSigParams
Represents the parameters for the "executeWithSig" function.
Represents the parameters for the "executeWithSig" function.
type ExecuteWithSigParams = WithOverrides<{  signature: AbiParameterToPrimitiveType<{    name: "signature";    type: "bytes";  }>;  wrappedCalls: AbiParameterToPrimitiveType<{    components: [      {        components: [          { name: "target"; type: "address" },          { name: "value"; type: "uint256" },          { name: "data"; type: "bytes" },        ];        name: "calls";        type: "tuple[]";      },      { name: "uid"; type: "bytes32" },    ];    name: "wrappedCalls";    type: "tuple";  }>;}>;