Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CIP-0072 | Off-chain schema fixes #631

2 changes: 1 addition & 1 deletion CIP-0072/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ When submitting the transaction metadata pick the following value for `transacti

The dApp Registration certificate itself doesn't enforce a particular structure to the metadata you might fetch off-chain. However, we recommend that you use the following structure:

[Off-chain dApp Registration certificate schema (Version 2)](./version_2.0.0_offchain.json)
[Off-chain dApp Registration certificate schema (Version 2)](./version_2.0.1_offchain.json)

This schema describes the minimum required fields for a store to be able to display and validate your dApp.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"description": "Logo encoded in base64. Minimum resolution: 512x512px, supported formats: PNG/JPG/SVG, maximum file size: 1 MB",
"type": "string",
"contentEncoding": "base64",
"oneOf": [
"anyOf": [
{
"contentMediaType": "image/png"
},
Expand Down Expand Up @@ -74,7 +74,7 @@
"description": "Screenshots encoded in base64. Minimum resolution for base64 images: 1920x1080px, supported formats: PNG/JPG/SVG, maximum file size: 2 MB for base64.",
"type": "string",
"contentEncoding": "base64",
"oneOf": [
"anyOf": [
{
"contentMediaType": "image/png"
},
Expand Down