Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var AddRemoteCmd = &cli.Command{ Name: "add-remote", Usage: "Add remote wallet", ArgsUsage: "<address> <remote_peer>", Flags: []cli.Flag{ &cli.StringFlag{ Name: "lotus-api", Category: "Lotus", Usage: "Lotus RPC API endpoint", Value: "https://api.node.glif.io/rpc/v1", }, &cli.StringFlag{ Name: "lotus-token", Category: "Lotus", Usage: "Lotus RPC API token", Value: "", }, }, Action: func(c *cli.Context) error { db := database.MustOpenFromCLI(c) err2 := wallet.AddRemoteHandler(db, wallet.AddRemoteRequest{ Address: c.Args().Get(0), RemotePeer: c.Args().Get(1), LotusAPI: c.String("lotus-api"), LotusToken: c.String("lotus-token"), }) if err2 != nil { return err2.CliError() } return nil }, }
View Source
var ImportCmd = &cli.Command{ Name: "import", Usage: "Import a wallet from exported private key", ArgsUsage: "PRIVATE_KEY", Flags: []cli.Flag{ &cli.StringFlag{ Name: "lotus-api", Category: "Lotus", Usage: "Lotus RPC API endpoint", Value: "https://api.node.glif.io/rpc/v1", }, &cli.StringFlag{ Name: "lotus-token", Category: "Lotus", Usage: "Lotus RPC API token", Value: "", }, }, Action: func(c *cli.Context) error { db := database.MustOpenFromCLI(c) err2 := wallet.ImportHandler(db, wallet.ImportRequest{ PrivateKey: c.Args().Get(0), LotusAPI: c.String("lotus-api"), LotusToken: c.String("lotus-token"), }) if err2 != nil { return err2.CliError() } return nil }, }
View Source
var ListCmd = &cli.Command{ Name: "list", Usage: "List all imported wallets", Action: func(c *cli.Context) error { db := database.MustOpenFromCLI(c) wallets, err2 := wallet.ListHandler(db) if err2 != nil { return err2.CliError() } cliutil.PrintToConsole(wallets, c.Bool("json"), nil) return nil }, }
View Source
var RemoveCmd = &cli.Command{ Name: "remove", Usage: "Remove a wallet", ArgsUsage: "<address>", Action: func(c *cli.Context) error { db := database.MustOpenFromCLI(c) err := wallet.RemoveHandler(db, c.Args().Get(0)) if err != nil { return err.CliError() } return nil }, }
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.