Skip to content

aws-solutions-library-samples/Guidance-for-Authentication-with-Digital-Wallets-on-AWS

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

68 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

NFT Gallery

This decentralized web application (dApp) permits users to display their own NFTs or any NFT collections on Ethereum. Any users can look up any NFT collections while Authenticated users can also look up their own NFTs.

Read this related AWS Blog post for more information: https://aws.amazon.com/blogs/architecture/dapp-authentication-with-amazon-cognito-and-web3-proxy-with-amazon-api-gateway/

Preview

Overview

This project demonstrates how you can use various AWS services to authenticate users with their digital wallet and make secure API calls to third party Web3 API providers like Alchemy and Moralis.

You will learn how you can use Amazon Cognito to authenticate users using their digital wallet to obtain an identity and temporary AWS credentials to grant your front web application access to the AWS services you need.

You will use an Amazon Cognito custom authentication challenge to ask users to sign a random message with their digital wallet. Amazon Cognito, by the way of Lambda Triggers, will validate if the signature is valid and will issue an ID token which proves that the user's wallet address has signed the given message with his digital wallet.

You will also experiment with multiple ways to authorize access to Amazon API Gateway routes using Cognito Authorizers and IAM Roles. You will also explore how to use Amazon Cognito IdentityPool to grant IAM Roles to authenticated and unauthenticated users thus securing your API to all users including anonymous users.

Finally, you will learn how to use API Gateway as proxy to third party Web3 APIs. In this case you will proxy calls to two Web3 providers, Alchemy and Moralis.

Architecture

Architecture

Deployment

  1. Go to the backend folder, open the README there and deploy the architecture to AWS using SAM.
  2. Go to the dapp folder, open the README, run the dApp locally, and deploy it to AWS using the AWS CLI.

Inspiration

This work was inspired by: https://davbarrick.medium.com/how-to-build-a-serverless-web3-wallet-login-like-opensea-with-metamask-and-cognito-eb93c723f4de

Thanks

@the-rpc for the code review and ReactJS expertise