type TransactionState = | { status: "idle"; } | { status: "pending"; hash: Hex; } | { status: "success"; receipt: TransactionReceipt; } | { status: "error"; error: Error; };
Was this page helpful?