Security News
JSR Working Group Kicks Off with Ambitious Roadmap and Plans for Open Governance
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
@truffle/debugger
Advanced tools
Portable Solidity debugger library, for use with or without Truffle.
Features:
API Documentation for this library can be found at trufflesuite.github.io/truffle-debugger.
:warning: This documentation is currently a work in progress.
Please see the reference integration provided by the truffle debug
command.
To start a @truffle/debugger session, you'll need the following:
txHash
- A transaction hash (prefixed with 0x
), for the transaction to debugprovider
- A web3 provider instance (see web3.js)contracts
- An array of contract objects, with the following properties:
contractName
- The name of the contractsource
- The full Solidity source codesourcePath
- (optional) the path to the Solidity file on diskast
- The Solidity compiler's output AST (new style, not legacyAST
)binary
- 0x
-prefixed string with the binary used to create a contract instancesourceMap
- The Solidity compiler output source map for the creation binarydeployedBinary
- 0x
-prefixed string with the on-chain binary for a contract instancedeployedSourceMap
- The source map corresponding to the on-chain binary (from the Solidity compiler)Optionally (and recommended), you can also provide a files
argument:
files
- An array of sourcePaths representing file indexes (from solc
or @truffle/compile-solidity
).forTx()
and then .connect()
to it:import Debugger from "@truffle/debugger";
let bugger = await Debugger
.forTx(txHash, { contracts, files, provider });
let session = bugger.connect();
ready()
promise:await session.ready();
session
instance in order to step through the trace for the transaction:session.stepNext();
session.stepOver();
session.stepInto();
session.view()
interface, and the provided selectors:let { ast, data, evm, solidity, trace } = Debugger.selectors;
let variables = session.view(data.current.identifiers.native);
let sourceRange = session.view(solidity.current.sourceRange);
Session
class docsIt's our goal that this library should serve as a reliable and well-maintained tool for the Solidity ecosystem. Ultimately, we hope to support all language features and meet the varied requirements of a mature debugging library.
We believe that a good Solidity debugger belongs to the community. We welcome, with our most humble gratitude, any and all community efforts in bringing this debugger closer to that goal. If you find something broken or missing, please open an issue!
Some other ideas for how to get involved:
Thank you for all the continued support. :bow:
FAQs
Core functionality for debugging Solidity files built with Truffle
The npm package @truffle/debugger receives a total of 8,364 weekly downloads. As such, @truffle/debugger popularity was classified as popular.
We found that @truffle/debugger demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 9 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.
Security News
Research
An advanced npm supply chain attack is leveraging Ethereum smart contracts for decentralized, persistent malware control, evading traditional defenses.
Security News
Research
Attackers are impersonating Sindre Sorhus on npm with a fake 'chalk-node' package containing a malicious backdoor to compromise developers' projects.