Transferable coverage policy represented as an ERC-721 NFT with on-chain SVG metadata. Policies are tokenized, tradeable, and carry coverage terms on-chain. Includes SVG renderer for visual policy cards.
Category: contracts
Files: 10
Chains: Ethereum, Arbitrum, Base, Optimism
// SPDX-License-Identifier: MIT pragma solidity ^0.8.24; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /// @title Coverage NFT /// @notice Transferable coverage policies as ERC-721 NFTs with on-chain SVG. contract CoverageNft { address public immutable owner; uint256 public constant VERSION = 1; event Initialized(address indexed deployer); constructor() { owner = msg.sender; emit Initialized(msg.sender); } // ... full implementation in purchased package }