wormhole/ethereum/ts-scripts/relayer/helpers/utils.ts

6 lines
160 B
TypeScript

import { ContractReceipt, ContractTransaction } from "ethers";
export function wait(tx: ContractTransaction): Promise<ContractReceipt> {
return tx.wait();
}