On-Chain SVG NFT Protocol · Monad Mainnet · LayerZero Cross-Chain Bridge
Quantum Engine is a fully on-chain SVG NFT collection deployed on Monad Mainnet. Every NFT is a living quantum engine rendered 100% on-chain — no IPFS, no servers. Each token has a quantum state that changes its color palette, and can be bridged cross-chain via LayerZero with its state intact.
| Network | Address |
|---|---|
| Monad Mainnet | 0x8b39AF593EcC183cdd30E660e5aE2141499E4C4B |
Each NFT has one of 8 quantum states, each with a distinct color palette:
| State | Name | Color |
|---|---|---|
| 0 | SUPERPOSITION | White / Lavender |
| 1 | ENTANGLED | Purple |
| 2 | COLLAPSE | Indigo / Blue |
| 3 | DECOHERENCE | Emerald Green |
| 4 | TUNNELING | Orange |
| 5 | INTERFERENCE | Pink / Magenta |
| 6 | SPIN_UP | Cyan |
| 7 | VOID | Gold |
| Action | Cost |
|---|---|
| Mint | 0.005 MON |
| Mint Batch (up to 10) | 0.005 MON × n |
| Shift State | 0.001 MON |
| Random Collapse | 0.001 MON |
| Bridge Cross-Chain | 0.002 MON + LayerZero gas |
Visit the frontend interface and connect your MetaMask wallet on Monad Mainnet.
Or use cast directly:
cast send 0x8b39AF593EcC183cdd30E660e5aE2141499E4C4B \
"mint()" \
--value 0.005ether \
--rpc-url https://rpc.monad.xyz
cast send 0x8b39AF593EcC183cdd30E660e5aE2141499E4C4B \
"shiftState(uint256,uint8)" \
TOKEN_ID NEW_STATE \
--value 0.001ether \
--rpc-url https://rpc.monad.xyz
cast send 0x8b39AF593EcC183cdd30E660e5aE2141499E4C4B \
"bridgeNFT(uint32,uint256,address,bytes)" \
30109 TOKEN_ID YOUR_ADDRESS \
"0x00030100110100000000000000000000000000030d40" \
--value 0.05ether \
--rpc-url https://rpc.monad.xyz
| Chain | LayerZero EID |
|---|---|
| Polygon | 30109 |
| Ethereum | 30101 |
| Base | 30184 |
| Arbitrum | 30110 |
| BNB Chain | 30102 |
^0.8.22QuantumEngine.sol ← Main contract (ERC-721 + ONFT721)
QERenderer.sol ← On-chain SVG rendering library
QEOracle.sol ← Price stamp oracle library
The frontend is a single HTML file with no build process required.
# Clone and install Foundry
git clone https://github.com/YOUR-USERNAME/quantum-engine
cd quantum-engine
# Install dependencies
forge install OpenZeppelin/openzeppelin-contracts@v5.0.2 --no-git
forge install LayerZero-Labs/LayerZero-v2 --no-git
forge install LayerZero-Labs/devtools --no-git
# Deploy
export PRIVATE_KEY=0xYOUR_KEY
export MONAD_RPC=https://rpc.monad.xyz
forge script script/Deploy.s.sol \
--rpc-url $MONAD_RPC \
--private-key $PRIVATE_KEY \
--broadcast \
--chain-id 143
MIT License — see LICENSE for details.