Michael.ip

2.2K posts

Michael.ip banner
Michael.ip

Michael.ip

@michael5485

Fail in Love @StoryProtocol

Making WAGMI a reality on BTC Beigetreten Ağustos 2021
1.6K Folgt662 Follower
Y O U N G S E R I E S . I P
What is New in v2 of the @StoryProtocol IP Portal? ➡️this new version of the IP Portal comes with a fresh design, and it easier to navigate and find what you need. It is faster and more mobile friendly, improving your experience. 👇
English
8
1
30
296
Michael.ip
Michael.ip@michael5485·
Becoming a Story OG isn't just about the title; it's a journey of growth together, and OGs Lab is where you can make that a reality. Rebuilt from the Adepts Lab platform and now managed by the community under the guidance of Mentor @humanbotcrypto, this is a dedicated space for everyone to hone their skills and increase their influence. Instead of working alone, you'll work together on real-world tasks, receive feedback, and improve yourself daily under close guidance. Although it's voluntary, your dedication and presence will undoubtedly be recognized by the ecosystem. Especially now that the doors are open to all OGs instead of being limited as before, don't hesitate to join us on Discord to build a stronger Story community. JOIN OGS LAB TODAY TO TRANSFORM YOUR OG TITLE INTO CREATIVE POWER AND CONFIDENTLY ASSERT YOUR VOICE IN THE ECOSYSTEM. 🚀
Michael.ip tweet media
Story@StoryProtocol

Being a Story OG means growing with the community. Now there’s a place to do exactly that: the OGs Lab. What started as Adepts Lab has been rebuilt and handed over to the community to run. A dedicated space for OGs to develop, grow, and show up for each other. Learn more ↴

English
0
1
7
133
Story
Story@StoryProtocol·
Being a Story OG means growing with the community. Now there’s a place to do exactly that: the OGs Lab. What started as Adepts Lab has been rebuilt and handed over to the community to run. A dedicated space for OGs to develop, grow, and show up for each other. Learn more ↴
Story tweet media
English
78
48
189
9.3K
Michael.ip
Michael.ip@michael5485·
Azuki's official launch on @StoryProtocol is not just a typical collaboration, but a milestone that transforms those NFT images sitting idle in wallets into living, profit-generating entities. Here's how this combination completely transforms the creative experience for you guys: Instead of just observing the @Azuki universe from the sidelines, players can now directly bring their favorite characters into Verse8 and create their own open-world game. You don't need to be a professional programmer or own a massive studio; with just a few simple commands, you can transform your existing IP into a vibrant and functional multiplayer space. This is the future that Story is building , where intellectual property no longer stands still but becomes pieces that can be assembled, developed, and create unlimited new value. Come and experience it right here! There is a step-by-step video tutorial.
Michael.ip tweet media
Verse 8 | Why Code, Just Verse 8@Verse_Eight

IP you love. Universe you don't own. @Azuki is now on @StoryProtocol — now you can pull the IP into Verse8 and turn it into your own open world game. See it in action. Pull the IP. Build. Own what you create. verse8.io

English
1
0
9
120
Michael.ip retweetet
Andrea | Devrelius
Andrea | Devrelius@devrelius·
CDR (confidential data rails) is an entirely new, general purpose onchain primitive for private data - invented by Story. today it's now live on testnet. tldr: you can now manage sensitive data onchain between parties who don't trust each other (different to ZK, read on) CDR vs ZK: ZK proves data exists, without revealing data, CDR focuses on controlling access to the data itself, ie who can use it and when. So they are perfectly complementary. how it works: under the hood, validators run specialized hardware (TEE), where they each hold pieces of a secret key, ensuring data stays encrypted and only unlocks when the right conditions are met. what CDR unlocks: > confidential AI inference without exposing models or queries > encrypted data marketplaces with programmable access > multi-party collaboration over sensitive datasets (think fraud detection, medical data, order books) this is a key piece of infra to let AI run on precious, confidential information. and CDR is live on testnet now! incredibly proud of the team that made this real. come build on it.
Story@StoryProtocol

The next wave of AI depends on data that can’t be exposed. Now with Confidential Data Rails (CDR), that constraint disappears. ▸ Data stays encrypted ▸ Access is defined upfront ▸ Secure pre-conditions held for decryption Live now on testnet.

English
14
16
64
5.4K
Y O U N G S E R I E S . I P
How to Deploy a Test Custom CDR Condition Contract on @StoryProtocol Aeneid Testnet with Remix IDE You need to Follow these steps to deploy and test a custom CDR condition contract for Story Protocol on the Aeneid Testnet Important things you must have before you start 1 Get a metamask wallet or any web3 wallet that's evm compatible 2 Get test tokens from the faucet ➡️Step 1: Add Aeneid Testnet to MetaMaskOpen MetaMask → click the network dropdown top center → Add Network → Add a network manually. 2 Fill in:Network Name: Story Aeneid Testnet RPC URL: aeneid.storyrpc.io Chain ID: 1315 Currency Symbol: IP Block Explorer URL: aeneid.storyscan.xyz Alternatively you can go to chainlist.org then switch to testnet and add the network. 3 Save. Switch your MetaMask to Story Aeneid Testnet ➡️Step 2: Get Test IP Tokens Faucet Go to the official faucet: aeneid.faucet.story.foundation Connect your wallet. Claim you’ll get IP tokens; faucet resets every 24 hours You need a tiny amount for gas 0.01 IP is plenty. Alternative faucets: QuickNode faucet faucet.quicknode.com also works. ➡️Step 3: Open Remix IDEGo to: remix.ethereum.org Step 4: Create the Test CDR Condition Contract In the File Explorer left sidebar then click the + icon to create a new file. Name it TestCDRCondition.sol. Paste the following sample contract a simple test implementation that always allows access perfect for testing on testnet; you can later add real logic like owner only checks: ⬇️⬇️⬇️⬇️⬇️ // SPDX-License-Identifier: MIT pragma solidity ^0.8.26; // Interface from Story Protocol CDR (as documented) interface ICDRCondition { function checkWriteCondition( uint32 uuid, bytes calldata accessAuxData, bytes calldata conditionData, address caller ) external view returns (bool); function checkReadCondition( uint32 uuid, bytes calldata accessAuxData, bytes calldata conditionData, address caller ) external view returns (bool); } contract TestCDRCondition is ICDRCondition { /** * @notice Simple test condition: ALWAYS returns true (for demo/testing only). * Replace with your own logic (e.g., owner check, timestamp, etc.). */ function checkWriteCondition( uint32 /* uuid */, bytes calldata /* accessAuxData */, bytes calldata /* conditionData */, address /* caller */ ) external pure override returns (bool) { return true; // Change this for real access control } function checkReadCondition( uint32 /* uuid */, bytes calldata /* accessAuxData */, bytes calldata /* conditionData */, address /* caller */ ) external pure override returns (bool) { return true; // Change this for real access control } } Incase you need a more realistic test, you could add an owner variable and check caller == owner. ➡️Step 5: Compile the ContractGo to the Solidity Compiler tab left sidebar Set Compiler version to 0.8.26 (or any 0.8.x that matches the pragma. Click Compile TestCDRCondition.sol. Fix any errors there shouldn’t be any with the code above. ➡️Step 6: Deploy to Aeneid TestnetSwitch to the Deploy & Run Transactions tableft sidebar. In Environment, select Injected Provider MetaMask MetaMask will pop up → confirm connection to Remix allow if prompted. Make sure MetaMask is still on Story Aeneid Testnet. Under Contract, select TestCDRCondition it should auto-detect. Click Deploy no constructor arguments needed. MetaMask will pop up → review the gas fee very low on testnet → click Confirm. Very good and successful You will see the contract appear under Deployed Contracts with its address (e.g., 0x123...abc). ➡️Step 7 Verify and Use Your Deployed Contract Copy the contract address from Remix. View it on the explorer: ➡️aeneid.storyscan.xyz/address/YOUR_C… To use it with CDR:Use the CDR SDK @piplabs/cdr-sdk to call uploadCDR or Upload file Pass your deployed address as writeConditionAddr or readConditionAddr. Example from official docs :ts writeConditionAddr: "0xYourDeployedTestContractAddress", writeConditionData: encodeAbiParameters([{ type: "address" }], [uploaderAddress]), Full SDK setup and vault upload examples are in the Story docs → IP Asset Vaults. Now the following are the error messages or problems you may encounter and I have also added the solutions ➡️No injected provider found” ✅→ Make sure MetaMask is unlocked and on Aeneid testnet. ➡️Transaction fails → ✅ Check you have enough IP in MetaMask. Gas limit in Remix can be left at default or increase to 500,000. ➡️Wrong network → ✅Double check MetaMask network. ➡️Contract not showing ✅Refresh Remix page after deployment. ➡️ If you Need a more advanced condition? Modify the checkWriteCondition / checkReadCondition functions they must return bool. Now You have now successfully deployed a test CDR condition contract on Story Protocol’s Aeneid testnet using Remix IDE It will let you experiment custom access rules for encrypted data vaults. For full CDR workflows uploading vaults, minting license tokens, reading data combine this with the official CDR SDK and @StoryProtocol -protocol/core-sdk. The attached video is not the complete guide stay tuned for the video guide loading..... Note: everything works best on pc, for mobile device use mises browser.
English
14
7
31
611
Jeff.ip
Jeff.ip@mrthanh1978·
Azuki #72 — from samurai to the streets. I remixed this IP on Story, rebuilt it as a Gritty Street Style variant using AI — and I OWN what I created Licensed. On-chain. Mine. @Azuki × @Verse_Eight × @StoryProtocol x.com/Verse_Eight/st…
Jeff.ip tweet media
Verse 8 | Why Code, Just Verse 8@Verse_Eight

IP you love. Universe you don't own. @Azuki is now on @StoryProtocol — now you can pull the IP into Verse8 and turn it into your own open world game. See it in action. Pull the IP. Build. Own what you create. verse8.io

English
4
1
10
157
Michael.ip
Michael.ip@michael5485·
The next wave of AI isn't just about collecting more data, it's about accessing the right data and CDRs provide a secure platform to do that without compromising ownership.
Michael.ip tweet media
English
1
0
1
8
Michael.ip
Michael.ip@michael5485·
AI has evolved significantly using public information, but its next phase depends on private, high-value datasets from sectors like healthcare, finance, and cybersecurity. CDR (Confidential Data Rails) is the missing layer that bridges this gap, allowing data to be both secure and programmable. @mushy I @2imtunek
Michael.ip tweet media
Story@StoryProtocol

The next wave of AI depends on data that can’t be exposed. Now with Confidential Data Rails (CDR), that constraint disappears. ▸ Data stays encrypted ▸ Access is defined upfront ▸ Secure pre-conditions held for decryption Live now on testnet.

English
5
2
10
123
Hannie.ip
Hannie.ip@HngNguy58222·
CDR (Confidential Data Rails) is a completely new on-chain primitive for private data - built by @StoryProtocol And now, it’s officially live on testnet 🚀 So what is CDR, really? Put simply: CDR lets you bring sensitive data on-chain while still controlling who can access it and when - even between parties that don’t trust each other. How is it different from Zero-Knowledge (ZK)? •ZK: proves that data exists without revealing it •CDR: allows data to be used, but under strict, programmable access control 👉 One is about “proving” 👉 The other is about “permissioning” They complement each other, not compete How it works (simple version) •Data stays encrypted at all times •Validators run inside secure environments (TEE) •Decryption keys are split across multiple parties •Data is only unlocked when predefined conditions are met ➡️ No single party can access or misuse the data What does this unlock? •🤖 Confidential AI inference without exposing models or inputs •🛒 Encrypted data marketplaces with programmable access •🤝 Multi-party collaboration on sensitive data (finance, healthcare, fraud detection, order books…) CDR solves a fundamental problem: 👉 how to use high-value data in AI and on-chain systems without sacrificing privacy 🔥 Huge congrats to Story Protocol on this milestone - a meaningful step toward making private data usable on-chain. Now it’s time to build. 🚀
Hannie.ip tweet media
Story@StoryProtocol

The next wave of AI depends on data that can’t be exposed. Now with Confidential Data Rails (CDR), that constraint disappears. ▸ Data stays encrypted ▸ Access is defined upfront ▸ Secure pre-conditions held for decryption Live now on testnet.

English
10
1
24
416