Initialize a new debugger session, returning its ID
.
A new VM instance is spawned for each session.
The session is run in a separate database transaction,
on top of the most recent node state.
End a debugger session.
Returns a Boolean!
indicating whether the session was successfully ended.
args:
id
: ID!
The session ID.
Reset the VM instance to the initial state.
Returns a Boolean!
indicating whether the VM instance was successfully reset.
args:
id
: ID!
The session ID.
Execute a single fuel-asm
instruction.
Returns a Boolean!
indicating whether the instruction was successfully executed.
args:
id
: ID!
The session ID.
op
: String!
The fuel-asm
instruction to execute.
Set single-stepping mode for the VM instance.
Returns a Boolean!
indicating whether the mutation successfully executed.
args:
id
: ID!
The session ID.
enable
: boolean
Whether to enable single-stepping mode.
Set a breakpoint for a VM instance.
Returns a Boolean!
indicating whether the breakpoint was successfully set.
args:
id
: ID!
The session ID.
The breakpoint to set.
Run a single transaction in given session until it hits a breakpoint or completes.
Returns a RunResult!
.
args:
id
: ID!
The session ID.
txJson
: String!
The transaction JSON string.
Resume execution of the VM instance after a breakpoint.
Runs until the next breakpoint or until the transaction completes.
Returns a RunResult!
.
args:
id
: ID!
The session ID.
Spin up a new temporary node from the current state and emulate a given transaction.
Returns a
[Receipt!]!
for the emulated transaction.
You can optionally use UTXO validation.
args:
The transaction hex string.
utxoValidation
: Boolean
Whether or not to use UTXO validation.
Produce blocks that can be used for testing that requires block advancement.
Returns a
U32!
.
args:
startTimestamp
:
Tai64Timestamp!
The start time of the produced block.
The number of blocks to produce.
Submit a transaction to the transaction pool.
Returns a
Transaction!
.
args:
The transaction hex string.