Francisco Giordano
Francisco Giordano
I recently put together a script to show how this can be done by inspecting the events of the ERC721 contract, originally posted in https://github.com/OpenZeppelin/openzeppelin-contracts/issues/2563#issuecomment-791979493. The code is for Ethers...
@Amxx Is there a subgraph already made for this purpose?
@garysyndromes You can run it in a [Hardhat script](https://hardhat.org/guides/scripts.html). Take a look at the guides in the Hardhat documentation if you need to learn more about it. If you need...
@ricardoveritas This is not the place for this question. Ask in the [OpenZeppelin Forum](https://forum.openzeppelin.com).
It works on any network with compatible JSON RPC, but you probably need an archive node. I don't know if this is available for Arbitrum. You should just try to...
Sorry I don't have the time to update it for ERC1155, I encourage others to adapt it and share it here. It shouldn't be too different.
We should break this up into multiple issues except those that should be implemented and reviewed together. We might just need the milestone to track these items instead of the...
Yes, the intent of the Counter abstraction is to represent a value that is known to never overflow. Incrementing by arbitrary uint256 removes that benefit entirely. We could consider incrementing...
Can you share more detail about in what contexts this function is useful?
So the purpose of this function is not to implement the double approve as a security measure, but as a workaround for tokens that have this requirement. And it was...