Documentation ¶ Index ¶ Variables type FlagsFlowser type FlagsWallet Constants ¶ This section is empty. Variables ¶ View Source var DevWallet = &command.Command{ Cmd: &cobra.Command{ Use: "dev-wallet", Short: "Run a development wallet", Example: "flow dev-wallet", Args: cobra.ExactArgs(0), GroupID: "tools", }, Flags: &walletFlags, RunS: wallet, } View Source var Flowser = &command.Command{ Cmd: &cobra.Command{ Use: "flowser", Short: "Run Flowser project explorer", Example: "flow flowser", Args: cobra.ExactArgs(0), GroupID: "tools", }, Flags: &flowserFlags, Run: runFlowser, } Functions ¶ This section is empty. Types ¶ type FlagsFlowser ¶ added in v0.42.0 type FlagsFlowser struct{} type FlagsWallet ¶ type FlagsWallet struct { Port uint `default:"8701" flag:"port" info:"Dev wallet port to listen on"` Host string `default:"http://localhost:8888" flag:"emulator-host" info:"Host for access node connection"` } Source Files ¶ View all Source files flowser.go wallet.go Click to show internal directories. Click to hide internal directories.