Documentation
Preparation
Manifest.json

Manifest.json

Every app needs to have its manifest to pass meta information to the wallet. Manifest is a JSON file named as mizuwallet-connect-manifest.json following format:

{
	"url": "<app-url>", // required
	"name": "<app-name>", // required
	"iconUrl": "<app-icon-url>", // required
	"termsOfUseUrl": "<terms-of-use-url>", // optional
	"privacyPolicyUrl": "<privacy-policy-url>" // optional
}

Example

You can find an example of the manifest below:

{
	"url": "https://mizu.io",
    "name": "mizu Telegram Adapter Test",
  	"iconUrl": "https://placehold.co/400/000000/FFF?text=A",
}

Best Practices

  1. Best practice is to place the manifest in the root of your app and repository, e.g. https://myapp.com/mizuwallet-connect-manifest.json (opens in a new tab). It allows the wallet to handle your app better and improve the UX connected to your app.
  2. Make sure that manifest.json file is available to GET by its URL.

Fields description

FieldRequirementDescription
urlrequiredApp URL. Will be used as the DAppidentifier. Will be used to open the DAppafter click to its icon in the wallet. It is recommended to pass url without closing slash, e.g.
namerequiredThe name of the dApp. Will not be used as identifier.
iconUrlrequiredUrl to the app icon. Must be PNG, ICO, ... format. SVG icons are not supported. Perfectly pass url to a 180x180px PNG icon.
termsOfUseUrloptionalUrl to the Terms Of Use document. Optional for usual apps, but required for the apps which is placed in the Tonkeeper recommended apps list.
privacyPolicyUrloptionalUrl to the Privacy Policy document. Optional for usual apps, but required for the apps which is placed in the Tonkeeper recommended apps list.