Forward Request Message that's used for gasless transaction
type ForwardRequestMessage = { chainid?: string; data: BytesLike; from: string; gas: string; nonce: string; to: string; value: string;};
type chainid = string;
type data = BytesLike;
type from = string;
type gas = string;
type nonce = string;
type to = string;
type value = string;