cairomate
cairomate copied to clipboard
Structured, dependable legos for Starknet development.
Implement a token vault standard based off of [EIP 4626](https://eips.ethereum.org/EIPS/eip-4626).
Add events to: `/contracts/tokens/ERC1155.cairo`
### Implement EIP-2612 Implement the EIP-2612 as per the [specifications](https://eips.ethereum.org/EIPS/eip-2612). ### Starter ```cairo ############################################# ## EIP 2612 STORE ## ############################################# ## TODO: EIP-2612 # bytes32 public constant PERMIT_TYPEHASH = #...
Implement core functionality for a flexible, permission-less AMM. Possibly something similar to [Helios](https://github.com/z0r0z/Helios).
Extensive tests for ERC721 contracts - [x] `ERC721.cairo` - [x] `N-ERC721.cairo`
We assume readers will know the difference of how accounts are handled between Ethereum and Starknet (non-smart contracts vs smart-contracts). Since we cannot rely on examining the bytecode of the...