Algorand TypeScript
    Preparing search index...

    Type Alias CompileLogicSigOptions

    Options for compiling a logic signature

    type CompileLogicSigOptions = {
        templateVars?: Record<string, DeliberateAny>;
        templateVarsPrefix?: string;
    }
    Index

    Properties

    templateVars?: Record<string, DeliberateAny>

    Template variables to substitute into the contract, key should be without the prefix, must evaluate to a compile time constant and match the type of the template var declaration

    templateVarsPrefix?: string

    Prefix to add to provided template vars, defaults to the prefix supplied on command line (which defaults to TMPL_)