Skip to content

Commit

Permalink
Update txn check, polygonscan layout changed
Browse files Browse the repository at this point in the history
  • Loading branch information
codeSTACKr committed Apr 8, 2022
1 parent 32ebddf commit e57d27d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "10k-collection-video",
"version": "2.0.0",
"version": "2.0.1",
"description": "How To Create An ENTIRE NFT Collection (10,000+) & MINT",
"main": "index.js",
"bin": "index.js",
Expand Down
2 changes: 1 addition & 1 deletion utils/functions/txnCheck.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ async function txnCheck(url) {
await page.waitForSelector("#ContentPlaceHolder1_maintable");

try {
let cardText = await page.$eval("#ContentPlaceHolder1_maintable .row:nth-child(4) div:nth-child(2)", (text) => text.textContent);
let cardText = await page.$eval("#ContentPlaceHolder1_maintable .row:nth-child(3) div:nth-child(2)", (text) => text.textContent);
await browser.close();
resolve(cardText);
} catch (error) {
Expand Down

0 comments on commit e57d27d

Please sign in to comment.