withSignature method

Envelope withSignature({
  1. required int v,
  2. required Uint8List r,
  3. required Uint8List s,
})

Implementation

Envelope withSignature({required int v, required Uint8List r, required Uint8List s}) {
  return Envelope(
    kind: kind,
    to: to,
    value: value,
    data: data,
    gasLimit: gasLimit,
    nonce: nonce,
    chainId: chainId,
    gasPrice: gasPrice,
    maxFeePerGas: maxFeePerGas,
    maxPriorityFeePerGas: maxPriorityFeePerGas,
    maxFeePerBlobGas: maxFeePerBlobGas,
    blobVersionedHashes: blobVersionedHashes,
    blobs: blobs,
    accessList: accessList,
    authorizationList: authorizationList,
    v: v,
    r: r,
    s: s,
  );
}