Stronger typings💪

This commit is contained in:
hueso
2025-06-29 18:19:30 -03:00
parent 2370051243
commit dd351acb2e
24 changed files with 2424 additions and 12561 deletions

View File

@@ -1,10 +1,11 @@
import { NetworkEnum } from "./NetworkEnum";
import type { Address } from "viem";
export type ValidDeposit = {
token: string;
token: Address;
blockNumber: number;
remaining: number;
seller: string;
seller: Address;
participantID: string;
network: NetworkEnum;
open?: boolean;