Skip to main content

RedeemerDetailsWithArgs

export interface RedeemerDetailsWithArgs {
  args: UplcDataValue[]
  description: string
  script: UplcProgramV2 | UplcProgramV1
  summary: string
}

Properties

args

the arguments to the script, included if txInfo is provided

redeemerDetailsWithArgs.args satisfies UplcDataValue[]

description

a more complete specifier of the redeemer

redeemerDetailsWithArgs.description satisfies string

script

the UplcProgram validating the redeemer

redeemerDetailsWithArgs.script satisfies UplcProgramV2 | UplcProgramV1

summary

a short label indicating the part of the txn unlocked by the redeemer

redeemerDetailsWithArgs.summary satisfies string