0.1.1 • Published 7 months ago
@djuno/web3auth-sdk v0.1.1
Djuno Web3auth SDK
A SDK from Djuno making it easy for developers to interact with Djuno's web3auth service.
Djuno web3auth's SDK is a JavaScript and TypeScript framework-agnostic library that supports both CommonJS and ES module systems.
Getting Started
Installation
- Requires Node.js v16 or higher
npm install @djuno/web3auth-sdkoryarn add @djuno/web3auth-sdk
Quickstart
import { Client } from '@djuno/web3auth-sdk';
const client = new Client({
endpointUrl: 'replaceme',
accessKey: 'your-access-key',
});
client.networks().then((response) => console.log(response));