Socket
Socket
Sign inDemoInstall

hardhat-tracer

Package Overview
Dependencies
277
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.1.0-rc.7 to 1.1.0-rc.8

dist/src/opcodes/mload.d.ts

8

dist/src/print/struct-log.js

@@ -27,2 +27,4 @@ "use strict";

const sha3_1 = require("../opcodes/sha3");
const mload_1 = require("../opcodes/mload");
const mstore_1 = require("../opcodes/mstore");
/**

@@ -123,2 +125,8 @@ * Prints the given structLog to the console.

break;
case "MLOAD":
await (0, mload_1.printMload)(structLog, index, structLogs, dependencies);
break;
case "MSTORE":
await (0, mstore_1.printMstore)(structLog, dependencies);
break;
default:

@@ -125,0 +133,0 @@ console.log(constants_1.DEPTH_INDENTATION.repeat(structLog.depth) + structLog.op);

18

package.json
{
"name": "hardhat-tracer",
"version": "1.1.0-rc.7",
"version": "1.1.0-rc.8",
"description": "Hardhat Tracer plugin",

@@ -35,10 +35,19 @@ "repository": "github:zemse/hardhat-tracer",

"devDependencies": {
"@types/chai": "^4.3.0",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.3",
"@nomicfoundation/hardhat-network-helpers": "^1.0.4",
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.1.1",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"@types/chai": "^4.3.3",
"@types/fs-extra": "^5.0.4",
"@types/mocha": "^5.2.6",
"@types/node": "^8.10.38",
"@types/mocha": "^9.1.1",
"@types/node": "^18.7.11",
"chai": "^4.2.0",
"hardhat": "^2.9.2",
"hardhat-gas-reporter": "^1.0.8",
"mocha": "^7.1.2",
"prettier": "2.0.5",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.7.0",

@@ -48,2 +57,3 @@ "tslint": "^5.16.0",

"tslint-plugin-prettier": "^2.0.1",
"typechain": "^8.1.0",
"typescript": "^4.6.3"

@@ -50,0 +60,0 @@ },

@@ -25,2 +25,4 @@ import { DEPTH_INDENTATION } from "../constants";

import { printSha3 } from "../opcodes/sha3";
import { printMload } from "../opcodes/mload";
import { printMstore } from "../opcodes/mstore";

@@ -159,2 +161,8 @@ /**

break;
case "MLOAD":
await printMload(structLog, index, structLogs, dependencies);
break;
case "MSTORE":
await printMstore(structLog, dependencies);
break;
default:

@@ -161,0 +169,0 @@ console.log(

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc