github.com/gnolang/gno@v0.0.0-20240520182011-228e9d0192ce/docs/reference/gnoclient/gnoclient.md (about)

     1  ---
     2  id: gnoclient
     3  ---
     4  
     5  # Gnoclient
     6  
     7  [Gnoclient](https://github.com/gnolang/gno/tree/master/gno.land/pkg/gnoclient) 
     8  allows you to easily access Gno blockchains from your Go code, through exposing 
     9  APIs for common functionality.
    10  
    11  ## Key Features
    12                  
    13  - Connect to a Gno chain via RPC
    14  - Use local keystore to sign & broadcast transactions containing any type of 
    15  Gno message
    16  - Sign & broadcast transactions with batch messages
    17  - Use [ABCI queries](../../gno-tooling/cli/gnokey.md#make-an-abci-query) in
    18  your Go code
    19  
    20  ## Installation
    21  
    22  To add Gnoclient to your Go project, run the following command:
    23  ```bash
    24  go get github.com/gnolang/gno/gno.land/pkg/gnoclient
    25  ```