Skip to content

Create Publication

We are looking for publications that demonstrate building dApps or smart contracts!
See the full list of Gitcoin bounties that are eligible for rewards.

types debugging.PersistSourceMapsParams

@algorandfoundation/algokit-utils / types/debugging / PersistSourceMapsParams

Interface: PersistSourceMapsParams

types/debugging.PersistSourceMapsParams

Parameters to a call that persists source maps

Table of contents

Properties

Properties

client

client: default

An Algodv2 client to perform the compilation.

Defined in

src/types/debugging.ts:148


projectRoot

projectRoot: string

The root directory of the project.

Defined in

src/types/debugging.ts:146


sources

sources: PersistSourceMapInput[]

An array of PersistSourceMapInput objects. Each object can either contain rawTeal, in which case the function will execute a compile to obtain byte code, or it can accept an object of type CompiledTeal provided by algokit, which is used for source codes that have already been compiled and contain the traces.

Defined in

src/types/debugging.ts:144


withSources

Optional withSources: boolean

A boolean indicating whether to include the source files in the output.

Defined in

src/types/debugging.ts:150