Shutter PREDICT is a decentralized application (dApp) built on Gnosis Chain, enabling users to threshold-encrypt predictions, commit them on-chain, and reveal them when a pre-specified time has passed. The encrypted predictions are safeguarded by Shutter's keyper network, ensuring privacy and integrity until the reveal time.
Why Do People Hash/Encrypt Their Predictions? You might have seen people tweet out hashes instead of their actual predictions. Here’s why:
- Protecting Valuable Insights: Sometimes predictions hold valuable insights that could move markets or influence opinions if they were made public too early. Encrypting them keeps these insights safe until the right moment.
- Avoiding Unwanted Influence: In scenarios like upcoming elections or other sensitive events, keeping predictions encrypted helps avoid swaying public opinion before the actual event occurs.
Here’s a great blog post on this: https://www.sharvesh.com/p/interpol-red-notice-for-cobie
But here’s the issue: People aren’t committed to this prediction. If in the future, it turns out they’re wrong, they’ll just not reveal the secret. What if there were a way to enforce decryption and reveal? The answer is quite simple: you don’t just post the hash, you post the actual encrypted message and you use threshold-encryption powered time-lock to enforce the decryption in a decentralized manner. That’s Shutter Predict.
- Threshold Encryption: Encrypt predictions using Shutter's encryption mechanism.
- On-chain Commitment: Commit encrypted predictions to a smart contract on Gnosis Chain.
- Automated Decryption: The Shutter keyper network generates a decryption key at the scheduled reveal time.
- Prediction Explorer: View and verify predictions in the Shutter Prediction Explorer.
- Social Sharing: Share your predictions via a pre-filled Twitter post.
- Encrypt Your Prediction: Enter your prediction and specify a future reveal time.
- Commit to Gnosis Chain: Once encrypted, commit your prediction to the blockchain.
- Reveal After Time: After the reveal time passes, the Shutter keyper network decrypts your prediction, making it publicly accessible.
- Frontend: HTML, CSS, JavaScript
- Blockchain: Gnosis Chain (smart contracts)
- Libraries:
- Install MetaMask or another Ethereum-compatible wallet.
- Ensure you have access to the Gnosis Chain network and xDAI for transactions.
-
Clone the repository.
git clone https://github.com/pepae/ShutterPredict.git
-
Open the
index.html
file in your web browser. -
Connect your wallet by clicking the Connect Wallet button.
-
Complete the 3-step process:
- Step 1: Encrypt – Enter your prediction and encrypt it.
- Step 2: Commit – Submit the encrypted prediction on-chain.
- Step 3: Decrypt – Retrieve and decrypt the prediction after the reveal time.
View past predictions using the built-in Shutter PREDICT Explorer. The explorer lists prediction details including ciphertext, plaintext (if revealed), reveal time, and status.
After committing a prediction, you can share a pre-filled tweet with:
- The reveal time
- The first 10 characters of the ciphertext
- A link to view your prediction in the explorer
If your wallet is not connected to Gnosis Chain, the app will prompt you to add the network with the following parameters:
{
"chainId": "0x64",
"chainName": "Gnosis Chain",
"nativeCurrency": {
"name": "xDAI",
"symbol": "xDAI",
"decimals": 18
},
"rpcUrls": ["https://rpc.gnosischain.com"],
"blockExplorerUrls": ["https://gnosisscan.io"]
}
- Contract Address:
0xd4194b8D3cB3CE825690a9Fb167a9e6E145a9d58
- Main Functions:
commitPrediction(bytes _encryptedData, uint256 _revealTime, string _shutterIdentity)
revealPrediction(uint256 _id, string _plaintext)
solc \
--output-dir=./solc_out/ \
--base-path=./contracts \
--include-path=lib \
--combined-json=abi,bin,bin-runtime \
contracts/PredictionContract.sol
- index.html: Main prediction dApp interface
- explorer.html: Prediction Explorer page
- app.js: Core logic for wallet connection, encryption, and transaction handling
- explorer.js: Logic to display and manage predictions on the explorer page
Feel free to submit issues and pull requests to improve the app. Contributions are welcome!