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
    • Dynamic Records Resolution
  • 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

EFP

EthFollow is a decentralized follow protocol built on Ethereum that allows users to track and subscribe to updates and activities of Ethereum addresses or entities. This approach enables on-chain “followers” and “followed” relationships, facilitating the creation of social graphs directly on the blockchain. Such functionality can be integrated into social dApps, enabling curated feeds, trust networks, and reputation systems without relying on traditional centralized platforms.

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: [
    EFPPlugin // Enabling EFP Plugin
  ],
  color: {
    primary: "#FEA801",
    background: "hsl(0, 0%, 100%)",
    destructive: "hsl(0, 100%, 50%)"
  }
};

PreviousXMTPNextPOAP

Last updated 6 months ago

Was this helpful?