Initial commit

This commit is contained in:
GooeyTuxedo
2023-04-17 18:49:20 -07:00
commit a87549dfcd
17 changed files with 1079 additions and 0 deletions

5
types/gasAlert.d.ts vendored Normal file
View File

@ -0,0 +1,5 @@
export interface GasAlert {
threshold: number;
channelId: string;
userId: string;
}

5
types/gasPrices.d.ts vendored Normal file
View File

@ -0,0 +1,5 @@
export interface GasPrices {
fast: number;
average: number;
slow: number;
}