Skip to content

ivnsch/tealdbg_launcher

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

tealdbg_launcher

Build

Start the TEAL debugger from Rust.

Cargo.toml:

tealdbg = { git = "https://github.com/ivanschuetz/tealdbg_launcher" }

Insert this where you want to debug smart contract calls:

tealdbg::launch_default(
    &[my_tx1, my_tx2],
    "approval.teal",
)

To override defaults:

tealdbg::launch(
    Config {
        mode: tealdbg::Mode::Sandbox {
            command: "<path>/sandbox",
        }
        ..Config::default()
    },
    &[my_tx1, my_tx2],
    "approval.teal",
)

About

Utility to start the TEAL debugger from Rust

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages