# Erc20Response

## Properties

| Name                    | Type           | Description | Notes       |
| ----------------------- | -------------- | ----------- | ----------- |
| **type**                | **float**      |             | \[optional] |
| **chain\_id**           | **float**      |             | \[optional] |
| **data**                | **str**        |             | \[optional] |
| **gas**                 | **str**        |             | \[optional] |
| **gas\_price**          | **str**        |             | \[optional] |
| **gas\_tip\_cap**       | **str**        |             | \[optional] |
| **gas\_fee\_cap**       | **str**        |             | \[optional] |
| **value**               | **str**        |             | \[optional] |
| **nonce**               | **float**      |             | \[optional] |
| **var\_from**           | **str**        |             | \[optional] |
| **to**                  | **str**        |             | \[optional] |
| **blob\_gas**           | **str**        |             | \[optional] |
| **blob\_gas\_fee\_cap** | **str**        |             | \[optional] |
| **blob\_hashes**        | **List\[str]** |             | \[optional] |
| **v**                   | **str**        |             | \[optional] |
| **r**                   | **str**        |             | \[optional] |
| **s**                   | **str**        |             | \[optional] |
| **name**                | **str**        |             | \[optional] |
| **symbol**              | **str**        |             | \[optional] |
| **decimals**            | **str**        |             | \[optional] |
| **total\_supply**       | **str**        |             | \[optional] |
| **contract\_address**   | **str**        |             | \[optional] |
| **balance\_of**         | **str**        |             | \[optional] |
| **allowance**           | **str**        |             | \[optional] |

## Example

```python
from moonsdk.models.erc20_response import Erc20Response

# TODO update the JSON string below
json = "{}"
# create an instance of Erc20Response from a JSON string
erc20_response_instance = Erc20Response.from_json(json)
# print the JSON string representation of the object
print Erc20Response.to_json()

# convert the object into a dict
erc20_response_dict = erc20_response_instance.to_dict()
# create an instance of Erc20Response from a dict
erc20_response_form_dict = erc20_response.from_dict(erc20_response_dict)
```

[\[Back to Model list\]](https://docs.usemoon.ai/sdks/python/..#documentation-for-models) [\[Back to API list\]](https://docs.usemoon.ai/sdks/python/..#documentation-for-api-endpoints) [\[Back to README\]](https://docs.usemoon.ai/sdks/python)
