web3-eth
Version:
Web3 module to interact with the Ethereum blockchain and smart contracts.
42 lines • 2.57 kB
JavaScript
var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) {
function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }
return new (P || (P = Promise))(function (resolve, reject) {
function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }
function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } }
function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }
step((generator = generator.apply(thisArg, _arguments || [])).next());
});
};
import { rejectIfTimeout } from 'web3-utils';
import { TransactionSendTimeoutError } from 'web3-errors';
// eslint-disable-next-line import/no-cycle
import { rejectIfBlockTimeout } from './reject_if_block_timeout.js';
/**
* An internal function to send a transaction or throws if sending did not finish during the timeout during the blocks-timeout.
* @param web3Context - the context to read the configurations from
* @param sendTransactionFunc - the function that will send the transaction (could be sendTransaction or sendRawTransaction)
* @param transactionHash - to be used inside the exception message if there will be any exceptions.
* @returns the Promise<string> returned by the `sendTransactionFunc`.
*/
export function trySendTransaction(web3Context, sendTransactionFunc, transactionHash) {
return __awaiter(this, void 0, void 0, function* () {
const [timeoutId, rejectOnTimeout] = rejectIfTimeout(web3Context.transactionSendTimeout, new TransactionSendTimeoutError({
numberOfSeconds: web3Context.transactionSendTimeout / 1000,
transactionHash,
}));
const [rejectOnBlockTimeout, blockTimeoutResourceCleaner] = yield rejectIfBlockTimeout(web3Context, transactionHash);
try {
// If an error happened here, do not catch it, just clear the resources before raising it to the caller function.
return yield Promise.race([
sendTransactionFunc(), // this is the function that will send the transaction
rejectOnTimeout, // this will throw an error on Transaction Send Timeout
rejectOnBlockTimeout, // this will throw an error on Transaction Block Timeout
]);
}
finally {
clearTimeout(timeoutId);
blockTimeoutResourceCleaner.clean();
}
});
}
//# sourceMappingURL=try_send_transaction.js.map