show-connect-qrcode
Generate a QR code from a connect URI to securely link MetaMask with blockchain operations, ensuring private keys remain protected in your wallet.
Instructions
Show the connect QR code for a given connect URI.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uri | Yes | Connect URI |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"uri": {
"description": "Connect URI",
"type": "string"
}
},
"required": [
"uri"
],
"type": "object"
}