P2Pix-Front-End/src/model/WalletTransaction.ts
2025-06-29 18:19:30 -03:00

15 lines
319 B
TypeScript

import type { LockStatus } from "@/model/LockStatus"
import type { Address } from "viem"
export type WalletTransaction = {
token?: Address;
blockNumber: number;
amount: number;
seller: string;
buyer: string;
event: string;
lockStatus?: LockStatus;
transactionHash: string;
transactionID?: string;
};