Fix issues with locking and solicitation.

This commit is contained in:
Filipe Soccol
2025-06-27 15:59:34 -03:00
parent 73ba77ca4f
commit cf61f5ecfd
16 changed files with 202 additions and 189 deletions

View File

@@ -1,6 +1,8 @@
import type { Pix } from "./Pix";
import { Address } from "viem";
export type UnreleasedLock = {
lockID: string;
pix: Pix;
sellerAddress?: Address;
tokenAddress: Address;
amount: number;
};