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,8 +1,8 @@
import { Address } from "viem";
export type UnreleasedLock = {
lockID: string;
sellerAddress?: Address;
lockID: bigint;
sellerAddress: Address;
tokenAddress: Address;
amount: number;
};