JustaName
API ReferenceSDK Reference
Guide
Guide
  • đź‘‹Overview
  • Quickstart
  • Configuration
    • Overview
    • Appearance
    • Allowed ENS Names
    • ENS Domains
    • JustVerified
    • Networks
  • Backend Configuration
    • Overview
    • Sign In Routes
    • Subname Management Routes
    • Full Implementation
  • Learn & Engage
    • Overview
    • Views
    • Filters
  • Plugins
    • Overview
    • JustVerified
    • XMTP
    • EFP
    • POAP
    • Talent Protocol
  • Advanced
    • JustaName Deployment Addresses
    • Coin Types
    • JustaName - Under the Hood
    • Reading JustaName Subname Events from OrbisDB
  • Wallet Providers
    • Overview
    • RainbowKit
    • Para
    • Privy
    • Coinbase Smart Wallet
  • Design Components
    • Logos
  • Use Cases
    • Overview
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
  1. Plugins

Talent Protocol

Talent Protocol is a platform that helps emerging professionals bootstrap their careers by building communities around their professional growth. It fosters a unique incentive structure, where supporters—such as fans, mentors, and colleagues—gain closer connections, receive updates, and may enjoy unique benefits tied to the talent’s achievements. By establishing an onchain reputation and professional track record, Talent Protocol aims to create a more transparent, community-backed professional network, where success and value creation are shared more equitably between emerging talent and their early supporters.

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: "JUSTANAME API KEY",
      chainId: 1
    }
  ],
  plugins: [
    TalentProtocolPlugin({ apiKey: '<YOUR_TALENT_PROTOCOL_API_KEY>' }) // Enabling Talent Protocol Plugin
  ],
  color: {
    primary: "#FEA801",
    background: "hsl(0, 0%, 100%)",
    destructive: "hsl(0, 100%, 50%)"
  }
};

PreviousPOAPNextJustaName Deployment Addresses

Last updated 5 months ago

Was this helpful?