5 lines
164 B
TypeScript
5 lines
164 B
TypeScript
import { Web3Eth } from "web3";
|
|
|
|
export type TxReceipt = Awaited<ReturnType<Web3Eth["getTransactionReceipt"]>>;
|
|
export type RelayerLosses = Record<string, bigint>;
|