Skip to content

Instantly share code, notes, and snippets.

@dsemenovsky
Created June 1, 2018 23:58
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save dsemenovsky/5e2db695885e9cd58af978034fe66260 to your computer and use it in GitHub Desktop.
Save dsemenovsky/5e2db695885e9cd58af978034fe66260 to your computer and use it in GitHub Desktop.
Get Ethereum transaction confirmations count
async function getConfirmations(txHash) {
try {
// Instantiate web3 with HttpProvider
const web3 = new Web3('https://rinkeby.infura.io/')
// Get transaction details
const trx = await web3.eth.getTransaction(txHash)
// Get current block number
const currentBlock = await web3.eth.getBlockNumber()
// When transaction is unconfirmed, its block number is null.
// In this case we return 0 as number of confirmations
return trx.blockNumber === null ? 0 : currentBlock - trx.blockNumber
}
catch (error) {
console.log(error)
}
}
@DevlinDefi
Copy link

this is work foe me thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment