github.com/mavryk-network/mvgo@v1.19.9/examples/rpc/README.md (about)

     1  ## Pull data from the Tezos RPC
     2  
     3  Use MvGo to flexibly fetch all kinds of data from the Tezos RPC. A few basic and advanced examples are shown here.
     4  
     5  ### Usage
     6  
     7  ```sh
     8  Usage: rpc [args] <cmd> [sub-args]
     9  
    10  Commands
    11    block <hash>|head        show block info
    12    op <hash>:<list>:<pos>   show operation info
    13    contract <hash>          show contract info
    14    search <ops> <lvl>       output blocks containing operations in list
    15    bootstrap                wait until node is bootstrapped
    16    monitor                  wait and show new heads as they are baked
    17  
    18  Global arguments
    19    -d  Enable debug mode
    20    -node string
    21        Tezos node url (default "https://rpc.tzpro.io")
    22    -v  Be verbose
    23  ```
    24