SDK Usage Guide
Authentication
You need an API key to use the SDK.
const sdk = new EasyWallet('your-api-key');
Fetch Token Balances
const balances = await sdk.getBalances('0xUserAddress');
Fetch NFTs
const nfts = await sdk.getNFTs('0xUserAddress');
Fetch Token Prices
const prices = await sdk.getPrices();
And more to come!