JustVerified
Enabling JustVerified Plugin
plugins: [
JustVerifiedPlugin(['twitter', 'github', 'telegram'])
]Example Configuration with Github and Discord
import {
JustVerifiedPlugin
} from '@justverified/plugin';
const justweb3Config: JustWeb3ProviderConfig = {
config: {
origin: "http://localhost:3000/",
domain: "localhost",
signInTtl: 86400000
},
openOnWalletConnect: true,
allowedEns: "all",
logo: "",
ensDomains: [
{
ensDomain: "your ens domain",
apiKey: "YOUR_API_KEY",
chainId: 1
}
],
plugins: [
JustVerifiedPlugin(['github', 'discord']) // Enabling GitHub and Discord verification
],
color: {
primary: "#FEA801",
background: "hsl(0, 0%, 100%)",
destructive: "hsl(0, 100%, 50%)"
}
};
Last updated