type StoredTransaction = { chainId: number; receipt?: { status: "success" | "failed"; to: string }; transactionHash: Hex;};
type chainId = number;
type receipt = { status: "success" | "failed"; to: string };
type transactionHash = Hex;