@aurum-sdk/core
v0.2.2
Published
Aurum wallet connection SDK
Maintainers
Readme
@aurum-sdk/core
Aurum is an open-source JavaScript SDK that makes it easy to add wallets to your web app.
Installation
pnpm add @aurum-sdk/coreQuick Start
import { Aurum } from '@aurum-sdk/core';
const aurum = new Aurum({
brand: { appName: 'Your App Name' },
wallets: {
embedded: { projectId: 'cdp-project-id' },
walletConnect: { projectId: 'reown-project-id' },
},
});
// Open connect modal
const address = await aurum.connect();
console.log('Connected:', address);