github.com/TrueBlocks/trueblocks-core/src/apps/chifra@v0.0.0-20241022031540-b362680128f7/internal/explore/README.md (about) 1 ## chifra explore 2 3 `chifra explore` opens Etherscan (and other explorers -- including our own) to the block identifier, 4 transaction identifier, or address you specify. It's a handy (configurable) way to open an explorer 5 from the command line, nothing more. 6 7 ```[plaintext] 8 Purpose: 9 Open a local or remote explorer for one or more addresses, blocks, or transactions. 10 11 Usage: 12 chifra explore [flags] [terms...] 13 14 Arguments: 15 terms - one or more address, name, block, or transaction identifier 16 17 Flags: 18 -n, --no_open return the URL without opening it 19 -l, --local open the local TrueBlocks explorer 20 -g, --google search google excluding popular blockchain explorers 21 -h, --help display this help screen 22 ``` 23 24 Data models produced by this tool: 25 26 - [destination](/data-model/other/#destination) 27 28 ### Other Options 29 30 All tools accept the following additional flags, although in some cases, they have no meaning. 31 32 ```[plaintext] 33 -v, --version display the current version of the tool 34 --output string write the results to file 'fn' and return the filename 35 --append for --output command only append to instead of replace contents of file 36 --file string specify multiple sets of command line options in a file 37 ``` 38 39 **Note:** For the `--file string` option, you may place a series of valid command lines in a file using any 40 valid flags. In some cases, this may significantly improve performance. A semi-colon at the start 41 of any line makes it a comment. 42 43 **Note:** If you use `--output --append` option and at the same time the `--file` option, you may not switch 44 export formats in the command file. For example, a command file with two different commands, one with `--fmt csv` 45 and the other with `--fmt json` will produce both invalid CSV and invalid JSON. 46 47 *Copyright (c) 2024, TrueBlocks, LLC. All rights reserved. Generated with goMaker.*