# ETH, Polygon, and EVM

{% hint style="info" %}
Have a multi-contract NFT sale? [Check out these docs](/primary-mint-smart-contracts/eth-polygon-and-evm/multi-contract.md)
{% endhint %}

This is for all EVM based blockchains (Ethereum, Polygon, Avalanche, etc)

We support ERC-721, ERC-721A, ERC-721R and ERC-1155 smart contracts!

Note we **require** all smart contracts to have a mint function with an address parameter! This is so that if a user wants to mint to their own wallet, we can do this in one transaction (save on gas fees and a faster mint)!

We also **require** that there is no limit of how many mints we can mint. You can do this by making sure the address that is passed in is checked for limits and not the msg.sender

For example:&#x20;

```
function mint(uint256 _amount, address _recipient) external payable {
    require(totalNFTs(_recipient) <= MAX_WALLET_LIMIT,"Wallet has too many NFTs");
    ...
}
```


---

# 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.usewinter.com/primary-mint-smart-contracts/eth-polygon-and-evm.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.
