### Example did:eth Identifier Source: https://github.com/oma3dao/developer-docs/blob/main/docs/tokenized-app.md A concrete example of a did:eth identifier, demonstrating the format which appends an Ethereum address to the 'did:eth:' prefix. ```DID String did:eth:0x71C7656EC7ab88b098defB751B7401B5f6d8976F ``` -------------------------------- ### Example DataUrl Response JSON Source: https://github.com/oma3dao/developer-docs/blob/main/docs/tokenized-app.md Provides an example structure for the JSON response expected from the dataUrl endpoint of a tokenized application. This data includes offchain metadata like descriptions, images, screenshots, external links, token information, and platform-specific launch/download URLs. ```json { "descriptionUrl": "https://spatialstore.myworld.com/dataurl/description.txt", "iwpsUrl": "https://spatialstore.myworld.com/dataurl/iwps-url", "agentUrl": "https://spatialstore.myworld.com/dataurl/agent-url", "image": "https://spatialstore.myworld.com/dataurl/appicon.png", "screenshotUrls": [ "https://spatialstore.myworld.com/dataurl/screenshot1.png", "https://spatialstore.myworld.com/dataurl/screenshot2.png" ], "external_url": "https://spatialstore.myworld.com/", "token": "eip155:1:0x1234567890abcdef", "platforms": { "web": { "url_launch": "https://spatialstore.myworld.com/play" }, "ios": { "url_download": "https://apps.apple.com/app/id123456789", "url_launch": "https://spatialstore.myworld.com/play", "supported": ["iPhone", "iPad", "VisionPro"] }, "android": { "url_download": "https://play.google.com/store/apps/details?id=com.myworld.spatialstore", "url_launch": "https://spatialstore.myworld.com/play" } } } ``` -------------------------------- ### Example DataURL Response JSON Source: https://github.com/oma3dao/developer-docs/blob/main/docs/registration-guide.md This JSON object shows the expected structure and fields for the response returned by your application's DataURL endpoint. It includes URLs for description, IWPS, agent, images, screenshots, external links, token contract, and platform-specific launch/download URLs. ```JSON { "descriptionUrl": "https://spatialstore.myworld.com/dataurl/description.txt", "iwpsUrl": "https://spatialstore.myworld.com/dataurl/iwps-url", "agentUrl": "https://spatialstore.myworld.com/dataurl/agent-url", "image": "https://spatialstore.myworld.com/dataurl/appicon.png", "screenshotUrls": [ "https://spatialstore.myworld.com/dataurl/screenshot1.png", "https://spatialstore.myworld.com/dataurl/screenshot2.png" ], "external_url": "https://spatialstore.myworld.com/", "token": "eip155:1:0x1234567890abcdef", "platforms": { "web": { "url_launch": "https://spatialstore.myworld.com/play" }, "ios": { "url_download": "https://apps.apple.com/app/id123456789", "url_launch": "https://spatialstore.myworld.com/play", "supported": ["iPhone", "iPad", "VisionPro"] }, "android": { "url_download": "https://play.google.com/store/apps/details?id=com.myworld.spatialstore", "url_launch": "https://spatialstore.myworld.com/play" } } } ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.