Skip to content

Instantly share code, notes, and snippets.

@szerintedmi
Last active May 3, 2019 14:05
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save szerintedmi/251b5d5739888ad595548625c8d5d424 to your computer and use it in GitHub Desktop.
Save szerintedmi/251b5d5739888ad595548625c8d5d424 to your computer and use it in GitHub Desktop.
barebone demonstration of web3 tx not resolving issue
const Web3 = require("web3");
const OPTIONS = {
defaultBlock: "latest",
transactionConfirmationBlocks: 1,
transactionBlockTimeout: 5
};
const web3 = new Web3(
new Web3.providers.WebsocketProvider("ws://localhost:8545"),
// Web3.providers.HtttpProvider("http://localhost:8545")
null,
OPTIONS
);
console.log(
web3.currentProvider.constructor.name,
"version:",
web3.version,
"web3.eth.transactionConfirmationBlocks:",
web3.eth.transactionConfirmationBlocks,
"web3.transactionConfirmationBlocks:",
web3.transactionConfirmationBlocks
);
sendTx()
.then(receipt => {
console.log("Got receipt");
})
.catch(error => console.log("Got error:", error));
async function sendTx() {
const accounts = await web3.eth.personal.getAccounts();
const tx = web3.eth
.sendTransaction({
to: accounts[1],
from: accounts[0],
value: web3.utils.toWei("0.1", "ether")
})
.on("transactionHash", txHash => {
// web3.currentProvider.send("evm_mine"); // execution of it seems to be blocked by sendTransaction in beta52
console.log("on transactionHash", txHash);
})
.on("receipt", receipt => {
console.log("on receipt");
})
.on("confirmation", (confirmationNumber, receipt) => {
console.log("on confirmation", confirmationNumber);
})
.on("error", error => {
console.log("on error", error);
});
const receipt = await tx;
return receipt;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment