OpenEUDI SDK Quickstart: Your First EUDI Wallet Verification in 5 Minutes
The article provides a quickstart guide for using the OpenEUDI SDK to verify EUDI wallets in just five minutes. It outlines the prerequisites and steps needed to set up the SDK, including installation and creating a verification session. The guide emphasizes the privacy-first approach of the SDK, which allows for boolean attribute verification without exposing personal data.
- ▪OpenEUDI is an open-source SDK available on npm and GitHub.
- ▪The SDK allows for verification without the need for API keys or registration.
- ▪It features different modes for various use cases, including demo and production modes.
Opening excerpt (first ~120 words) tap to expand
try { if(localStorage) { let currentUser = localStorage.getItem('current_user'); if (currentUser) { currentUser = JSON.parse(currentUser); if (currentUser.id === 937880) { document.getElementById('article-show-container').classList.add('current-user-is-article-author'); } } } } catch (e) { console.error(e); } eidas-pro for eidas-pro Posted on May 30 • Originally published at eidas-pro.com OpenEUDI SDK Quickstart: Your First EUDI Wallet Verification in 5 Minutes #typescript #tutorial #node #eidas OpenEUDI is open source (MIT) and live on npm. GitHub: https://github.com/openeudi · npm: @openeudi/core and @openeudi/openid4vp Originally published on eidas-pro.com. Prerequisites Node.js 20+ installed TypeScript project (or JavaScript with ESM) A terminal and your favorite editor That's it.
…
Excerpt limited to ~120 words for fair-use compliance. The full article is at DEV.to (Top).