Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var AllCourseInstanceUtxosCmd = &cobra.Command{ Use: "all-course-instance-utxos", Short: "View all course instance UTxOs", Long: ``, Run: func(cmd *cobra.Command, args []string) { client.GetAllCourseInstanceUtxos() }, }
View Source
var AllInstanceValidatorUtxosCmd = &cobra.Command{ Use: "all-instance-validator-utxos", Short: "View all instance validator UTxOs", Long: ``, Run: func(cmd *cobra.Command, args []string) { client.GetAllInstanceValidatorUtxos() }, }
View Source
var AssignmentValidatorRefUtxoCmd = &cobra.Command{ Use: "assignment-validator-ref-utxo", Short: "View the assignment validator reference UTxOs for course with specified policy", Long: ``, Run: func(cmd *cobra.Command, args []string) { client.GetAssignmentValidatorRefUtxo(policy) }, }
View Source
var CourseInstanceUtxoCmd = &cobra.Command{ Use: "course-instance-utxo", Short: "View the course instance UTxO for course with specified policy", Long: ``, Run: func(cmd *cobra.Command, args []string) { client.GetCourseInstanceUtxo(policy) }, }
View Source
var DecodedCourseInstanceDatumCmd = &cobra.Command{ Use: "decoded-course-instance-datum", Short: "View course instance datum for course with specified policy", Long: ``, Run: func(cmd *cobra.Command, args []string) { client.GetDecodedCourseInstanceDatum(policy) }, }
View Source
var InstanceValidatorCmd = &cobra.Command{ Use: "instance-validator", Short: "View course instance details", Long: ``, Run: func(cmd *cobra.Command, args []string) { if len(args) == 0 { cmd.Help() return } fmt.Printf("Error: '%s' is not a valid subcommand for 'instance-validator'\n", args[0]) fmt.Println("Run './andamio-cli query network instance-validator --help' for available subcommands.") os.Exit(1) }, }
View Source
var LocalStatePolicyRefUtxoCmd = &cobra.Command{ Use: "local-state-policy-ref-utxo", Short: "View the local state policy reference UTxO for course with specified policy", Long: ``, Run: func(cmd *cobra.Command, args []string) { client.GetLocalStatePolicyRefUtxo(policy) }, }
View Source
var LocalStateValidatorRefUtxoCmd = &cobra.Command{ Use: "local-state-validator-ref-utxo", Short: "View the local state validator reference UTxO for course with specified policy", Long: ``, Run: func(cmd *cobra.Command, args []string) { client.GetLocalStateValidatorRefUtxo(policy) }, }
View Source
var ModuleTokenPolicyRefUtxoCmd = &cobra.Command{ Use: "module-token-policy-ref-utxo", Short: "View the module token minting reference UTxO for course with specified policy", Long: ``, Run: func(cmd *cobra.Command, args []string) { client.GetModuleTokenPolicyRefUtxo(policy) }, }
View Source
var ModuleValidatorRefUtxoCmd = &cobra.Command{ Use: "module-validator-ref-utxo", Short: "View the module validator reference UTxO for course with specified policy", Long: ``, Run: func(cmd *cobra.Command, args []string) { client.GetModuleValidatorRefUtxo(policy) }, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Source Files
¶
Click to show internal directories.
Click to hide internal directories.