TypeScript SDK
StoredTransaction
type StoredTransaction = { chainId: number; decoded?: { inputs?: {}; name: string; signature: string }; receipt?: { status: "success" | "failed"; to: string };};
type chainId = number;
type decoded = { inputs?: {}; name: string; signature: string };
type receipt = { status: "success" | "failed"; to: string };