Any existing go tooling?

Hi, I know there is no official go tooling, however are there any known community projects aiming to provide go tooling/sdk for interacting with fuel from go?

Not that I’m aware of personally. However, it should be fairly straightforward to call the existing tooling from Go if you need to interact with forc programmatically using os/exec.

As an update to this thread, we went with the approach of writing a client in rust, exposing functions over ffi, and calling them via cgo. Not perfect, but works pretty well actually.