From 14050fd9470802acf37a9460bcc643c808cc9a64 Mon Sep 17 00:00:00 2001 From: "dak-agent[bot]" <284037069+dak-agent[bot]@users.noreply.github.com> Date: Wed, 9 Sep 2026 09:40:14 +0000 Subject: [PATCH] feat: add Rocket Markets protocol (mainnet) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Rocket Markets (app.rocketmarkets.fun) is a time-based prediction market on Monad mainnet, category Consumer::Prediction Market. Adds the stable core Market contract and the SurvivorVaultImplementation that per-round Survivor vaults clone. Contracts are not yet verified on the explorer. Co-authored-by: Vukašin Manojlović <8989109+iamvukasin@users.noreply.github.com> --- mainnet/rocket_markets.jsonc | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 mainnet/rocket_markets.jsonc diff --git a/mainnet/rocket_markets.jsonc b/mainnet/rocket_markets.jsonc new file mode 100644 index 0000000..e643a98 --- /dev/null +++ b/mainnet/rocket_markets.jsonc @@ -0,0 +1,21 @@ +{ + "name": "Rocket Markets", + "description": "Rocket Markets is a time-based prediction market on Monad: you bet on how long until an inevitable event happens, not whether it will. Survivors deposit USDC into a per-round vault to earn yield every second the event hasn't happened; Detonators buy a time window and win a share of the pool when the event triggers. Settled in USDC.", + "live": true, + "categories": [ + "Consumer::Prediction Market" + ], + "addresses": { + // Stable core market: Detonators mint their time-window positions here (ERC-721). + "Market": "0x5fAbE7Eb6629058bcAa0d2041cACd32638A7480b", + // Each round deploys a fresh Survivor vault (ERC-4626) as a clone of this + // implementation, all from the protocol deployer + // 0xa81Fc03686883efA5b5cA4faC1437e6870216fD8. + "SurvivorVaultImplementation": "0x48d9392Db46b00C291a2e29B1aC6C703b57024E2" + }, + "links": { + "project": "https://app.rocketmarkets.fun/", + "twitter": "https://x.com/rocketmarketsfi", + "docs": "https://rocket-markets.gitbook.io/rocket-markets-docs/" + } +}