aave-protocol-v2/gas-tracker.ts
2021-01-11 21:15:47 -05:00

8 lines
230 B
TypeScript

// Should be a ts file that has a global var var gas = 0;
import { BigNumber } from 'ethers';
export var totalGas:BigNumber = BigNumber.from(0);
export function addGas(amount: BigNumber) {
totalGas = totalGas.add(amount);
}