Powered by Ethos Network

Sign in with
Ethos

Decentralized authentication with reputation-aware identity verification

6+
Wallets Supported
0-2800
Credibility Range
4
Social Providers

Why Sign in with Ethos?

Combine the security of wallet-based authentication with the power of on-chain reputation

Wallet-Based Auth

Connect your Ethereum wallet to cryptographically prove ownership. No passwords, no centralized accounts.

Credibility Score

Access users' Ethos credibility scores (0-2800) to build trust-aware features and reduce fraud.

SIWE Standard

Built on Sign-In with Ethereum (EIP-4361). Secure, decentralized, and widely adopted.

Quick Setup

Integrate in Minutes

Add wallet-based authentication with our React components or SDK

1
Install the React Package
npm install @thebbz/siwe-ethos-react
2
Add the Modal Component
<EthosAuthModal />
3
Handle Success
onSuccess={(result) => ...}
App.tsx
import { EthosAuthModal } from 
  '@thebbz/siwe-ethos-react';

<EthosAuthModal
  isOpen={isOpen}
  onClose={() => setIsOpen(false)}
  onSuccess={(result) => {
    // Access user data
    console.log(result.profile.score);
    console.log(result.profile.username);
  }}
/>