ArDrive Core JSCore Concepts
Wallet Management
import { JWKWallet } from 'ardrive-core-js';
// Create wallet from JWK
const wallet = new JWKWallet(jwkKey);
// Check wallet balance
const balance = await wallet.getBalance();
How is this guide?
import { JWKWallet } from 'ardrive-core-js';
// Create wallet from JWK
const wallet = new JWKWallet(jwkKey);
// Check wallet balance
const balance = await wallet.getBalance();
How is this guide?