# FAQS

## Why does the `SponsorGas` function fail in Go language to process my request despite the input seeming correct?

* A common reason for the failure of the `SponsorGas` function is an incorrect request format. If the input data is not structured as the API expects, the function may return errors or fail silently. Specifically, using `[]byte` or `[]uint8` for the `Data` field instead of the expected `map[string]uint8` can cause issues.

## What should the correct structure of `KanaSponsorGasInput` look like in Go language?

```go
type KanaSponsorGasInput struct {
    Data              map[string]uint8 `json:"data"`
    AdditionalSigners []string         `json:"additionalSigners,omitempty"`
}

```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.kanalabs.io/paymaster-service/kana-paymaster-for-aptos-and-supra/faqs.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
