transaction-retry-tool
Version:
Tool to retry transactions on a blockchain
17 lines • 473 B
TypeScript
import 'hardhat/types/config';
import 'hardhat/types/runtime';
import { TransactionRetry } from './TransactionRetry';
declare module 'hardhat/types/config' {
interface ProjectPathsUserConfig {
retry?: string;
}
interface ProjectPathsConfig {
retry: string;
}
}
declare module 'hardhat/types/runtime' {
interface HardhatRuntimeEnvironment {
transactionRetry: TransactionRetry;
}
}
//# sourceMappingURL=type-extensions.d.ts.map