Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update overview.md #517

Merged
merged 1 commit into from
Oct 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions docs/03-authentication-api/evm/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,16 @@ import ApiBanner from "@site/src/components/ApiBanner/ApiBanner.tsx";

Auth API allows your user to authenticate and verify signed messages with their web3 wallets when using your dapp. Built accordingly to the [EIP-4361](https://eips.ethereum.org/EIPS/eip-4361) standard, enables your user to do off-chain authentication with their EVM or Solana-compatible wallets to establish user sessions with your dapp.

## What are the benefits of the Auth API?

We developed the Auth API to simplify the process of managing different wallets and blockchain networks when building the backend for moralis.com.

With the Auth API, every user is assigned a unique `profileId`, regardless of which wallet or blockchain they use to log in.

This approach allows us to design a backend where users are identified by their `profileId`, making it easier to add support for additional blockchains and wallets without modifying the backend.

If your application needs to support multiple blockchains and wallets, the Auth API could be a valuable solution.

## Auth API Features

The Auth API provides out-of-the-box all the necessary APIs you need to authenticate your user wallet to your dapp, which includes:
Expand Down
Loading