@@ -108,6 +108,7 @@ After deploying, interact with your contract via the [Aptos Explorer](https://ex
108108| [ Liquid NFTs] ( snippets/liquid-nfts/ ) | ` snippets/liquid-nfts/ ` | NFT liquidity pools using Coin, Legacy Token, and Fungible Asset standards |
109109| [ Lootbox / Mystery Box] ( snippets/lootbox/ ) | ` snippets/lootbox/ ` | On-chain mystery boxes using Aptos randomness, supporting coins, FAs, and NFTs |
110110| [ Prover (Payment Escrow)] ( snippets/prover/ ) | ` snippets/prover/ ` | Formal verification with the Move Prover on a payment escrow contract |
111+ | [ Snipe Prevention] ( snippets/snipe-prevention/ ) | ` snippets/snipe-prevention/ ` | Anti-snipe protection for token launches using dispatchable fungible assets |
111112
112113---
113114
@@ -131,6 +132,7 @@ After deploying, interact with your contract via the [Aptos Explorer](https://ex
131132| 14 | [ liquid-nfts] ( snippets/liquid-nfts/ ) | Liquidity pools, Coin vs FA, legacy tokens, pseudorandom | Receiver style, index notation, ` for ` loops | Yes |
132133| 15 | [ lootbox] ( snippets/lootbox/ ) | Randomness API, multi-asset boxes, soulbound tickets | Receiver style, index notation, ` for ` loops | No |
133134| 16 | [ prover] ( snippets/prover/ ) | Move Prover, formal specs, invariants, schemas | Receiver style, index notation | No |
135+ | 17 | [ snipe-prevention] ( snippets/snipe-prevention/ ) | Dispatchable FA hooks, anti-snipe, allowlists, enum types | Receiver style, index notation, enums, ` match ` | Yes |
134136
135137---
136138
@@ -249,6 +251,10 @@ snippets/
249251│ ├── Move.toml
250252│ └── sources/
251253│ └── payment_escrow.move
254+ ├── snipe-prevention/ # Anti-snipe protection for token launches
255+ │ ├── Move.toml
256+ │ └── sources/
257+ │ └── antisnipe_token.move
252258├── storage/ # Data structure comparison with gas benchmarks
253259│ ├── Move.toml
254260│ └── sources/
@@ -278,6 +284,7 @@ Different examples use different named addresses in their `Move.toml`. When depl
278284| ` mystery_addr ` | lootbox |
279285| ` lockup_deployer ` | fa-lockup-example |
280286| ` deployer ` | prover |
287+ | ` antisnipe ` | snipe-prevention |
281288| ` 0x42 ` | objects (sticky-note) |
282289
283290---
0 commit comments