Michael Cohen
Michael Cohen
Hello, Our mint function for our Creatures smart contracts implement a similarly named method [`mintTo`](https://github.com/ProjectOpenSea/opensea-creatures/blob/master/contracts/ERC721Tradable.sol#L43) for the Creature contract and [`mint`](https://github.com/ProjectOpenSea/opensea-creatures/blob/master/contracts/CreatureFactory.sol#L77) for the factory itself. The `mint.js` script calls those...
Hey! For the first question, I would implement some `massMint()` that calls `mint()` however much times needed: ```solidity function mint(uint amount, address to) public { for (uint i = 0;...
hey! in addition to what @mishamoix mentioned above, we also recently launched our [MCP Connector](https://docs.anthropic.com/en/docs/agents-and-tools/mcp-connector) feature, which allows you to connect to remote MCP servers and have their tools execute...