()
| 62 | } |
| 63 | |
| 64 | export async function getTransactionFees() { |
| 65 | const feeData = await ethers.provider.getFeeData() |
| 66 | |
| 67 | return { |
| 68 | maxFeePerGas: feeData.maxFeePerGas, |
| 69 | maxPriorityFeePerGas: feeData.maxPriorityFeePerGas, |
| 70 | type: 2, |
| 71 | } |
| 72 | } |
| 73 | |
| 74 | interface Facet { |
| 75 | facetAddress: string |
no outgoing calls
no test coverage detected