refactored network selection

This commit is contained in:
hueso
2025-10-11 02:17:07 -03:00
parent 7ec73e8c6f
commit a906fa136d
23 changed files with 174 additions and 336 deletions

View File

@@ -1,5 +1,5 @@
import { NetworkEnum } from "./NetworkEnum";
import type { Address } from "viem";
import type { NetworkConfig } from "@/model/NetworkEnum";
export type ValidDeposit = {
token: Address;
@@ -7,6 +7,6 @@ export type ValidDeposit = {
remaining: number;
seller: Address;
participantID: string;
network: NetworkEnum;
network: NetworkConfig;
open?: boolean;
};