diff --git a/explorer/package-lock.json b/explorer/package-lock.json index e2c2a87523..57bc5291a7 100644 --- a/explorer/package-lock.json +++ b/explorer/package-lock.json @@ -1269,9 +1269,9 @@ "integrity": "sha512-DetpxZw1fzPD5xUBrIAoplLChO2VB8DlL5Gg+I1IR9b2wPqYIca2WSUxL5g1vLeR4MsQq1NeWriXAVffV+U1Fw==" }, "@solana/web3.js": { - "version": "0.35.0", - "resolved": "https://registry.npmjs.org/@solana/web3.js/-/web3.js-0.35.0.tgz", - "integrity": "sha512-YRdXWVfE8h0Yz2EirfFeKRgLXErsaBn9/2VYyCpFG0KCPmOZ9NLq/zjdfLPu8VaJzMD7ryVOM5PCPOx7TQfxPA==", + "version": "0.36.0", + "resolved": "https://registry.npmjs.org/@solana/web3.js/-/web3.js-0.36.0.tgz", + "integrity": "sha512-3kkjwxSy4c7MPDY5OhZhk/AfQdk401kEHG0ZIekzFMhR/k/N1J/HYfqt9NPs5d+SNN9zkYpu9x3JcV5cMb3jdw==", "requires": { "@babel/runtime": "^7.3.1", "bn.js": "^5.0.0", @@ -1627,9 +1627,9 @@ "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==" }, "@types/express-serve-static-core": { - "version": "4.17.2", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.2.tgz", - "integrity": "sha512-El9yMpctM6tORDAiBwZVLMcxoTMcqqRO9dVyYcn7ycLWbvR8klrDn8CAOwRfZujZtWD7yS/mshTdz43jMOejbg==", + "version": "4.17.3", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.3.tgz", + "integrity": "sha512-sHEsvEzjqN+zLbqP+8OXTipc10yH1QLR+hnr5uw29gi9AhCAAAdri8ClNV7iMdrJrIzXIQtlkPvq8tJGhj3QJQ==", "requires": { "@types/node": "*", "@types/range-parser": "*" diff --git a/explorer/package.json b/explorer/package.json index 12c7937491..12c924377e 100644 --- a/explorer/package.json +++ b/explorer/package.json @@ -3,7 +3,7 @@ "version": "0.1.0", "private": true, "dependencies": { - "@solana/web3.js": "^0.35.0", + "@solana/web3.js": "^0.36.0", "@testing-library/jest-dom": "^4.2.4", "@testing-library/react": "^9.3.2", "@testing-library/user-event": "^7.1.2", diff --git a/explorer/src/providers/transactions.tsx b/explorer/src/providers/transactions.tsx index ada85231e9..7c6e17e3fd 100644 --- a/explorer/src/providers/transactions.tsx +++ b/explorer/src/providers/transactions.tsx @@ -143,7 +143,7 @@ export async function checkTransactionStatus( if (signatureStatus === null) { status = Status.Missing; - } else if ("Ok" in signatureStatus) { + } else if ("Ok" in signatureStatus.status) { status = Status.Success; } else { status = Status.Failure;