This commit is contained in:
EsioFreitas
2023-01-25 17:35:31 -03:00
34 changed files with 978 additions and 15317 deletions

4
src/model/NetworkEnum.ts Normal file
View File

@@ -0,0 +1,4 @@
export enum NetworkEnum {
ethereum = "Ethereum",
polygon = "Polygon",
}

10
src/model/ValidDeposit.ts Normal file
View File

@@ -0,0 +1,10 @@
import type { BigNumber } from "ethers";
export type ValidDeposit = {
depositID: BigNumber;
blockNumber: number;
remaining: number;
seller: string;
pixKey: string;
pixTarget?: string;
};