Refactor to compute GasPrices differently

This commit is contained in:
2023-04-22 15:57:20 -07:00
parent ef228254b3
commit f78674578b
3 changed files with 35 additions and 31 deletions

View File

@ -2,4 +2,5 @@ export interface GasPrices {
fast: number;
average: number;
slow: number;
}
values?: number[];
}